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 49
49
" Kumar" ,
50
50
" Lalit" ,
51
51
" LIBCLANG" ,
52
+ " MILLIS" ,
52
53
" msrv" ,
53
54
" mykey" ,
54
55
" myvalue" ,
68
69
" rstest" ,
69
70
" runtimes" ,
70
71
" rustc" ,
72
+ " rustls" ,
73
+ " semconv" ,
71
74
" serde" ,
72
75
" shoppingcart" ,
73
76
" struct" ,
Original file line number Diff line number Diff line change 5
5
- Bump msrv to 1.75.0.
6
6
- 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 )
7
7
8
-
9
8
## 0.27.0
10
9
11
10
Released 2024-Nov-11
Original file line number Diff line number Diff line change 3
3
## vNext
4
4
5
5
- 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 .
7
7
- Add ` HttpClient::send_bytes ` with ` bytes::Bytes ` request payload and deprecate old ` HttpClient::send ` function.
8
8
9
9
## 0.27.0
Original file line number Diff line number Diff line change 4
4
5
5
- Bump msrv to 1.75.0.
6
6
7
-
8
7
## 0.27.0
9
8
10
9
Released 2024-Nov-11
Original file line number Diff line number Diff line change 14
14
and ` MetricExporter::new(..) ` method. Use
15
15
` MetricExporter::builder()...build() ` to obtain ` MetricExporter ` .
16
16
- 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 ` ,
19
19
` OTEL_EXPORTER_OTLP_LOGS_TIMEOUT ` or ` OTEL_EXPORTER_OTLP_TIMEOUT ` .
20
20
- ` OTEL_EXPORTER_OTLP_TIMEOUT ` env variable.
21
21
- ` with_http().with_timeout() ` API method of
22
22
` 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.
25
24
26
25
## 0.27.0
27
26
Original file line number Diff line number Diff line change 2
2
3
3
## vNext
4
4
5
- - Update proto definitions to v1.4.0 [ #2315 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2315 )
6
5
- Bump msrv to 1.75.0.
7
6
- Update proto definitions to v1.5.0 [ #2439 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/2439 )
8
7
- 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 3
3
## vNext
4
4
5
5
- 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.
7
6
- Bump msrv to 1.75.0.
8
7
9
-
10
8
## 0.27.0
11
9
12
10
Released 2024-Nov-11
Original file line number Diff line number Diff line change 7
7
Additionally, the service name needs to be set on the tracer provider.
8
8
9
9
Previous Signature:
10
+
10
11
``` rust
11
12
let tracer = opentelemetry_zipkin :: new_pipeline ()
12
13
. with_service_name (" trace-demo" )
13
14
. install_simple ()? ;
14
15
```
16
+
15
17
Updated Signature:
18
+
16
19
``` rust
17
20
let exporter = ZipkinExporter :: builder ()
18
21
. build ()? ;
You can’t perform that action at this time.
0 commit comments