Skip to content

Commit b9b7116

Browse files
committed
Merge remote-tracking branch 'upstream/main' into redis-tracer-provider
2 parents 64c1b7a + 6f65523 commit b9b7116

File tree

22 files changed

+159
-63
lines changed

22 files changed

+159
-63
lines changed

detectors/node/opentelemetry-resource-detector-gcp/test/detectors/GcpDetector.test.ts

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,46 @@ describe('gcpDetector', () => {
176176
});
177177
});
178178

179+
it('should return resource and undefined for non-available kubernetes attributes', async () => {
180+
process.env.KUBERNETES_SERVICE_HOST = 'my-host';
181+
process.env.HOSTNAME = 'my-hostname';
182+
process.env.CONTAINER_NAME = 'my-container-name';
183+
const scope = nock(HOST_ADDRESS)
184+
.get(INSTANCE_PATH)
185+
.reply(200, {}, HEADERS)
186+
.get(INSTANCE_ID_PATH)
187+
.reply(200, () => '4520031799277581759', HEADERS)
188+
.get(CLUSTER_NAME_PATH)
189+
.reply(200, () => 'my-cluster', HEADERS)
190+
.get(PROJECT_ID_PATH)
191+
.reply(200, () => 'my-project-id', HEADERS)
192+
.get(ZONE_PATH)
193+
.reply(200, () => 'project/zone/my-zone', HEADERS)
194+
.get(HOSTNAME_PATH)
195+
.reply(200, () => 'dev.my-project.local', HEADERS);
196+
const secondaryScope = nock(SECONDARY_HOST_ADDRESS)
197+
.get(INSTANCE_PATH)
198+
.reply(200, {}, HEADERS);
199+
200+
const resource = detectResources({ detectors: [gcpDetector] });
201+
await resource.waitForAsyncAttributes?.();
202+
203+
secondaryScope.done();
204+
scope.done();
205+
206+
assertCloudResource(resource, {
207+
provider: 'gcp',
208+
accountId: 'my-project-id',
209+
zone: 'my-zone',
210+
});
211+
assertK8sResource(resource, {
212+
clusterName: 'my-cluster',
213+
podName: 'my-hostname',
214+
namespaceName: undefined,
215+
});
216+
assertContainerResource(resource, { name: 'my-container-name' });
217+
});
218+
179219
it('returns empty resource if not detected', async () => {
180220
const resource = detectResources({ detectors: [gcpDetector] });
181221
await resource.waitForAsyncAttributes?.();

detectors/node/opentelemetry-resource-detector-instana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ sdk.start()
3838

3939
## Available detectors
4040

41-
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)
41+
This package implements Semantic Convention v1.33.1.
4242

4343
### Instana Agent Detector
4444

detectors/node/opentelemetry-resource-detector-instana/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@
5353
},
5454
"dependencies": {
5555
"@opentelemetry/core": "^2.0.0",
56-
"@opentelemetry/resources": "^2.0.0",
57-
"@opentelemetry/semantic-conventions": "^1.27.0"
56+
"@opentelemetry/resources": "^2.0.0"
5857
},
5958
"peerDependencies": {
6059
"@opentelemetry/api": "^1.3.0"

detectors/node/opentelemetry-resource-detector-instana/src/detectors/InstanaAgentDetector.ts

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ import {
2121
DetectedResource,
2222
DetectedResourceAttributes,
2323
} from '@opentelemetry/resources';
24-
import {
25-
SEMRESATTRS_PROCESS_PID,
26-
SEMRESATTRS_SERVICE_INSTANCE_ID,
27-
} from '@opentelemetry/semantic-conventions';
24+
import { ATTR_PROCESS_PID, ATTR_SERVICE_INSTANCE_ID } from '../semconv';
2825
import * as http from 'http';
2926

3027
class InstanaAgentDetector implements ResourceDetector {
@@ -36,10 +33,7 @@ class InstanaAgentDetector implements ResourceDetector {
3633
this._gatherData()
3734
);
3835

39-
const attrNames = [
40-
SEMRESATTRS_PROCESS_PID,
41-
SEMRESATTRS_SERVICE_INSTANCE_ID,
42-
];
36+
const attrNames = [ATTR_PROCESS_PID, ATTR_SERVICE_INSTANCE_ID];
4337

4438
const attributes = {} as DetectedResourceAttributes;
4539
attrNames.forEach(name => {
@@ -61,8 +55,8 @@ class InstanaAgentDetector implements ResourceDetector {
6155
const data = await this._retryHandler(host, port, 0);
6256

6357
return {
64-
[SEMRESATTRS_PROCESS_PID]: data.pid,
65-
[SEMRESATTRS_SERVICE_INSTANCE_ID]: data.agentUuid,
58+
[ATTR_PROCESS_PID]: data.pid,
59+
[ATTR_SERVICE_INSTANCE_ID]: data.agentUuid,
6660
};
6761
} catch {
6862
return {};
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Copyright The OpenTelemetry Authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
* This file contains a copy of unstable semantic convention definitions
19+
* used by this package.
20+
* @see https://github.com/open-telemetry/opentelemetry-js/tree/main/semantic-conventions#unstable-semconv
21+
*/
22+
23+
/**
24+
* Process identifier (PID).
25+
*
26+
* @example 1234
27+
*
28+
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
29+
*/
30+
export const ATTR_PROCESS_PID = 'process.pid' as const;
31+
32+
/**
33+
* The string ID of the service instance.
34+
*
35+
* @example 627cc493-f310-47de-96bd-71410b7dec09
36+
*
37+
* @note **MUST** be unique for each instance of the same `service.namespace,service.name` pair (in other words
38+
* `service.namespace,service.name,service.instance.id` triplet **MUST** be globally unique). The ID helps to
39+
* distinguish instances of the same service that exist at the same time (e.g. instances of a horizontally scaled
40+
* service).
41+
*
42+
* Implementations, such as SDKs, are recommended to generate a random Version 1 or Version 4 [RFC
43+
* 4122](https://www.ietf.org/rfc/rfc4122.txt) UUID, but are free to use an inherent unique ID as the source of
44+
* this value if stability is desirable. In that case, the ID **SHOULD** be used as source of a UUID Version 5 and
45+
* **SHOULD** use the following UUID as the namespace: `4d63009a-8d0f-11ee-aad7-4c796ed8e320`.
46+
*
47+
* UUIDs are typically recommended, as only an opaque value for the purposes of identifying a service instance is
48+
* needed. Similar to what can be seen in the man page for the
49+
* [`/etc/machine-id`](https://www.freedesktop.org/software/systemd/man/latest/machine-id.html) file, the underlying
50+
* data, such as pod name and namespace should be treated as confidential, being the user's choice to expose it
51+
* or not via another resource attribute.
52+
*
53+
* For applications running behind an application server (like unicorn), we do not recommend using one identifier
54+
* for all processes participating in the application. Instead, it's recommended each division (e.g. a worker
55+
* thread in unicorn) to have its own instance.id.
56+
*
57+
* It's not recommended for a Collector to set `service.instance.id` if it can't unambiguously determine the
58+
* service instance that is generating that telemetry. For instance, creating an UUID based on `pod.name` will
59+
* likely be wrong, as the Collector might not know from which container within that pod the telemetry originated.
60+
* However, Collectors can set the `service.instance.id` if they can unambiguously determine the service instance
61+
* for that telemetry. This is typically the case for scraping receivers, as they know the target address and
62+
* port.
63+
*
64+
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
65+
*/
66+
export const ATTR_SERVICE_INSTANCE_ID = 'service.instance.id' as const;

plugins/node/opentelemetry-instrumentation-aws-sdk/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The instrumentations are collecting the following attributes:
6565
| `rpc.system` | string | Always equals "aws-api" | |
6666
| `rpc.method` | string | he name of the operation corresponding to the request, as returned by the AWS SDK. If the SDK does not provide a way to retrieve a name, the name of the command SHOULD be used, removing the suffix `Command` if present, resulting in a PascalCase name with no spaces. | `PutObject` |
6767
| `rpc.service` | string | The name of the service to which a request is made, as returned by the AWS SDK. If the SDK does not provide a away to retrieve a name, the name of the SDK's client interface for a service SHOULD be used, removing the suffix `Client` if present, resulting in a PascalCase name with no spaces. | `S3`, `DynamoDB`, `Route53` |
68-
| `aws.region` | string | Region name for the request | "eu-west-1" |
68+
| `cloud.region` | string | Region name for the request | "eu-west-1" |
6969

7070
### Custom User Attributes
7171

@@ -112,6 +112,7 @@ Attributes collected:
112112
| `rpc.method` | The name of the (logical) method being called. | |
113113
| `rpc.service` | The full (logical) name of the service being called. | |
114114
| `rpc.system` | A string identifying the remoting system. | |
115+
| `cloud.region` | The AWS Region where the requested service is being accessed. | |
115116
| `aws.dynamodb.attribute_definitions` | The JSON-serialized value of each item in the `AttributeDefinitions` request field. | dynamodb |
116117
| `aws.dynamodb.consistent_read` | The value of the `ConsistentRead` request parameter. | dynamodb |
117118
| `aws.dynamodb.consumed_capacity` | The JSON-serialized value of each item in the `ConsumedCapacity` response field. | dynamodb |

plugins/node/opentelemetry-instrumentation-aws-sdk/src/aws-sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export class AwsInstrumentation extends InstrumentationBase<AwsSdkInstrumentatio
350350
Promise.resolve(regionPromise)
351351
.then(resolvedRegion => {
352352
normalizedRequest.region = resolvedRegion;
353-
span.setAttribute(AttributeNames.AWS_REGION, resolvedRegion);
353+
span.setAttribute(AttributeNames.CLOUD_REGION, resolvedRegion);
354354
})
355355
.catch(e => {
356356
// there is nothing much we can do in this case.

plugins/node/opentelemetry-instrumentation-aws-sdk/src/enums.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
export enum AttributeNames {
1717
AWS_OPERATION = 'aws.operation',
18-
AWS_REGION = 'aws.region',
18+
CLOUD_REGION = 'cloud.region',
1919
AWS_SERVICE_API = 'aws.service.api',
2020
AWS_SERVICE_NAME = 'aws.service.name',
2121
AWS_SERVICE_IDENTIFIER = 'aws.service.identifier',

plugins/node/opentelemetry-instrumentation-aws-sdk/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const extractAttributesFromNormalizedRequest = (
5656
[SEMATTRS_RPC_SYSTEM]: 'aws-api',
5757
[SEMATTRS_RPC_METHOD]: normalizedRequest.commandName,
5858
[SEMATTRS_RPC_SERVICE]: normalizedRequest.serviceName,
59-
[AttributeNames.AWS_REGION]: normalizedRequest.region,
59+
[AttributeNames.CLOUD_REGION]: normalizedRequest.region,
6060
};
6161
};
6262

plugins/node/opentelemetry-instrumentation-aws-sdk/test/aws-sdk-v3-s3.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ describe('instrumentation-aws-sdk-v3 (client-s3)', () => {
7373
expect(span.attributes[AttributeNames.AWS_S3_BUCKET]).toEqual(
7474
'ot-demo-test'
7575
);
76-
expect(span.attributes[AttributeNames.AWS_REGION]).toEqual(region);
76+
expect(span.attributes[AttributeNames.CLOUD_REGION]).toEqual(region);
7777
expect(span.name).toEqual('S3.PutObject');
7878
expect(span.kind).toEqual(SpanKind.CLIENT);
7979
expect(span.attributes[SEMATTRS_HTTP_STATUS_CODE]).toEqual(200);
@@ -100,7 +100,7 @@ describe('instrumentation-aws-sdk-v3 (client-s3)', () => {
100100
expect(span.attributes[AttributeNames.AWS_S3_BUCKET]).toEqual(
101101
'ot-demo-test'
102102
);
103-
expect(span.attributes[AttributeNames.AWS_REGION]).toEqual(region);
103+
expect(span.attributes[AttributeNames.CLOUD_REGION]).toEqual(region);
104104
expect(span.name).toEqual('S3.PutObject');
105105
expect(span.attributes[SEMATTRS_HTTP_STATUS_CODE]).toEqual(200);
106106
done();
@@ -129,7 +129,7 @@ describe('instrumentation-aws-sdk-v3 (client-s3)', () => {
129129
expect(span.attributes[AttributeNames.AWS_S3_BUCKET]).toEqual(
130130
'ot-demo-test'
131131
);
132-
expect(span.attributes[AttributeNames.AWS_REGION]).toEqual(region);
132+
expect(span.attributes[AttributeNames.CLOUD_REGION]).toEqual(region);
133133
expect(span.name).toEqual('S3.PutObject');
134134
expect(span.attributes[SEMATTRS_HTTP_STATUS_CODE]).toEqual(200);
135135
});
@@ -166,7 +166,7 @@ describe('instrumentation-aws-sdk-v3 (client-s3)', () => {
166166
'invalid-bucket-name'
167167
);
168168
expect(span.attributes[SEMATTRS_HTTP_STATUS_CODE]).toEqual(403);
169-
expect(span.attributes[AttributeNames.AWS_REGION]).toEqual(region);
169+
expect(span.attributes[AttributeNames.CLOUD_REGION]).toEqual(region);
170170
expect(span.attributes[AttributeNames.AWS_REQUEST_ID]).toEqual(
171171
'MS95GTS7KXQ34X2S'
172172
);

plugins/node/opentelemetry-instrumentation-aws-sdk/test/aws-sdk-v3-sqs.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ describe('instrumentation-aws-sdk-v3 (client-sqs)', () => {
8484
expect(span.attributes[SEMATTRS_RPC_SYSTEM]).toEqual('aws-api');
8585
expect(span.attributes[SEMATTRS_RPC_METHOD]).toEqual('SendMessage');
8686
expect(span.attributes[SEMATTRS_RPC_SERVICE]).toEqual('SQS');
87-
expect(span.attributes[AttributeNames.AWS_REGION]).toEqual(region);
87+
expect(span.attributes[AttributeNames.CLOUD_REGION]).toEqual(region);
8888

8989
// custom messaging attributes
9090
expect(span.attributes[SEMATTRS_MESSAGING_SYSTEM]).toEqual('aws.sqs');
@@ -140,7 +140,7 @@ describe('instrumentation-aws-sdk-v3 (client-sqs)', () => {
140140
expect(span.attributes[SEMATTRS_RPC_SYSTEM]).toEqual('aws-api');
141141
expect(span.attributes[SEMATTRS_RPC_METHOD]).toEqual('SendMessageBatch');
142142
expect(span.attributes[SEMATTRS_RPC_SERVICE]).toEqual('SQS');
143-
expect(span.attributes[AttributeNames.AWS_REGION]).toEqual(region);
143+
expect(span.attributes[AttributeNames.CLOUD_REGION]).toEqual(region);
144144

145145
// messaging semantic attributes
146146
expect(span.attributes[SEMATTRS_MESSAGING_SYSTEM]).toEqual('aws.sqs');
@@ -183,7 +183,7 @@ describe('instrumentation-aws-sdk-v3 (client-sqs)', () => {
183183
expect(span.attributes[SEMATTRS_RPC_SYSTEM]).toEqual('aws-api');
184184
expect(span.attributes[SEMATTRS_RPC_METHOD]).toEqual('ReceiveMessage');
185185
expect(span.attributes[SEMATTRS_RPC_SERVICE]).toEqual('SQS');
186-
expect(span.attributes[AttributeNames.AWS_REGION]).toEqual(region);
186+
expect(span.attributes[AttributeNames.CLOUD_REGION]).toEqual(region);
187187
expect(span.attributes[SEMATTRS_HTTP_STATUS_CODE]).toEqual(200);
188188
done();
189189
});

plugins/node/opentelemetry-instrumentation-connect/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ See [examples/connect](https://github.com/open-telemetry/opentelemetry-js-contri
5555

5656
## Semantic Conventions
5757

58-
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)
58+
This package implements Semantic Convention v1.33.1.
5959

6060
Attributes collected:
6161

plugins/node/opentelemetry-instrumentation-connect/src/instrumentation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import {
3232
InstrumentationNodeModuleDefinition,
3333
isWrapped,
3434
} from '@opentelemetry/instrumentation';
35-
import { SEMATTRS_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
35+
import { ATTR_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
3636
import {
3737
replaceCurrentStackRoute,
3838
addNewStackLayer,
@@ -101,7 +101,7 @@ export class ConnectInstrumentation extends InstrumentationBase {
101101
const spanName = `${connectTypeName} - ${connectName}`;
102102
const options: SpanOptions = {
103103
attributes: {
104-
[SEMATTRS_HTTP_ROUTE]: routeName.length > 0 ? routeName : '/',
104+
[ATTR_HTTP_ROUTE]: routeName.length > 0 ? routeName : '/',
105105
[AttributeNames.CONNECT_TYPE]: connectType,
106106
[AttributeNames.CONNECT_NAME]: connectName,
107107
},

plugins/node/opentelemetry-instrumentation-connect/test/instrumentation.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import * as assert from 'assert';
1717

1818
import { context, trace } from '@opentelemetry/api';
1919
import { RPCType, setRPCMetadata, RPCMetadata } from '@opentelemetry/core';
20-
import { SEMATTRS_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
20+
import { ATTR_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
2121
import { AsyncHooksContextManager } from '@opentelemetry/context-async-hooks';
2222
import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';
2323
import {
@@ -145,7 +145,7 @@ describe('connect', () => {
145145
assert.deepStrictEqual(span.attributes, {
146146
'connect.type': 'middleware',
147147
'connect.name': ANONYMOUS_NAME,
148-
[SEMATTRS_HTTP_ROUTE]: '/',
148+
[ATTR_HTTP_ROUTE]: '/',
149149
});
150150
assert.strictEqual(span.name, 'middleware - anonymous');
151151
});
@@ -164,7 +164,7 @@ describe('connect', () => {
164164
assert.deepStrictEqual(span.attributes, {
165165
'connect.type': 'middleware',
166166
'connect.name': 'middleware1',
167-
[SEMATTRS_HTTP_ROUTE]: '/',
167+
[ATTR_HTTP_ROUTE]: '/',
168168
});
169169
assert.strictEqual(span.name, 'middleware - middleware1');
170170
});
@@ -182,7 +182,7 @@ describe('connect', () => {
182182
assert.deepStrictEqual(span.attributes, {
183183
'connect.type': 'request_handler',
184184
'connect.name': '/foo',
185-
[SEMATTRS_HTTP_ROUTE]: '/foo',
185+
[ATTR_HTTP_ROUTE]: '/foo',
186186
});
187187
assert.strictEqual(span.name, 'request handler - /foo');
188188
});

plugins/node/opentelemetry-instrumentation-express/src/instrumentation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import {
4141
isWrapped,
4242
safeExecuteInTheMiddle,
4343
} from '@opentelemetry/instrumentation';
44-
import { SEMATTRS_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
44+
import { ATTR_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
4545
import {
4646
ExpressLayer,
4747
ExpressRouter,
@@ -195,7 +195,7 @@ export class ExpressInstrumentation extends InstrumentationBase<ExpressInstrumen
195195
.replace(/\/{2,}/g, '/');
196196

197197
const attributes: Attributes = {
198-
[SEMATTRS_HTTP_ROUTE]: route.length > 0 ? route : '/',
198+
[ATTR_HTTP_ROUTE]: route.length > 0 ? route : '/',
199199
};
200200
const metadata = getLayerMetadata(route, layer, layerPath);
201201
const type = metadata.attributes[

plugins/node/opentelemetry-instrumentation-express/test/custom-config.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
InMemorySpanExporter,
2222
SimpleSpanProcessor,
2323
} from '@opentelemetry/sdk-trace-base';
24-
import { SEMATTRS_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
24+
import { ATTR_HTTP_ROUTE } from '@opentelemetry/semantic-conventions';
2525
import * as assert from 'assert';
2626
import { RPCMetadata, RPCType, setRPCMetadata } from '@opentelemetry/core';
2727
import { ExpressLayerType } from '../src/enums/ExpressLayerType';
@@ -145,7 +145,7 @@ describe('ExpressInstrumentation', () => {
145145
.find(span => span.name.includes('request handler'));
146146
assert.notStrictEqual(requestHandlerSpan, undefined);
147147
assert.strictEqual(
148-
requestHandlerSpan?.attributes[SEMATTRS_HTTP_ROUTE],
148+
requestHandlerSpan?.attributes[ATTR_HTTP_ROUTE],
149149
'/mw'
150150
);
151151

@@ -196,7 +196,7 @@ describe('ExpressInstrumentation', () => {
196196
.find(span => span.name.includes('request handler'));
197197
assert.notStrictEqual(requestHandlerSpan, undefined);
198198
assert.strictEqual(
199-
requestHandlerSpan?.attributes[SEMATTRS_HTTP_ROUTE],
199+
requestHandlerSpan?.attributes[ATTR_HTTP_ROUTE],
200200
'/'
201201
);
202202

0 commit comments

Comments
 (0)