Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Changed

- Convert process metric instruments in `go.opentelemetry.io/otel/semconv/v1.40.0/processconv` to Observable variants (`Int64ObservableCounter`, `Int64ObservableGauge`, `Int64ObservableUpDownCounter`, `Float64ObservableGauge`) to align with how process-level metrics are collected via OS callbacks. (#7342)
- `ErrorType` in `go.opentelemetry.io/otel/semconv` now unwraps errors created with `fmt.Errorf` when deriving the `error.type` attribute. (#8133)
- `go.opentelemetry.io/otel/sdk/log` now unwraps error chains created with `fmt.Errorf` when deriving the `error.type` attribute from errors on log records. (#8133)
- `Set.MarshalLog` method in `go.opentelemetry.io/otel/attribute` now uses `Value.String` formatting following the [OpenTelemetry AnyValue representation for non-OTLP protocols](https://opentelemetry.io/docs/specs/otel/common/#anyvalue). (#8169)
Expand Down
11 changes: 11 additions & 0 deletions semconv/templates/registry/go/weaver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,18 @@ text_maps:
otel.sdk.processor.log.queue.size: Int64ObservableUpDownCounter
otel.sdk.processor.span.queue.capacity: Int64ObservableUpDownCounter
otel.sdk.processor.span.queue.size: Int64ObservableUpDownCounter
process.context_switches: Int64ObservableCounter
process.cpu.time: Float64ObservableCounter
process.cpu.utilization: Int64ObservableGauge
process.disk.io: Int64ObservableCounter
process.memory.usage: Int64ObservableUpDownCounter
process.memory.virtual: Int64ObservableUpDownCounter
process.network.io: Int64ObservableCounter
process.paging.faults: Int64ObservableCounter
process.thread.count: Int64ObservableUpDownCounter
process.unix.file_descriptor.count: Int64ObservableUpDownCounter
process.uptime: Float64ObservableGauge
process.windows.handle.count: Int64ObservableUpDownCounter
system.memory.usage: Int64ObservableUpDownCounter
system.memory.utilization: Float64ObservableGauge
system.network.io: Int64ObservableCounter
Expand Down
Loading