File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 55- Update ` async-std ` dependency version to 1.13
66- * Breaking* - Remove support for ` MetricProducer ` which allowed metrics from
77 external sources to be sent through OpenTelemetry.
8- [ #2105 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2105 )
8+ [ #2105 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2105 )
9+ - Feature: ` SimpleSpanProcessor::new ` is now public [ #2119 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2119 )
910
1011## v0.25.0
1112
Original file line number Diff line number Diff line change @@ -109,7 +109,8 @@ pub struct SimpleSpanProcessor {
109109}
110110
111111impl SimpleSpanProcessor {
112- pub ( crate ) fn new ( exporter : Box < dyn SpanExporter > ) -> Self {
112+ /// Create a new [SimpleSpanProcessor] using the provided exporter.
113+ pub fn new ( exporter : Box < dyn SpanExporter > ) -> Self {
113114 Self {
114115 exporter : Mutex :: new ( exporter) ,
115116 }
You can’t perform that action at this time.
0 commit comments