You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flagon.apache.org by po...@apache.org on 2022/04/10 03:22:29 UTC

[incubator-flagon-useralejs] branch test updated: adds missing license header and entry to change log/readme

This is an automated email from the ASF dual-hosted git repository.

poorejc pushed a commit to branch test
in repository https://gitbox.apache.org/repos/asf/incubator-flagon-useralejs.git


The following commit(s) were added to refs/heads/test by this push:
     new 566b279  adds missing license header and entry to change log/readme
566b279 is described below

commit 566b279e689ed0b7d986a4bf02aa2e6aa83f6219
Author: poorejc <po...@apache.org>
AuthorDate: Sat Apr 9 23:22:18 2022 -0400

    adds missing license header and entry to change log/readme
---
 CHANGELOG.md                                    |  1 +
 README.md                                       |  1 +
 example/custom-non-user-events-example/index.js | 13 +++++++++++++
 3 files changed, 15 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index e406196..1d82bb5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@ Apache Flagon UserALE.js (Incubating) 2.3.0 (2022-04-05)
     * Fixes issue in autostart configurations and start(), stop() export usage
     * Adds additional unit tests for autostart configurations
     * Adds React App.js example/test utility
+    * Adds additional examples (non-user log examples)
     * Minor updates to update deprecated downstream dev dependencies
     * Minor changes to documentation, updated examples
 
diff --git a/README.md b/README.md
index 0339c8e..f14e78b 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,7 @@ Additional documentation and a demonstration can be found at the [Apache Flagon
 - Fixes issue in autostart configurations and start(), stop() export usage
 - Adds additional unit tests for autostart configurations
 - Adds React App.js example/test utility
+- Adds additional UserALE.js custom logging examples
 - Minor updates to update deprecated downstream dev dependencies
 - Minor changes to documentation, updated examples
 
diff --git a/example/custom-non-user-events-example/index.js b/example/custom-non-user-events-example/index.js
index 2d7f415..252361e 100644
--- a/example/custom-non-user-events-example/index.js
+++ b/example/custom-non-user-events-example/index.js
@@ -1,3 +1,16 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements.  See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License.  You may obtain a copy of the License at
+//   http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
 import { ConsoleSpanExporter, SimpleSpanProcessor } from '@opentelemetry/sdk-trace-base';
 import { WebTracerProvider } from '@opentelemetry/sdk-trace-web';
 import { UserInteractionInstrumentation } from '@opentelemetry/instrumentation-user-interaction';