From 21745def82c3c2835b1d16e271902408dbf38935 Mon Sep 17 00:00:00 2001 From: David Luna Date: Mon, 15 Apr 2024 18:01:09 +0200 Subject: [PATCH 1/2] refactor(instr-amqplib): use exported strings for attributes (#2086) Refs: #2025 --- package-lock.json | 4 +- .../node/instrumentation-amqplib/README.md | 21 +++++++++ .../node/instrumentation-amqplib/package.json | 2 +- .../instrumentation-amqplib/src/amqplib.ts | 41 ++++++++--------- .../node/instrumentation-amqplib/src/utils.ts | 45 +++++++++++-------- 5 files changed, 71 insertions(+), 42 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0f7fb562c3..f48f69eb25 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36824,7 +36824,7 @@ "dependencies": { "@opentelemetry/core": "^1.8.0", "@opentelemetry/instrumentation": "^0.50.0", - "@opentelemetry/semantic-conventions": "^1.0.0" + "@opentelemetry/semantic-conventions": "^1.22.0" }, "devDependencies": { "@opentelemetry/api": "^1.3.0", @@ -45785,7 +45785,7 @@ "@opentelemetry/contrib-test-utils": "^0.38.0", "@opentelemetry/core": "^1.8.0", "@opentelemetry/instrumentation": "^0.50.0", - "@opentelemetry/semantic-conventions": "^1.0.0", + "@opentelemetry/semantic-conventions": "^1.22.0", "@types/amqplib": "^0.5.17", "@types/lodash": "4.14.199", "@types/mocha": "8.2.3", diff --git a/plugins/node/instrumentation-amqplib/README.md b/plugins/node/instrumentation-amqplib/README.md index 3e931474ef..5d4933db7e 100644 --- a/plugins/node/instrumentation-amqplib/README.md +++ b/plugins/node/instrumentation-amqplib/README.md @@ -81,6 +81,27 @@ The instrumentation's config `publishHook`, `publishConfirmHook`, `consumeHook` The `moduleVersionAttributeName` config option is removed. To add the amqplib package version to spans, use the `moduleVersion` attribute in hook info for `publishHook` and `consumeHook` functions. +## Semantic Conventions + +This package uses `@opentelemetry/semantic-conventions` version `1.22+`, which implements Semantic Convention [Version 1.7.0](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.7.0/semantic_conventions/README.md) + +Attributes collected: + +| Attribute | Short Description | +| -------------------------------- | ---------------------------------------------------------------------- | +| `messaging.destination` | The message destination name. | +| `messaging.destination_kind` | The kind of message destination. | +| `messaging.rabbitmq.routing_key` | RabbitMQ message routing key. | +| `messaging.operation` | A string identifying the kind of message consumption. | +| `messaging.message_id` | A value used by the messaging system as an identifier for the message. | +| `messaging.conversation_id` | The ID identifying the conversation to which the message belongs. | +| `messaging.protocol` | The name of the transport protocol. | +| `messaging.protocol_version` | The version of the transport protocol. | +| `messaging.system` | A string identifying the messaging system. | +| `messaging.url` | The connection string. | +| `net.peer.name` | Remote hostname or similar. | +| `net.peer.port` | Remote port number. | + ## Useful links - For more information on OpenTelemetry, visit: diff --git a/plugins/node/instrumentation-amqplib/package.json b/plugins/node/instrumentation-amqplib/package.json index 00d8c4fc34..5b7202cf4a 100644 --- a/plugins/node/instrumentation-amqplib/package.json +++ b/plugins/node/instrumentation-amqplib/package.json @@ -46,7 +46,7 @@ "dependencies": { "@opentelemetry/core": "^1.8.0", "@opentelemetry/instrumentation": "^0.50.0", - "@opentelemetry/semantic-conventions": "^1.0.0" + "@opentelemetry/semantic-conventions": "^1.22.0" }, "devDependencies": { "@opentelemetry/api": "^1.3.0", diff --git a/plugins/node/instrumentation-amqplib/src/amqplib.ts b/plugins/node/instrumentation-amqplib/src/amqplib.ts index 17fd6e20b6..16224096fc 100644 --- a/plugins/node/instrumentation-amqplib/src/amqplib.ts +++ b/plugins/node/instrumentation-amqplib/src/amqplib.ts @@ -36,9 +36,14 @@ import { safeExecuteInTheMiddle, } from '@opentelemetry/instrumentation'; import { - SemanticAttributes, - MessagingOperationValues, - MessagingDestinationKindValues, + SEMATTRS_MESSAGING_DESTINATION, + SEMATTRS_MESSAGING_DESTINATION_KIND, + MESSAGINGDESTINATIONKINDVALUES_TOPIC, + SEMATTRS_MESSAGING_RABBITMQ_ROUTING_KEY, + SEMATTRS_MESSAGING_OPERATION, + MESSAGINGOPERATIONVALUES_PROCESS, + SEMATTRS_MESSAGING_MESSAGE_ID, + SEMATTRS_MESSAGING_CONVERSATION_ID, } from '@opentelemetry/semantic-conventions'; import type { Connection, @@ -415,16 +420,13 @@ export class AmqplibInstrumentation extends InstrumentationBase { kind: SpanKind.CONSUMER, attributes: { ...channel?.connection?.[CONNECTION_ATTRIBUTES], - [SemanticAttributes.MESSAGING_DESTINATION]: exchange, - [SemanticAttributes.MESSAGING_DESTINATION_KIND]: - MessagingDestinationKindValues.TOPIC, - [SemanticAttributes.MESSAGING_RABBITMQ_ROUTING_KEY]: - msg.fields?.routingKey, - [SemanticAttributes.MESSAGING_OPERATION]: - MessagingOperationValues.PROCESS, - [SemanticAttributes.MESSAGING_MESSAGE_ID]: - msg?.properties.messageId, - [SemanticAttributes.MESSAGING_CONVERSATION_ID]: + [SEMATTRS_MESSAGING_DESTINATION]: exchange, + [SEMATTRS_MESSAGING_DESTINATION_KIND]: + MESSAGINGDESTINATIONKINDVALUES_TOPIC, + [SEMATTRS_MESSAGING_RABBITMQ_ROUTING_KEY]: msg.fields?.routingKey, + [SEMATTRS_MESSAGING_OPERATION]: MESSAGINGOPERATIONVALUES_PROCESS, + [SEMATTRS_MESSAGING_MESSAGE_ID]: msg?.properties.messageId, + [SEMATTRS_MESSAGING_CONVERSATION_ID]: msg?.properties.correlationId, }, }, @@ -636,13 +638,12 @@ export class AmqplibInstrumentation extends InstrumentationBase { kind: SpanKind.PRODUCER, attributes: { ...channel.connection[CONNECTION_ATTRIBUTES], - [SemanticAttributes.MESSAGING_DESTINATION]: exchange, - [SemanticAttributes.MESSAGING_DESTINATION_KIND]: - MessagingDestinationKindValues.TOPIC, - [SemanticAttributes.MESSAGING_RABBITMQ_ROUTING_KEY]: routingKey, - [SemanticAttributes.MESSAGING_MESSAGE_ID]: options?.messageId, - [SemanticAttributes.MESSAGING_CONVERSATION_ID]: - options?.correlationId, + [SEMATTRS_MESSAGING_DESTINATION]: exchange, + [SEMATTRS_MESSAGING_DESTINATION_KIND]: + MESSAGINGDESTINATIONKINDVALUES_TOPIC, + [SEMATTRS_MESSAGING_RABBITMQ_ROUTING_KEY]: routingKey, + [SEMATTRS_MESSAGING_MESSAGE_ID]: options?.messageId, + [SEMATTRS_MESSAGING_CONVERSATION_ID]: options?.correlationId, }, } ); diff --git a/plugins/node/instrumentation-amqplib/src/utils.ts b/plugins/node/instrumentation-amqplib/src/utils.ts index d690e75bd7..2f0db1ad62 100644 --- a/plugins/node/instrumentation-amqplib/src/utils.ts +++ b/plugins/node/instrumentation-amqplib/src/utils.ts @@ -19,10 +19,17 @@ import { diag, HrTime, Span, - SpanAttributes, - SpanAttributeValue, + Attributes, + AttributeValue, } from '@opentelemetry/api'; -import { SemanticAttributes } from '@opentelemetry/semantic-conventions'; +import { + SEMATTRS_MESSAGING_PROTOCOL, + SEMATTRS_MESSAGING_PROTOCOL_VERSION, + SEMATTRS_MESSAGING_SYSTEM, + SEMATTRS_MESSAGING_URL, + SEMATTRS_NET_PEER_NAME, + SEMATTRS_NET_PEER_PORT, +} from '@opentelemetry/semantic-conventions'; import type * as amqp from 'amqplib'; export const MESSAGE_STORED_SPAN: unique symbol = Symbol( @@ -41,9 +48,9 @@ export const CONNECTION_ATTRIBUTES: unique symbol = Symbol( export type InstrumentationPublishChannel = ( | amqp.Channel | amqp.ConfirmChannel -) & { connection: { [CONNECTION_ATTRIBUTES]: SpanAttributes } }; +) & { connection: { [CONNECTION_ATTRIBUTES]: Attributes } }; export type InstrumentationConsumeChannel = amqp.Channel & { - connection: { [CONNECTION_ATTRIBUTES]: SpanAttributes }; + connection: { [CONNECTION_ATTRIBUTES]: Attributes }; [CHANNEL_SPANS_NOT_ENDED]?: { msg: amqp.ConsumeMessage; timeOfConsume: HrTime; @@ -93,9 +100,9 @@ const getHostname = (hostnameFromUrl: string | undefined): string => { const extractConnectionAttributeOrLog = ( url: string | amqp.Options.Connect, attributeKey: string, - attributeValue: SpanAttributeValue, + attributeValue: AttributeValue, nameForLog: string -): SpanAttributes => { +): Attributes => { if (attributeValue) { return { [attributeKey]: attributeValue }; } else { @@ -111,11 +118,11 @@ const extractConnectionAttributeOrLog = ( export const getConnectionAttributesFromServer = ( conn: amqp.Connection['connection'] -): SpanAttributes => { +): Attributes => { const product = conn.serverProperties.product?.toLowerCase?.(); if (product) { return { - [SemanticAttributes.MESSAGING_SYSTEM]: product, + [SEMATTRS_MESSAGING_SYSTEM]: product, }; } else { return {}; @@ -124,9 +131,9 @@ export const getConnectionAttributesFromServer = ( export const getConnectionAttributesFromUrl = ( url: string | amqp.Options.Connect -): SpanAttributes => { - const attributes: SpanAttributes = { - [SemanticAttributes.MESSAGING_PROTOCOL_VERSION]: '0.9.1', // this is the only protocol supported by the instrumented library +): Attributes => { + const attributes: Attributes = { + [SEMATTRS_MESSAGING_PROTOCOL_VERSION]: '0.9.1', // this is the only protocol supported by the instrumented library }; url = url || 'amqp://localhost'; @@ -137,7 +144,7 @@ export const getConnectionAttributesFromUrl = ( Object.assign(attributes, { ...extractConnectionAttributeOrLog( url, - SemanticAttributes.MESSAGING_PROTOCOL, + SEMATTRS_MESSAGING_PROTOCOL, protocol, 'protocol' ), @@ -147,7 +154,7 @@ export const getConnectionAttributesFromUrl = ( Object.assign(attributes, { ...extractConnectionAttributeOrLog( url, - SemanticAttributes.NET_PEER_NAME, + SEMATTRS_NET_PEER_NAME, hostname, 'hostname' ), @@ -157,14 +164,14 @@ export const getConnectionAttributesFromUrl = ( Object.assign(attributes, { ...extractConnectionAttributeOrLog( url, - SemanticAttributes.NET_PEER_PORT, + SEMATTRS_NET_PEER_PORT, port, 'port' ), }); } else { const censoredUrl = censorPassword(url); - attributes[SemanticAttributes.MESSAGING_URL] = censoredUrl; + attributes[SEMATTRS_MESSAGING_URL] = censoredUrl; try { const urlParts = new URL(censoredUrl); @@ -172,7 +179,7 @@ export const getConnectionAttributesFromUrl = ( Object.assign(attributes, { ...extractConnectionAttributeOrLog( censoredUrl, - SemanticAttributes.MESSAGING_PROTOCOL, + SEMATTRS_MESSAGING_PROTOCOL, protocol, 'protocol' ), @@ -182,7 +189,7 @@ export const getConnectionAttributesFromUrl = ( Object.assign(attributes, { ...extractConnectionAttributeOrLog( censoredUrl, - SemanticAttributes.NET_PEER_NAME, + SEMATTRS_NET_PEER_NAME, hostname, 'hostname' ), @@ -195,7 +202,7 @@ export const getConnectionAttributesFromUrl = ( Object.assign(attributes, { ...extractConnectionAttributeOrLog( censoredUrl, - SemanticAttributes.NET_PEER_PORT, + SEMATTRS_NET_PEER_PORT, port, 'port' ), From 4590c8df184bbcb9bd67ce1111df9f25f865ccf2 Mon Sep 17 00:00:00 2001 From: Severin Neumann Date: Tue, 16 Apr 2024 18:05:51 +0200 Subject: [PATCH 2/2] fix: revert modifications to Apache license (#2105) Signed-off-by: svrnm --- LICENSE | 2 +- archive/opentelemetry-browser-extension-autoinjection/LICENSE | 2 +- .../node/opentelemetry-resource-detector-alibaba-cloud/LICENSE | 2 +- detectors/node/opentelemetry-resource-detector-aws/LICENSE | 2 +- detectors/node/opentelemetry-resource-detector-azure/LICENSE | 2 +- .../node/opentelemetry-resource-detector-container/LICENSE | 2 +- detectors/node/opentelemetry-resource-detector-gcp/LICENSE | 2 +- detectors/node/opentelemetry-resource-detector-github/LICENSE | 2 +- detectors/node/opentelemetry-resource-detector-instana/LICENSE | 2 +- incubator/opentelemetry-sampler-aws-xray/LICENSE | 2 +- metapackages/auto-instrumentations-node/LICENSE | 2 +- metapackages/auto-instrumentations-web/LICENSE | 2 +- packages/opentelemetry-host-metrics/LICENSE | 2 +- packages/opentelemetry-id-generator-aws-xray/LICENSE | 2 +- packages/opentelemetry-propagation-utils/LICENSE | 2 +- packages/opentelemetry-redis-common/LICENSE | 2 +- packages/opentelemetry-sql-common/LICENSE | 2 +- packages/opentelemetry-test-utils/LICENSE | 2 +- packages/winston-transport/LICENSE | 2 +- plugins/node/instrumentation-amqplib/LICENSE | 2 +- plugins/node/instrumentation-cucumber/LICENSE | 2 +- plugins/node/instrumentation-dataloader/LICENSE | 2 +- plugins/node/instrumentation-lru-memoizer/LICENSE | 2 +- plugins/node/instrumentation-mongoose/LICENSE | 2 +- plugins/node/instrumentation-runtime-node/LICENSE | 2 +- plugins/node/instrumentation-tedious/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-aws-lambda/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-aws-sdk/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-bunyan/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-cassandra/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-connect/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-dns/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-express/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-fastify/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-generic-pool/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-graphql/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-hapi/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-ioredis/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-knex/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-koa/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-memcached/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-mongodb/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-mysql/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-mysql2/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-nestjs-core/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-net/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-pg/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-pino/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-redis-4/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-redis/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-restify/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-router/LICENSE | 2 +- plugins/node/opentelemetry-instrumentation-winston/LICENSE | 2 +- plugins/web/opentelemetry-instrumentation-document-load/LICENSE | 2 +- .../web/opentelemetry-instrumentation-user-interaction/LICENSE | 2 +- plugins/web/opentelemetry-plugin-react-load/LICENSE | 2 +- propagators/opentelemetry-propagator-aws-xray/LICENSE | 2 +- propagators/opentelemetry-propagator-grpc-census-binary/LICENSE | 2 +- propagators/opentelemetry-propagator-instana/LICENSE | 2 +- propagators/opentelemetry-propagator-ot-trace/LICENSE | 2 +- 60 files changed, 60 insertions(+), 60 deletions(-) diff --git a/LICENSE b/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/archive/opentelemetry-browser-extension-autoinjection/LICENSE b/archive/opentelemetry-browser-extension-autoinjection/LICENSE index 26104aae5b..f49a4e16e6 100644 --- a/archive/opentelemetry-browser-extension-autoinjection/LICENSE +++ b/archive/opentelemetry-browser-extension-autoinjection/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/detectors/node/opentelemetry-resource-detector-alibaba-cloud/LICENSE b/detectors/node/opentelemetry-resource-detector-alibaba-cloud/LICENSE index a42588e10f..261eeb9e9f 100644 --- a/detectors/node/opentelemetry-resource-detector-alibaba-cloud/LICENSE +++ b/detectors/node/opentelemetry-resource-detector-alibaba-cloud/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2021] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/detectors/node/opentelemetry-resource-detector-aws/LICENSE b/detectors/node/opentelemetry-resource-detector-aws/LICENSE index 6b91a297c8..261eeb9e9f 100644 --- a/detectors/node/opentelemetry-resource-detector-aws/LICENSE +++ b/detectors/node/opentelemetry-resource-detector-aws/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2020] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/detectors/node/opentelemetry-resource-detector-azure/LICENSE b/detectors/node/opentelemetry-resource-detector-azure/LICENSE index 6f13cd2fe6..a36ec4ab7e 100644 --- a/detectors/node/opentelemetry-resource-detector-azure/LICENSE +++ b/detectors/node/opentelemetry-resource-detector-azure/LICENSE @@ -186,7 +186,7 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright [2020] OpenTelemetry Authors +Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/detectors/node/opentelemetry-resource-detector-container/LICENSE b/detectors/node/opentelemetry-resource-detector-container/LICENSE index a42588e10f..261eeb9e9f 100644 --- a/detectors/node/opentelemetry-resource-detector-container/LICENSE +++ b/detectors/node/opentelemetry-resource-detector-container/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2021] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/detectors/node/opentelemetry-resource-detector-gcp/LICENSE b/detectors/node/opentelemetry-resource-detector-gcp/LICENSE index 6b91a297c8..261eeb9e9f 100644 --- a/detectors/node/opentelemetry-resource-detector-gcp/LICENSE +++ b/detectors/node/opentelemetry-resource-detector-gcp/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2020] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/detectors/node/opentelemetry-resource-detector-github/LICENSE b/detectors/node/opentelemetry-resource-detector-github/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/detectors/node/opentelemetry-resource-detector-github/LICENSE +++ b/detectors/node/opentelemetry-resource-detector-github/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/detectors/node/opentelemetry-resource-detector-instana/LICENSE b/detectors/node/opentelemetry-resource-detector-instana/LICENSE index 6b91a297c8..261eeb9e9f 100644 --- a/detectors/node/opentelemetry-resource-detector-instana/LICENSE +++ b/detectors/node/opentelemetry-resource-detector-instana/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2020] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/incubator/opentelemetry-sampler-aws-xray/LICENSE b/incubator/opentelemetry-sampler-aws-xray/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/incubator/opentelemetry-sampler-aws-xray/LICENSE +++ b/incubator/opentelemetry-sampler-aws-xray/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/metapackages/auto-instrumentations-node/LICENSE b/metapackages/auto-instrumentations-node/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/metapackages/auto-instrumentations-node/LICENSE +++ b/metapackages/auto-instrumentations-node/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/metapackages/auto-instrumentations-web/LICENSE b/metapackages/auto-instrumentations-web/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/metapackages/auto-instrumentations-web/LICENSE +++ b/metapackages/auto-instrumentations-web/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/packages/opentelemetry-host-metrics/LICENSE b/packages/opentelemetry-host-metrics/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/packages/opentelemetry-host-metrics/LICENSE +++ b/packages/opentelemetry-host-metrics/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/packages/opentelemetry-id-generator-aws-xray/LICENSE b/packages/opentelemetry-id-generator-aws-xray/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/packages/opentelemetry-id-generator-aws-xray/LICENSE +++ b/packages/opentelemetry-id-generator-aws-xray/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/packages/opentelemetry-propagation-utils/LICENSE b/packages/opentelemetry-propagation-utils/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/packages/opentelemetry-propagation-utils/LICENSE +++ b/packages/opentelemetry-propagation-utils/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/packages/opentelemetry-redis-common/LICENSE b/packages/opentelemetry-redis-common/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/packages/opentelemetry-redis-common/LICENSE +++ b/packages/opentelemetry-redis-common/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/packages/opentelemetry-sql-common/LICENSE b/packages/opentelemetry-sql-common/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/packages/opentelemetry-sql-common/LICENSE +++ b/packages/opentelemetry-sql-common/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/packages/opentelemetry-test-utils/LICENSE b/packages/opentelemetry-test-utils/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/packages/opentelemetry-test-utils/LICENSE +++ b/packages/opentelemetry-test-utils/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/packages/winston-transport/LICENSE b/packages/winston-transport/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/packages/winston-transport/LICENSE +++ b/packages/winston-transport/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/instrumentation-amqplib/LICENSE b/plugins/node/instrumentation-amqplib/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/instrumentation-amqplib/LICENSE +++ b/plugins/node/instrumentation-amqplib/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/instrumentation-cucumber/LICENSE b/plugins/node/instrumentation-cucumber/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/instrumentation-cucumber/LICENSE +++ b/plugins/node/instrumentation-cucumber/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/instrumentation-dataloader/LICENSE b/plugins/node/instrumentation-dataloader/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/instrumentation-dataloader/LICENSE +++ b/plugins/node/instrumentation-dataloader/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/instrumentation-lru-memoizer/LICENSE b/plugins/node/instrumentation-lru-memoizer/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/instrumentation-lru-memoizer/LICENSE +++ b/plugins/node/instrumentation-lru-memoizer/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/instrumentation-mongoose/LICENSE b/plugins/node/instrumentation-mongoose/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/instrumentation-mongoose/LICENSE +++ b/plugins/node/instrumentation-mongoose/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/instrumentation-runtime-node/LICENSE b/plugins/node/instrumentation-runtime-node/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/instrumentation-runtime-node/LICENSE +++ b/plugins/node/instrumentation-runtime-node/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/instrumentation-tedious/LICENSE b/plugins/node/instrumentation-tedious/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/instrumentation-tedious/LICENSE +++ b/plugins/node/instrumentation-tedious/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-aws-lambda/LICENSE b/plugins/node/opentelemetry-instrumentation-aws-lambda/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-aws-lambda/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-aws-lambda/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-aws-sdk/LICENSE b/plugins/node/opentelemetry-instrumentation-aws-sdk/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-aws-sdk/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-aws-sdk/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-bunyan/LICENSE b/plugins/node/opentelemetry-instrumentation-bunyan/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-bunyan/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-bunyan/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-cassandra/LICENSE b/plugins/node/opentelemetry-instrumentation-cassandra/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-cassandra/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-cassandra/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-connect/LICENSE b/plugins/node/opentelemetry-instrumentation-connect/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-connect/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-connect/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-dns/LICENSE b/plugins/node/opentelemetry-instrumentation-dns/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-dns/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-dns/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-express/LICENSE b/plugins/node/opentelemetry-instrumentation-express/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-express/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-express/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-fastify/LICENSE b/plugins/node/opentelemetry-instrumentation-fastify/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-fastify/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-fastify/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-generic-pool/LICENSE b/plugins/node/opentelemetry-instrumentation-generic-pool/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-generic-pool/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-generic-pool/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-graphql/LICENSE b/plugins/node/opentelemetry-instrumentation-graphql/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-graphql/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-graphql/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-hapi/LICENSE b/plugins/node/opentelemetry-instrumentation-hapi/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-hapi/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-hapi/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-ioredis/LICENSE b/plugins/node/opentelemetry-instrumentation-ioredis/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-ioredis/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-ioredis/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-knex/LICENSE b/plugins/node/opentelemetry-instrumentation-knex/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-knex/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-knex/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-koa/LICENSE b/plugins/node/opentelemetry-instrumentation-koa/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-koa/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-koa/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-memcached/LICENSE b/plugins/node/opentelemetry-instrumentation-memcached/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-memcached/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-memcached/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-mongodb/LICENSE b/plugins/node/opentelemetry-instrumentation-mongodb/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-mongodb/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-mongodb/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-mysql/LICENSE b/plugins/node/opentelemetry-instrumentation-mysql/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-mysql/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-mysql/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-mysql2/LICENSE b/plugins/node/opentelemetry-instrumentation-mysql2/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-mysql2/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-mysql2/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-nestjs-core/LICENSE b/plugins/node/opentelemetry-instrumentation-nestjs-core/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-nestjs-core/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-nestjs-core/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-net/LICENSE b/plugins/node/opentelemetry-instrumentation-net/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-net/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-net/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-pg/LICENSE b/plugins/node/opentelemetry-instrumentation-pg/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-pg/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-pg/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-pino/LICENSE b/plugins/node/opentelemetry-instrumentation-pino/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-pino/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-pino/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-redis-4/LICENSE b/plugins/node/opentelemetry-instrumentation-redis-4/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-redis-4/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-redis-4/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-redis/LICENSE b/plugins/node/opentelemetry-instrumentation-redis/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-redis/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-redis/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-restify/LICENSE b/plugins/node/opentelemetry-instrumentation-restify/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-restify/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-restify/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-router/LICENSE b/plugins/node/opentelemetry-instrumentation-router/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-router/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-router/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/node/opentelemetry-instrumentation-winston/LICENSE b/plugins/node/opentelemetry-instrumentation-winston/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/node/opentelemetry-instrumentation-winston/LICENSE +++ b/plugins/node/opentelemetry-instrumentation-winston/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/web/opentelemetry-instrumentation-document-load/LICENSE b/plugins/web/opentelemetry-instrumentation-document-load/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/web/opentelemetry-instrumentation-document-load/LICENSE +++ b/plugins/web/opentelemetry-instrumentation-document-load/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/web/opentelemetry-instrumentation-user-interaction/LICENSE b/plugins/web/opentelemetry-instrumentation-user-interaction/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/web/opentelemetry-instrumentation-user-interaction/LICENSE +++ b/plugins/web/opentelemetry-instrumentation-user-interaction/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/plugins/web/opentelemetry-plugin-react-load/LICENSE b/plugins/web/opentelemetry-plugin-react-load/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/plugins/web/opentelemetry-plugin-react-load/LICENSE +++ b/plugins/web/opentelemetry-plugin-react-load/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/propagators/opentelemetry-propagator-aws-xray/LICENSE b/propagators/opentelemetry-propagator-aws-xray/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/propagators/opentelemetry-propagator-aws-xray/LICENSE +++ b/propagators/opentelemetry-propagator-aws-xray/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/propagators/opentelemetry-propagator-grpc-census-binary/LICENSE b/propagators/opentelemetry-propagator-grpc-census-binary/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/propagators/opentelemetry-propagator-grpc-census-binary/LICENSE +++ b/propagators/opentelemetry-propagator-grpc-census-binary/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/propagators/opentelemetry-propagator-instana/LICENSE b/propagators/opentelemetry-propagator-instana/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/propagators/opentelemetry-propagator-instana/LICENSE +++ b/propagators/opentelemetry-propagator-instana/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/propagators/opentelemetry-propagator-ot-trace/LICENSE b/propagators/opentelemetry-propagator-ot-trace/LICENSE index e50e8c80f9..261eeb9e9f 100644 --- a/propagators/opentelemetry-propagator-ot-trace/LICENSE +++ b/propagators/opentelemetry-propagator-ot-trace/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2022] OpenTelemetry Authors + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.