Cijo Thomas
Cijo Thomas
### Library name and version Azure.Monitor.OpenTelemetry.Exporter 1.2.0 ### Describe the bug https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/Internals/Statsbeat/AzureMonitorStatsbeat.cs#L71 The Exporter is setting up an internal MeterProvider, leading to potentially misleading internal logs from OpenTelemetry. For example,...
Adding more tests to test meter and instrument identify part, and whether they get merged or not.
## Background The Rust ecosystem has two prominent tracing APIs: the OpenTelemetry Tracing API (Otel for short), delivered through the `opentelemetry` crate, and the [Tokio tracing API](https://github.com/tokio-rs/tracing), provided by the...
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...
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,...
Methods like `install_batch` created unintended side-effects https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/src/span.rs#L143-L150 1. It sets global providers, which may not be what user has intended. 2. It returns a tracer with instrumentation scope set to...
https://github.com/open-telemetry/opentelemetry-rust/pull/1021 added supported for Attributes to instrumentation scope, which already had version, schema_url. This started with just name and evolved to add more and more (because spec added them). https://github.com/open-telemetry/opentelemetry-rust/pull/1021#discussion_r1161364638...
See https://github.com/open-telemetry/opentelemetry-rust/pull/1578#discussion_r1507777504
``` failures: ---- metrics::tests::second_delta_export_does_not_give_no_attr_value_if_add_not_called stdout ---- thread 'metrics::tests::second_delta_export_does_not_give_no_attr_value_if_add_not_called' panicked at opentelemetry-sdk/src/metrics/mod.rs:674:13: No scope metrics in latest export note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace failures: metrics::tests::second_delta_export_does_not_give_no_attr_value_if_add_not_called ```