Commit 7a074b5 1 parent 7ab5e0f commit 7a074b5 Copy full SHA for 7a074b5
File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5
5
- Update ` async-std ` dependency version to 1.13
6
6
- * Breaking* - Remove support for ` MetricProducer ` which allowed metrics from
7
7
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 )
9
10
10
11
## v0.25.0
11
12
Original file line number Diff line number Diff line change @@ -109,7 +109,8 @@ pub struct SimpleSpanProcessor {
109
109
}
110
110
111
111
impl 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 {
113
114
Self {
114
115
exporter : Mutex :: new ( exporter) ,
115
116
}
You can’t perform that action at this time.
0 commit comments