File tree Expand file tree Collapse file tree 9 files changed +247
-429
lines changed
opentelemetry-appender-tracing
opentelemetry-jaeger-propagator
opentelemetry-semantic-conventions Expand file tree Collapse file tree 9 files changed +247
-429
lines changed Original file line number Diff line number Diff line change 4949 " Kumar" ,
5050 " Lalit" ,
5151 " LIBCLANG" ,
52+ " MILLIS" ,
5253 " msrv" ,
5354 " mykey" ,
5455 " myvalue" ,
6869 " rstest" ,
6970 " runtimes" ,
7071 " rustc" ,
72+ " rustls" ,
73+ " semconv" ,
7174 " serde" ,
7275 " shoppingcart" ,
7376 " struct" ,
Original file line number Diff line number Diff line change 55- Bump msrv to 1.75.0.
66- New experimental feature to use trace\_ id & span\_ id from spans created through the [ tracing] ( https://crates.io/crates/tracing ) crate (experimental_use_tracing_span_context) [ #2438 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2438 )
77
8-
98## 0.27.0
109
1110Released 2024-Nov-11
Original file line number Diff line number Diff line change 33## vNext
44
55- Bump msrv to 1.75.0.
6- - Add "internal-logs" feature flag (enabled by default), and emit internal logs.
6+ - Add "internal-logs" feature flag (enabled by default), and emit internal logs via ` tracing ` crate .
77- Add ` HttpClient::send_bytes ` with ` bytes::Bytes ` request payload and deprecate old ` HttpClient::send ` function.
88
99## 0.27.0
Original file line number Diff line number Diff line change 44
55- Bump msrv to 1.75.0.
66
7-
87## 0.27.0
98
109Released 2024-Nov-11
Original file line number Diff line number Diff line change 1414 and ` MetricExporter::new(..) ` method. Use
1515 ` MetricExporter::builder()...build() ` to obtain ` MetricExporter ` .
1616- The HTTP clients (reqwest, reqwest-blocking, hyper) now support the
17- timeout internal configured in below order
18- - Signal specific env variable ` OTEL_EXPORTER_OTLP_TRACES_TIMEOUT ` ,
17+ export timeout interval configured in below order
18+ - Signal specific env variable ` OTEL_EXPORTER_OTLP_TRACES_TIMEOUT ` ,
1919 ` OTEL_EXPORTER_OTLP_LOGS_TIMEOUT ` or ` OTEL_EXPORTER_OTLP_TIMEOUT ` .
2020 - ` OTEL_EXPORTER_OTLP_TIMEOUT ` env variable.
2121 - ` with_http().with_timeout() ` API method of
2222` LogExporterBuilder ` and ` SpanExporterBuilder ` and ` MetricsExporterBuilder ` .
23- - The default interval of 10sec is used if none is configured.
24-
23+ - The default interval of 10 seconds is used if none is configured.
2524
2625## 0.27.0
2726
Original file line number Diff line number Diff line change 22
33## vNext
44
5- - Update proto definitions to v1.4.0 [ #2315 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2315 )
65- Bump msrv to 1.75.0.
76- Update proto definitions to v1.5.0 [ #2439 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2439 )
87- Feature flag "populate-logs-event-name" is removed as no longer relevant.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 33## vNext
44
55- Update to [ v1.29.0] ( https://github.com/open-telemetry/semantic-conventions/releases/tag/v1.29.0 ) of the semantic conventions.
6- - Update to [ v0.11.0] ( https://github.com/open-telemetry/weaver/releases/tag/v0.11.0 ) of the semantic conventions.
76- Bump msrv to 1.75.0.
87
9-
108## 0.27.0
119
1210Released 2024-Nov-11
Original file line number Diff line number Diff line change 77 Additionally, the service name needs to be set on the tracer provider.
88
99 Previous Signature:
10+
1011 ``` rust
1112 let tracer = opentelemetry_zipkin :: new_pipeline ()
1213 . with_service_name (" trace-demo" )
1314 . install_simple ()? ;
1415 ```
16+
1517 Updated Signature:
18+
1619 ``` rust
1720 let exporter = ZipkinExporter :: builder ()
1821 . build ()? ;
You can’t perform that action at this time.
0 commit comments