From 6a50a726773f395c27049569ae58da0c390db110 Mon Sep 17 00:00:00 2001 From: LukeMathWalker Date: Sun, 25 Apr 2021 13:15:07 +0100 Subject: [PATCH] Add tracing-actix-web --- README.md | 2 ++ tracing/src/lib.rs | 1 + 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 4c5d4e6452..86609f7db5 100644 --- a/README.md +++ b/README.md @@ -376,6 +376,7 @@ are not maintained by the `tokio` project. These include: `tracing` events and generates histograms. - [`tracing-honeycomb`] Provides a layer that reports traces spanning multiple machines to [honeycomb.io]. Backed by [`tracing-distributed`]. - [`tracing-distributed`] Provides a generic implementation of a layer that reports traces spanning multiple machines to some backend. +- [`tracing-actix-web`] provides `tracing` integration for the `actix-web` web framework. - [`tracing-actix`] provides `tracing` integration for the `actix` actor framework. - [`tracing-gelf`] implements a subscriber for exporting traces in Greylog @@ -409,6 +410,7 @@ please let us know!) [`tracing-distributed`]: https://crates.io/crates/tracing-distributed [honeycomb.io]: https://www.honeycomb.io/ [`tracing-actix`]: https://crates.io/crates/tracing-actix +[`tracing-actix-web`]: https://crates.io/crates/tracing-actix-web [`tracing-gelf`]: https://crates.io/crates/tracing-gelf [`tracing-coz`]: https://crates.io/crates/tracing-coz [coz]: https://github.com/plasma-umass/coz diff --git a/tracing/src/lib.rs b/tracing/src/lib.rs index 76a18846a2..a6fe0a7c79 100644 --- a/tracing/src/lib.rs +++ b/tracing/src/lib.rs @@ -779,6 +779,7 @@ //! [OpenTelemetry]-compatible distributed tracing systems. //! - [`tracing-honeycomb`] Provides a layer that reports traces spanning multiple machines to [honeycomb.io]. Backed by [`tracing-distributed`]. //! - [`tracing-distributed`] Provides a generic implementation of a layer that reports traces spanning multiple machines to some backend. +//! - [`tracing-actix-web`] provides `tracing` integration for the `actix-web` web framework. //! - [`tracing-actix`] provides `tracing` integration for the `actix` actor //! framework. //! - [`tracing-gelf`] implements a subscriber for exporting traces in Greylog