From 9d7c6143976b7d94d6204a03a9a731f764da5aeb Mon Sep 17 00:00:00 2001 From: Kamil Rojewski Date: Mon, 21 Dec 2020 20:47:44 +0100 Subject: [PATCH] docs: add tracing-elastic-apm to related crates (#1146) ## Motivation From the readme > (if you're the maintainer of a tracing ecosystem crate not in this list, please let us know!) ## Solution Added links to tracing-elastic-apm. Co-authored-by: Eliza Weisman --- README.md | 3 +++ tracing/src/lib.rs | 3 +++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index d6ab946ad5..f67460a9fb 100644 --- a/README.md +++ b/README.md @@ -399,6 +399,7 @@ are not maintained by the `tokio` project. These include: - [`diesel-tracing`] provides integration with [`diesel`] database connections. - [`tracing-tracy`] provides a way to collect [Tracy] profiles in instrumented applications. +- [`tracing-elastic-apm`] provides a layer for reporting traces to [Elastic APM]. (if you're the maintainer of a `tracing` ecosystem crate not in this list, please let us know!) @@ -426,6 +427,8 @@ please let us know!) [`diesel-tracing`]: https://crates.io/crates/diesel-tracing [`tracing-tracy`]: https://crates.io/crates/tracing-tracy [Tracy]: https://github.com/wolfpld/tracy +[`tracing-elastic-apm`]: https://crates.io/crates/tracing-elastic-apm +[Elastic APM]: https://www.elastic.co/apm **Note:** that some of the ecosystem crates are currently unreleased and undergoing active development. They may be less stable than `tracing` and diff --git a/tracing/src/lib.rs b/tracing/src/lib.rs index c9737219dd..68cd74ba91 100644 --- a/tracing/src/lib.rs +++ b/tracing/src/lib.rs @@ -777,6 +777,7 @@ //! - [`diesel-tracing`] provides integration with [`diesel`] database connections. //! - [`tracing-tracy`] provides a way to collect [Tracy] profiles in instrumented //! applications. +//! - [`tracing-elastic-apm`] provides a layer for reporting traces to [Elastic APM]. //! //! If you're the maintainer of a `tracing` ecosystem crate not listed above, //! please let us know! We'd love to add your project to the list! @@ -802,6 +803,8 @@ //! [`diesel-tracing`]: https://crates.io/crates/diesel-tracing //! [`tracing-tracy`]: https://crates.io/crates/tracing-tracy //! [Tracy]: https://github.com/wolfpld/tracy +//! [`tracing-elastic-apm`]: https://crates.io/crates/tracing-elastic-apm +//! [Elastic APM]: https://www.elastic.co/apm //! //!
//!
Note