Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI fix #1970

Merged
merged 2 commits into from
Jul 27, 2024
Merged

CI fix #1970

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
2 changes: 1 addition & 1 deletion opentelemetry-sdk/src/trace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! * The [`Tracer`] struct which performs all tracing operations.
//! * The [`Span`] struct with is a mutable object storing information about the
//! current operation execution.
//! current operation execution.
//! * The [`TracerProvider`] struct which configures and produces [`Tracer`]s.
mod config;
mod events;
Expand Down
12 changes: 6 additions & 6 deletions opentelemetry-zipkin/src/propagator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
//! The `B3Propagator` facilitates `SpanContext` propagation using
//! B3 Headers. This propagator supports both version of B3 headers,
//! 1. Single Header:
//! b3: {trace_id}-{span_id}-{sampling_state}-{parent_span_id}
//! b3: {trace_id}-{span_id}-{sampling_state}-{parent_span_id}
//! 2. Multiple Headers:
//! X-B3-TraceId: {trace_id}
//! X-B3-ParentSpanId: {parent_span_id}
//! X-B3-SpanId: {span_id}
//! X-B3-Sampled: {sampling_state}
//! X-B3-Flags: {debug_flag}
//! X-B3-TraceId: {trace_id}
//! X-B3-ParentSpanId: {parent_span_id}
//! X-B3-SpanId: {span_id}
//! X-B3-Sampled: {sampling_state}
//! X-B3-Flags: {debug_flag}
//!
//! If `inject_encoding` is set to `B3Encoding::SingleHeader` then `b3` header is used to inject
//! and extract. Otherwise, separate headers are used to inject and extract.
Expand Down
Loading