Skip to content

Commit

Permalink
refactor(examples/opentracing-shim): use new exported string constant…
Browse files Browse the repository at this point in the history
…s for semconv (open-telemetry#4761)

* refactor(examples/opentracing-shim): use new exported string constants for semconv

* updated semconv to ^1.22.0

* added changelog entry
  • Loading branch information
Zen-cronic authored and Zirak committed Sep 14, 2024
1 parent 89ddaa3 commit c32006c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ For experimental package changes, see the [experimental CHANGELOG](experimental/
### :books: (Refine Doc)

* refactor(examples): use new exported string constants for semconv in examples/http [#4750](https://github.com/open-telemetry/opentelemetry-js/pull/4750) @Zen-cronic
* refactor(examples): use new exported string constants for semconv in examples/opentracing-shim-semconv [#4761](https://github.com/open-telemetry/opentelemetry-js/pull/4761) @Zen-cronic

### :house: (Internal)

Expand Down
2 changes: 1 addition & 1 deletion examples/opentracing-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@opentelemetry/instrumentation": "0.25.0",
"@opentelemetry/sdk-trace-node": "0.25.0",
"@opentelemetry/resources": "0.25.0",
"@opentelemetry/semantic-conventions": "0.25.0",
"@opentelemetry/semantic-conventions": "^1.22.0",
"@opentelemetry/shim-opentracing": "0.25.0",
"@opentelemetry/sdk-trace-base": "0.25.0",
"opentracing": "^0.14.4"
Expand Down
4 changes: 2 additions & 2 deletions examples/opentracing-shim/shim.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const { SemanticResourceAttributes } = require('@opentelemetry/semantic-conventions');
const { SEMRESATTRS_SERVICE_NAME } = require('@opentelemetry/semantic-conventions');
const { Resource } = require('@opentelemetry/resources');
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
const { SimpleSpanProcessor } = require('@opentelemetry/sdk-trace-base');
Expand All @@ -10,7 +10,7 @@ const { TracerShim } = require('@opentelemetry/shim-opentracing');

function shim(serviceName) {
const provider = new NodeTracerProvider({
resource: new Resource({ [SemanticResourceAttributes.SERVICE_NAME]: serviceName }),
resource: new Resource({ [SEMRESATTRS_SERVICE_NAME]: serviceName }),
});

provider.addSpanProcessor(new SimpleSpanProcessor(getExporter(serviceName)));
Expand Down

0 comments on commit c32006c

Please sign in to comment.