You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: opentelemetry-zipkin/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
## vNext
4
4
5
+
-**Deprecated**: The `opentelemetry-zipkin` crate is now deprecated. Use the OTLP exporter (`opentelemetry-otlp`) instead. Zipkin supports native OTLP ingestion. This crate will be removed in a future release.
5
6
-`reqwest`'s crypto backend has changed from `ring` to `aws-lc-sys`.
Copy file name to clipboardExpand all lines: opentelemetry-zipkin/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# OpenTelemetry Zipkin Exporter
2
2
3
+
## ⚠️ Deprecation Notice
4
+
5
+
**This crate is deprecated.** Use the [OTLP exporter](https://crates.io/crates/opentelemetry-otlp) instead. Zipkin supports [native OTLP ingestion](https://zipkin.io/pages/architecture.html). This crate will be removed in a future release.
6
+
3
7
![OpenTelemetry — An observability framework for cloud-native software.][splash]
//! This crate will be removed in a future release.
6
+
//!
3
7
//! Collects OpenTelemetry spans and reports them to a given Zipkin collector
4
8
//! endpoint. See the [Zipkin Docs] for details and deployment information.
5
9
//!
@@ -232,6 +236,11 @@
232
236
//! increased past 1.46, three minor versions prior. Increasing the minimum
233
237
//! supported compiler version is not considered a semver breaking change as
234
238
//! long as doing so complies with this policy.
239
+
#![deprecated(
240
+
since = "0.32.0",
241
+
note = "Zipkin exporter is deprecated. Use the OTLP exporter instead. Refer to https://zipkin.io/pages/architecture.html for Zipkin's native OTLP support."
0 commit comments