opentelemetry-rust icon indicating copy to clipboard operation
opentelemetry-rust copied to clipboard

The Rust OpenTelemetry implementation

Results 396 opentelemetry-rust issues
Sort by recently updated
recently updated
newest added

This was discussed in today's community meeting: 1. We lack unit testing for Metrics. 2. We have some module level tests https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-sdk/src/metrics/mod.rs that also tests basic scenarios only We need...

A-metrics
M-sdk

### What happened? Neither attributes defined by `Resource::new()` nor by `versioned_meter()` are exported correctly to prometheus. ```rust let registry = Registry::new() pub fn init_tracing() -> Result { let tracer =...

enhancement
triage:accepted
M-exporter-prometheus

In this failure path, does the measurement just get dropped? The only reason why a mutex lock would fail is if the mutex was poisoned. Reading the [documentation on mutex...

As discussed here: > https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-semantic-conventions/scripts/templates we don't have metric attributes generated? is that something we can add as well? Yes, there were some docker errors while generating the source files...

A-metrics

Fixes #1418 Accidental side effect of this PR: https://github.com/open-telemetry/opentelemetry-rust/pull/1407 ## Changes Re-calculates hash, if attributes are changed, which can occur when View is configured to drop attributes. Not adding changelog,...

Fixes #1527 Design discussion issue (if applicable) #1527 ## Changes This is currently just an exploratory PR to aid in the design discussion of the attached issue. May upgrade this...

Fixes # Design discussion issue (if applicable) # ## Changes Please provide a brief description of the changes here. ## Merge requirement checklist * [ ] [CONTRIBUTING](https://github.com/open-telemetry/opentelemetry-rust/blob/main/CONTRIBUTING.md) guidelines followed *...

Fixes # Design discussion issue (if applicable) # ## Changes Previously, atomics were managed by the `ValueMap` itself in the `measure()` function. This meant that every `counter.add(1, &[])` call would...

### What happened? new function on OpenTelemetryTracingBridge is waiting a LoggerProvider instead of Trace GlobalTracerProvider ### API Version 0.3.0 ### SDK Version 0.3.0 ### What Exporters are you seeing the...

bug
triage:todo