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

The Rust OpenTelemetry implementation

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

Currently this depends on dashmap `^4.0.1`, which has this security advisory: https://rustsec.org/advisories/RUSTSEC-2022-0002.html It's fixed in `>=5.1.0`

area:trace

The module docs recommend using a batch exporter for optimal performance, which is as simple as: ``` let tracer = opentelemetry_jaeger::new_pipeline() .install_batch(opentelemetry::runtime::Tokio)?; ``` However, the default batch export interval is...

enhancement
good first issue
area:trace

Hi! I noticed that the maintainers and approvers of OTel Rust are neither listed in https://github.com/open-telemetry/community/blob/main/community-members.md nor here in the repository. https://github.com/open-telemetry/opentelemetry-rust/blob/ae00d344a918d880c1ab28002a5c907f5d685e0e/CONTRIBUTING.md?plain=1#L124-L126 just links to https://github.com/open-telemetry/opentelemetry-rust/blob/ae00d344a918d880c1ab28002a5c907f5d685e0e/CODEOWNERS#L1-L5 but users who are...

I was trying to use the [`opentelemetry::sdk::trace::ShouldSample`](https://docs.rs/opentelemetry/latest/opentelemetry/sdk/trace/trait.ShouldSample.html) API and am having trouble. I figured that I would at least write it down here in case others have the same issue...

documentation
area:trace

Following reading more on the IdGenerator I was also taking a look at some of the other language repos, and I wonder if there shouldn't be a `opentelemetry-rust-contrib` repo created...

area:common

![image](https://user-images.githubusercontent.com/643846/172310090-ecd0f3c8-e2fd-4397-a1ee-57f516337f2e.png) Base on doing some cursory benchmarking I was seeing that in `main` roughtly 28% of the time spent on `Span::start()` is 20% in trace_id generation and 8% in span_id...

enhancement
area:trace

See the spec change for details https://github.com/open-telemetry/opentelemetry-specification/pull/2579

enhancement
good first issue
area:trace

We are currently using open telemetry with the OTLP exporter. We get these sort of errors while batch-exporting: ``` OpenTelemetry trace error occurred. Exporter otlp encountered the following error(s): the...

enhancement
help wanted
A-common
M-exporter-otlp

See [VERSIONING.md](https://github.com/open-telemetry/opentelemetry-rust/blob/main/VERSIONING.md) for what is being stabilized.

Hello! I'm getting an app set up that exports `tracing` spans and logs through `tracing-opentelemetry` to `opentelemetry`, which I'm finally sinking into `opentelemetry-datadog` (latest on all). I've noticed the spans...

enhancement
area:trace