File tree Expand file tree Collapse file tree 7 files changed +12
-4
lines changed
Expand file tree Collapse file tree 7 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## vNext
3+ ## v0.14.0 (DEPRECATED)
44
55- Bump ` async-channel ` version to 2.3
66- Bump opentelemetry and opentelemetry_sdk versions to 0.29
Original file line number Diff line number Diff line change 11[package ]
22name = " opentelemetry-zpages"
3- version = " 0.13.0 "
4- description = " ZPages implementation for OpenTelemetry"
3+ version = " 0.14.0+deprecated "
4+ description = " [DEPRECATED] ZPages implementation for OpenTelemetry"
55homepage = " https://github.com/open-telemetry/opentelemetry-rust-contrib/tree/main/opentelemetry-zpages"
66repository = " https://github.com/open-telemetry/opentelemetry-rust-contrib/tree/main/opentelemetry-zpages"
77readme = " README.md"
Original file line number Diff line number Diff line change 11# OpenTelemetry ZPages
22
3+ > [ !WARNING]
4+ > ** This crate is deprecated and no longer maintained.**
5+
36![ OpenTelemetry — An observability framework for cloud-native software.] [ splash ]
47
58[ splash ] : https://raw.githubusercontent.com/open-telemetry/opentelemetry-rust/master/assets/logo-text.png
Original file line number Diff line number Diff line change 1+ #![ allow( deprecated) ]
12use hyper:: http:: { Request , Response } ;
23use hyper:: service:: { make_service_fn, service_fn} ;
34use hyper:: { Body , Server } ;
Original file line number Diff line number Diff line change 11//! ZPages implementation for Opentelemetry
22//!
3+ //! **This crate is deprecated and no longer maintained.**
4+ //!
35//! # Overview
46//! zPages are an in-process alternative to external exporters. When included,
57//! they collect and aggregate tracing and metrics information in the
5860#![ doc(
5961 html_logo_url = "https://raw.githubusercontent.com/open-telemetry/opentelemetry-rust/master/assets/logo.svg"
6062) ]
61- #![ cfg_attr ( test , deny ( warnings ) ) ]
63+ #![ allow ( deprecated ) ]
6264
6365use trace:: span_queue:: SpanQueue ;
6466
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ pub(crate) mod span_queue;
3939/// # }
4040///
4141/// ```
42+ #[ deprecated( note = "This crate is deprecated and no longer maintained." ) ]
4243pub fn tracez < R : Runtime > (
4344 sample_size : usize ,
4445 runtime : R ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ use std::fmt::Formatter;
1919///
2020/// ZPagesSpanProcessor employs a `SpanAggregator` running as another task to aggregate the spans
2121/// using the name of spans.
22+ #[ deprecated( note = "This crate is deprecated and no longer maintained." ) ]
2223pub struct ZPagesSpanProcessor {
2324 tx : Sender < TracezMessage > ,
2425}
You can’t perform that action at this time.
0 commit comments