Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nodejs sdk package #1187

Merged
merged 36 commits into from
Jul 27, 2020
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
bfbdc3f
feat: add nodejs sdk package
dyladan Jun 11, 2020
5d05108
chore: set eslint environment
dyladan Jun 11, 2020
a9588c1
Merge branch 'master' into node-sdk
dyladan Jun 11, 2020
3d0ab78
Update packages/opentelemetry-sdk-node/README.md
dyladan Jun 12, 2020
13aacad
Merge remote-tracking branch 'origin/master' into node-sdk
dyladan Jun 19, 2020
acb3a50
refactor: separate sdk configuration and start
dyladan Jun 19, 2020
406988e
chore: update sdk readme
dyladan Jun 19, 2020
7f20ea2
chore: markdown lint
dyladan Jun 19, 2020
276a9b2
Merge remote-tracking branch 'origin/master' into node-sdk
dyladan Jun 19, 2020
5bbb7b8
chore: use tracerConfig
dyladan Jun 22, 2020
54c2a77
chore: start adding tests
dyladan Jun 22, 2020
ed3b7f4
Merge remote-tracking branch 'origin/master' into node-sdk
dyladan Jul 1, 2020
ca3b121
chore: remove unused dependencies
dyladan Jul 1, 2020
be00372
chore: lint, add tsdocs, and remove meter/tracer resource separation
dyladan Jul 1, 2020
72d55a8
chore: do not overwrite defaults with undefined
dyladan Jul 1, 2020
af30c47
chore: lint
dyladan Jul 1, 2020
fd0b6da
Update packages/opentelemetry-sdk-node/README.md
dyladan Jul 1, 2020
6abf36f
Update packages/opentelemetry-sdk-node/package.json
dyladan Jul 1, 2020
28a1cde
chore: node.js casing
dyladan Jul 1, 2020
66bb9d7
Update packages/opentelemetry-sdk-node/package.json
dyladan Jul 2, 2020
f9b5566
Merge remote-tracking branch 'origin/master' into node-sdk
dyladan Jul 2, 2020
d8de20b
chore: document sdk options
dyladan Jul 2, 2020
4941111
chore: fix empty link
dyladan Jul 2, 2020
6d18096
Merge branch 'master' into node-sdk
dyladan Jul 15, 2020
caa9547
chore: add auto detect resources
dyladan Jul 16, 2020
ee625a6
fix: replace resource with merged resource
dyladan Jul 21, 2020
7578e7b
chore: copyright header
dyladan Jul 21, 2020
c93a6cc
chore: make tests pass
dyladan Jul 22, 2020
a41a11d
Merge remote-tracking branch 'origin/master' into node-sdk
dyladan Jul 22, 2020
f042247
Merge branch 'node-sdk' of github.com:dynatrace-oss-contrib/opentelem…
dyladan Jul 22, 2020
1c0b6e4
chore: remove double export
dyladan Jul 23, 2020
6a16c73
Merge branch 'master' into node-sdk
dyladan Jul 24, 2020
6b0e26e
chore: remove default attributes
dyladan Jul 27, 2020
a1f65e0
chore: fix build
dyladan Jul 27, 2020
5e1a233
chore: lint
dyladan Jul 27, 2020
68f4598
Merge remote-tracking branch 'origin/master' into node-sdk
dyladan Jul 27, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: lint
dyladan committed Jul 27, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 5e1a23338532abd2d443c5e0b518512c7153cd83
4 changes: 2 additions & 2 deletions packages/opentelemetry-sdk-node/test/sdk.test.ts
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ import {
NoopMeterProvider,
NoopTracerProvider,
propagation,
trace
trace,
} from '@opentelemetry/api';
import { AsyncHooksContextManager } from '@opentelemetry/context-async-hooks';
import { NoopContextManager } from '@opentelemetry/context-base';
@@ -30,7 +30,7 @@ import { ConsoleMetricExporter, MeterProvider } from '@opentelemetry/metrics';
import { NodeTracerProvider } from '@opentelemetry/node';
import {
ConsoleSpanExporter,
SimpleSpanProcessor
SimpleSpanProcessor,
} from '@opentelemetry/tracing';
import * as assert from 'assert';
import { NodeSDK } from '../src';