forked from aws-observability/aws-otel-js-instrumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregister.test.ts
124 lines (113 loc) · 5.36 KB
/
register.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Modifications Copyright The OpenTelemetry Authors. Licensed under the Apache License 2.0 License.
import { NodeSDK } from '@opentelemetry/sdk-node';
import * as assert from 'assert';
import { spawnSync, SpawnSyncReturns } from 'child_process';
import expect from 'expect';
import { setAwsDefaultEnvironmentVariables } from '../src/register';
// The OpenTelemetry Authors code
// Extend register.test.ts functionality to also test exported span with Application Signals enabled
describe('Register', function () {
it('Requires without error', () => {
const originalPrototypeStart = NodeSDK.prototype.start;
NodeSDK.prototype.start = () => {};
try {
require('../src/register');
} catch (err: unknown) {
assert.fail(`require register unexpectedly failed: ${err}`);
}
NodeSDK.prototype.start = originalPrototypeStart;
});
it('Tests AWS Default Environment Variables', () => {
this.beforeEach(() => {
delete process.env.OTEL_EXPORTER_OTLP_PROTOCOL;
delete process.env.OTEL_PROPAGATORS;
delete process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS;
});
it('sets AWS Default Environment Variables', () => {
setAwsDefaultEnvironmentVariables();
expect(process.env.OTEL_EXPORTER_OTLP_PROTOCOL).toEqual('http/protobuf');
expect(process.env.OTEL_PROPAGATORS).toEqual('xray,tracecontext');
expect(process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS).toEqual('fs');
});
it('Does not set AWS Default Environment Variables', () => {
process.env.OTEL_EXPORTER_OTLP_PROTOCOL = 'customProtocol';
process.env.OTEL_PROPAGATORS = 'customPropagators';
process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS = 'customDisabledInstrumentations';
setAwsDefaultEnvironmentVariables();
expect(process.env.OTEL_EXPORTER_OTLP_PROTOCOL).toEqual('customProtocol');
expect(process.env.OTEL_PROPAGATORS).toEqual('customPropagators');
expect(process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS).toEqual('customDisabledInstrumentations');
});
});
it('can load auto instrumentation from command line', () => {
const proc: SpawnSyncReturns<Buffer> = spawnSync(
process.execPath,
['--require', '../build/src/register.js', './third-party/otel/test-app/app.js'],
{
cwd: __dirname,
timeout: 10000,
killSignal: 'SIGKILL', // SIGTERM is not sufficient to terminate some hangs
env: Object.assign({}, process.env, {
OTEL_NODE_RESOURCE_DETECTORS: 'none',
OTEL_TRACES_EXPORTER: 'console',
// nx (used by lerna run) defaults `FORCE_COLOR=true`, which in
// node v18.17.0, v20.3.0 and later results in ANSI color escapes
// in the ConsoleSpanExporter output that is checked below.
FORCE_COLOR: '0',
OTEL_LOG_LEVEL: 'ALL',
OTEL_TRACES_SAMPLER: 'always_on',
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: 'http://localhost:4316/v1/traces',
OTEL_RESOURCE_ATTRIBUTES: 'service.name=test-adot-sdk-ec2-service-name',
OTEL_AWS_APPLICATION_SIGNALS_ENABLED: 'true',
OTEL_NODE_DISABLED_INSTRUMENTATIONS: 'fs',
}),
}
);
assert.ifError(proc.error);
assert.equal(proc.status, 0, `proc.status (${proc.status})`);
assert.equal(proc.signal, null, `proc.signal (${proc.signal})`);
assert.ok(proc.stdout.includes('AWS Distro of OpenTelemetry automatic instrumentation started successfully'));
assert.ok(proc.stdout.includes("Environment variable OTEL_EXPORTER_OTLP_PROTOCOL is set to 'http/protobuf'"));
assert.ok(proc.stdout.includes("Environment variable OTEL_PROPAGATORS is set to 'xray,tracecontext'"));
// Check a span has been generated for the GET request done in app.js
assert.ok(proc.stdout.includes("name: 'GET'"), 'console span output in stdout - validate Span Name');
assert.ok(
proc.stdout.includes("'service.name': 'test-adot-sdk-ec2-service-name'"),
'console span output in stdout - validate service.name'
);
// eslint-disable-next-line @typescript-eslint/typedef
const packageJson = require('./../../package.json');
const DISTRO_VERSION: string = packageJson.version;
assert.ok(
proc.stdout.includes(`'telemetry.auto.version': '${DISTRO_VERSION}-aws'`),
'console span output in stdout - validate telemetry.auto.version'
);
assert.ok(
proc.stdout.includes("'aws.is.local.root': true"),
'console span output in stdout - validate aws.is.local.root'
);
assert.ok(
proc.stdout.includes("'aws.local.operation': 'InternalOperation'"),
'console span output in stdout - validate aws.local.operation'
);
assert.ok(
proc.stdout.includes("'aws.local.service': 'test-adot-sdk-ec2-service-name'"),
'console span output in stdout - validate aws.local.service'
);
assert.ok(
proc.stdout.includes("'aws.remote.service': 'example.com:80'"),
'console span output in stdout - validate aws.remote.service'
);
assert.ok(
proc.stdout.includes("'aws.remote.operation': 'GET /'"),
'console span output in stdout - validate aws.remote.operation'
);
assert.ok(
proc.stdout.includes("'aws.span.kind': 'LOCAL_ROOT'"),
'console span output in stdout - validate aws.span.kind'
);
});
});
// END The OpenTelemetry Authors code