Socket
Socket
Sign inDemoInstall

@opentelemetry/semantic-conventions

Package Overview
Dependencies
0
Maintainers
4
Versions
105
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
2345
11Next

1.25.0

Diff

Changelog

Source

1.25.0

:rocket: (Enhancement)

  • feat: support node 22 #4666 @dyladan
  • feat(context-zone*): support zone.js 0.12.x #4376 @maldago
  • refactor(core): Use tree-shakeable string constants for semconv #4739 @JohannesHuster
  • refactor(shim-opentracing): Use tree-shakeable string constants for semconv #4746 @JohannesHuster
  • refactor(sdk-trace-web): Use tree-shakeable string constants for semconv #4747 @JohannesHuster
  • refactor(sdk-trace-node): Use tree-shakeable string constants for semconv #4748 @JohannesHuster
  • refactor(sdk-trace-base): Use tree-shakeable string constants for semconv #4749 @JohannesHuster
  • refactor(resources): update deprecated semconv to use exported strings #4755 @JamieDanielson
  • refactor(exporters): update deprecated semconv to use exported strings #4756 @JamieDanielson

:books: (Refine Doc)

  • refactor(examples): use new exported string constants for semconv in examples/esm-http-ts #4758 @Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/basic-tracer-node #4759 @Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/http #4750 @Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/grpc-js #4760 @Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/otlp-exporter-node #4762 @Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/opentracing-shim #4761 @Zen-cronic
pichlermarc
published 1.24.1 •

Changelog

Source

1.24.1

:bug: (Bug Fix)

  • fix(core): align inconsistent behavior of getEnv() and getEnvWithoutDefaults() when a process polyfill is used #4648 @pichlermarc
    • getEnvWithoutDefaults() would use process.env if it was defined when running in a browser, while getEnv() would always use _globalThis. Now both use _globalThis when running in a browser.
  • fix(resources): prevent circular import (resource -> detector -> resource -> ...) #4653 @pichlermarc
    • fixes a circular import warning which would appear in rollup when bundling @opentelemetry/resources
  • fix(exporter-metrics-otlp-grpc): add explicit otlp-exporter-base dependency to exporter-metrics-otlp-grpc #4678 @AkselAllas
pichlermarc
published 1.24.0 •

Changelog

Source

1.24.0

:rocket: (Enhancement)

  • feat(sdk-trace-base): log resource attributes in ConsoleSpanExporter #4605 @pichlermarc
  • feat(propagator-aws-xray): moved AWS Xray propagator from contrib 4603 @martinkuba
  • feat(resources): new experimental detector ServiceInstanceIdDetectorSync that sets the value for service.instance.id as random UUID. #4608 @maryliag

:bug: (Bug Fix)

  • fix(sdk-trace-web): fix invalid timings in span events #4486 @Abinet18
  • fix(resources): ensure BrowserDetector does not think Node.js v21 is a browser #4561 @trentm
pichlermarc
published 1.23.0 •

Changelog

Source

1.23.0

:rocket: (Enhancement)

  • perf(sdk-trace-base): do not allocate arrays if resource has no pending async attributes #4576 @Samuron
  • feat(sdk-metrics): added experimental synchronous gauge to SDK #4565 @clintonb
    • this change will become user-facing in an upcoming release

:bug: (Bug Fix)

  • fix(sdk-metrics): increase the depth of the output to the console such that objects in the metric are printed fully to the console #4522 @JacksonWeber
pichlermarc
published 1.22.0 •

Changelog

Source

1.22.0

:rocket: (Enhancement)

  • feat(sdk-metrics): allow single bucket histograms #4456 @pichlermarc
  • feat(instrumentation): Make init() method public #4418
  • feat(context-zone-peer-dep, context-zone): support zone.js 0.13.x, 0.14.x #4469 @pichlermarc
  • chore: Semantic Conventions export individual strings 4185
  • feat(sdk-trace-base): allow adding span links after span creation #4536 @seemk

:bug: (Bug Fix)

  • fix(sdk-metrics): handle zero bucket counts in exponential histogram merge #4459 @mwear
  • fix(sdk-metrics): ignore NaN value recordings in Histograms #4455 @pichlermarc
    • fixes a bug where recording NaN on a histogram would result in the sum of bucket count values not matching the overall count
  • fix(sdk-metrics): allow single bucket histograms #4456 @pichlermarc
    • fixes a bug where Meter.createHistogram() with the advice explicitBucketBoundaries: [] would throw
  • fix(context-zone-peer-dep, context-zone): support zone.js 0.13.x, 0.14.x #4469 @pichlermarc

:books: (Refine Doc)

  • docs: shorten readme sections #4460 @legendecas
pichlermarc
published 1.21.0 •

Changelog

Source

1.21.0

:rocket: (Enhancement)

  • feat(sdk-metrics): add constructor option to add metric readers #4427 @pichlermarc
    • deprecates MeterProvider.addMetricReader() please use the constructor option readers instead.

:bug: (Bug Fix)

  • fix(sdk-trace-base): ensure attribute value length limit is enforced on span creation #4417 @pichlermarc
  • fix(sdk-trace-base): Export processed spans while exporter failed #4287 @Zirak

:house: (Internal)

  • chore(opentelemetry-context-zone-peer-dep): support zone.js ^v0.13.0 #4320
  • refactor(core): drop unnecessary assignment of HOSTNAME #4421 @pichlermarc
  • test(opentelemetry-context-zone-peer-dep): transpile zone.js in tests #4423 @legendecas
pichlermarc
published 1.20.0 •

Changelog

Source

1.20.0

:rocket: (Enhancement)

  • perf(otlp-transformer): skip unnecessary base64 encode of span contexts #4343 @seemk
  • feat(sdk-trace-base): improve log messages when dropping span events #4223 @mkubliniak
pichlermarc
published 1.19.0 •

Changelog

Source

1.19.0

:rocket: (Enhancement)

  • feat: add node 20 support #4336 @dyladan

:house: (Internal)

  • chore: type reference on zone.js #4257 @legendecas
  • chore: no need for 'packages' in lerna.json #4264 @trentm
  • test: add node 20 to test matrix #4336 @dyladan

:bug: (Bug Fix)

  • fix(api-logs): allow for TimeInput type for LogRecord timestamps #4345
  • fix(sdk-trace-web): only access location if it is defined #4063
  • fix(sdk-trace-base): processor onStart called with a span having empty attributes
pichlermarc
published 1.18.1 •

Changelog

Source

1.18.1

:bug: (Bug Fix)

  • fix(sdk-metrics): hand-roll MetricAdvice type as older API versions do not include it #4260
pichlermarc
published 1.18.0 •

Changelog

Source

1.18.0

:rocket: (Enhancement)

  • feat(metrics): prototype experimental advice support #3876 @legendecas

:bug: (Bug Fix)

  • fix(core): remove re-export of version.ts #4225 @david-luna

:house: (Internal)

  • chore: track package-lock.json #4238 @legendecas
    • Switched to npm workspaces to bootstrap dependencies.
2345
11Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc