Releases: lightstep/otel-launcher-go
Releases · lightstep/otel-launcher-go
Release v1.14.0
Changes in this Release
- refs/tags/v1.14.0
Release v1.13.4
Changes in this Release
- refs/tags/v1.13.4
Release v1.13.3
Changes in this Release
- refs/tags/v1.13.3
- Fixes performance regressions introduced in version 1.13.1 and 1.12.1. #404
Release v1.13.2
Changes in this Release
- refs/tags/v1.13.2
- Adds performance setting
InactiveCollectionPeriods
allowing control over how fast records are removed from memory. #396
Release v1.13.1
Release v1.13.0
Changes in this Release
- refs/tags/v1.13.0
- Updates OTel-Go version dependencies to [email protected], [email protected], [email protected], [email protected]:
Note the corresponding metrics API changes are 🛑 [BREAKING] between releases v0.35.0 and v0.36.0. Because this release depends on metrics API v0.35.0 it continues to support the deprecated APIs. The next minor version of this repository will update the dependency to v0.36.0 or later. #381
Release v1.12.1
Release v1.12.0
Release v1.11.1
Release v1.11.0
🛑 [BREAKING] The set of builtin, automatic metrics instrumentation libraries configured by the Launcher is new and improved in this release. To configure the behavior in Launcher versions 1.10.x and prior, use WithMetricsBuiltinLibraries("all:prestable")
or set LS_METRICS_BUILTIN_LIBRARIES=all:prestable
.
Added
- Add
WithMetricsBuiltinsEnabled()
option and environment variableLS_METRICS_BUILTINS_ENABLED
, which defaults to true. #265 - New replacement for go-contrib instrumentation/runtime added as lightstep/instrumentation/runtime. #267
- New "cputime" instrumentation package combines several related timing metrics, process.cpu.time, process.uptime, and process.runtime.go.gc.cpu.time #269
- New replacement for go-contrib instrumentation/host added as lightstep/instrumentation/host; same code but removes process metrics #268
- When metrics builtin libraries are enabled, the
WithMetricsBuiltinLibraries()
option and environment variableLS_METRICS_BUILTIN_LIBRARIES
control which libraries are enabled. By default, the libraries in./lightstep/instrumentation
are selected as stable builtin instrumentation. To configure the former-default builtin libraries (i.e., runtime and host) useWithMetricsBuiltinLibraries("all:prestable")
or setLS_METRICS_BUILTIN_LIBRARIES=all:prestable
. #274