1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-24 20:14:40 +02:00
opentelemetry-go/metric
Tyler Yahn 8c38f80ec3
Release v1.33.0 (#6035)
### Added

- Add `Reset` method to `SpanRecorder` in
`go.opentelemetry.io/otel/sdk/trace/tracetest`. (#5994)
- Add `EnabledInstrument` interface in
`go.opentelemetry.io/otel/sdk/metric/internal/x`. This is an
experimental interface that is implemented by synchronous instruments
provided by `go.opentelemetry.io/otel/sdk/metric`. Users can use it to
avoid performing computationally expensive operations when recording
measurements. It does not fall within the scope of the OpenTelemetry Go
versioning and stability [policy](./VERSIONING.md) and it may be changed
in backwards incompatible ways or removed in feature releases. (#6016)

### Changed

- The default global API now supports full auto-instrumentation from the
`go.opentelemetry.io/auto` package. See that package for more
information. (#5920)
- Propagate non-retryable error messages to client in
`go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. (#5929)
- Propagate non-retryable error messages to client in
`go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`.
(#5929)
- Propagate non-retryable error messages to client in
`go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp`.
(#5929)
- Performance improvements for attribute value `AsStringSlice`,
`AsFloat64Slice`, `AsInt64Slice`, `AsBoolSlice`. (#6011)
- Change `EnabledParameters` to have a `Severity` field instead of a
getter and setter in `go.opentelemetry.io/otel/log`. (#6009)

### Fixed

- Fix inconsistent request body closing in
`go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. (#5954)
- Fix inconsistent request body closing in
`go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`.
(#5954)
- Fix inconsistent request body closing in
`go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp`.
(#5954)
- Fix invalid exemplar keys in
`go.opentelemetry.io/otel/exporters/prometheus`. (#5995)
- Fix attribute value truncation in
`go.opentelemetry.io/otel/sdk/trace`. (#5997)
- Fix attribute value truncation in `go.opentelemetry.io/otel/sdk/log`.
(#6032)
2024-12-12 09:54:13 -08:00
..
embedded Add the synchronous gauge to the metric API and SDK (#5304) 2024-05-16 09:56:40 -07:00
noop [chore]: enable expected-actual rule from testifylint (#5848) 2024-09-26 12:04:33 +02:00
asyncfloat64_test.go [chore] Simplify the license header (#4987) 2024-02-29 07:05:28 +01:00
asyncfloat64.go Fix typos (#5763) 2024-09-09 08:53:15 +02:00
asyncint64_test.go [chore] Simplify the license header (#4987) 2024-02-29 07:05:28 +01:00
asyncint64.go Fix typos (#5763) 2024-09-09 08:53:15 +02:00
config_test.go [chore] Simplify the license header (#4987) 2024-02-29 07:05:28 +01:00
config.go [chore] Simplify the license header (#4987) 2024-02-29 07:05:28 +01:00
doc.go Document instrument name requirements (#5435) 2024-05-30 13:59:58 -07:00
example_test.go Fix lint issues for golangci-lint 1.62.0 (#5967) 2024-11-13 08:58:59 +01:00
go.mod Release v1.33.0 (#6035) 2024-12-12 09:54:13 -08:00
go.sum chore(deps): update module go.opentelemetry.io/auto/sdk to v1.1.0 (#6025) 2024-12-05 12:57:07 -08:00
instrument_test.go [chore] Simplify the license header (#4987) 2024-02-29 07:05:28 +01:00
instrument.go doc(metric): fix incorrect explanation of how metric.WithAttributes works (#5822) 2024-09-16 09:09:28 +02:00
meter.go Fix interfaces doc formatting (#5658) 2024-08-05 21:14:00 +02:00
README.md Add READMEs to every package (#5103) 2024-03-26 20:13:54 +01:00
syncfloat64_test.go Add the synchronous gauge to the metric API and SDK (#5304) 2024-05-16 09:56:40 -07:00
syncfloat64.go Add the synchronous gauge to the metric API and SDK (#5304) 2024-05-16 09:56:40 -07:00
syncint64_test.go Add the synchronous gauge to the metric API and SDK (#5304) 2024-05-16 09:56:40 -07:00
syncint64.go Add the synchronous gauge to the metric API and SDK (#5304) 2024-05-16 09:56:40 -07:00

Metric API

PkgGoDev