File tree Expand file tree Collapse file tree 2 files changed +1
-248
lines changed Expand file tree Collapse file tree 2 files changed +1
-248
lines changed Original file line number Diff line number Diff line change @@ -117,8 +117,6 @@ mod metrics;
117
117
mod layer;
118
118
/// Span extension which enables OpenTelemetry context management.
119
119
mod span_ext;
120
- /// Protocols for OpenTelemetry Tracers that are compatible with Tracing
121
- mod tracer;
122
120
123
121
#[ cfg( feature = "activate_context" ) ]
124
122
mod stack;
@@ -130,13 +128,10 @@ pub use layer::{layer, OpenTelemetryLayer};
130
128
#[ cfg( feature = "metrics" ) ]
131
129
pub use metrics:: MetricsLayer ;
132
130
pub use span_ext:: OpenTelemetrySpanExt ;
133
- pub use tracer:: PreSampledTracer ;
134
131
135
132
/// Per-span OpenTelemetry data tracked by this crate.
136
- ///
137
- /// Useful for implementing [PreSampledTracer] in alternate otel SDKs.
138
133
#[ derive( Debug , Clone , Default ) ]
139
- pub struct OtelData {
134
+ struct OtelData {
140
135
/// The parent otel `Context` for the current tracing span.
141
136
pub parent_cx : opentelemetry:: Context ,
142
137
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments