Skip to content

Commit bd0bcc2

Browse files
tobzhawkw
authored andcommitted
Add tracing-fluent-assertions to related crates. (#1764)
* Add tracing-fluent-assertions to related crates.
1 parent c363259 commit bd0bcc2

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

tracing/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,10 @@ maintained by the `tokio` project. These include:
390390
- [`diesel-tracing`] provides integration with [`diesel`] database connections.
391391
- [`tracing-tracy`] provides a way to collect [Tracy] profiles in instrumented
392392
applications.
393+
- [`tracing-elastic-apm`] provides a layer for reporting traces to [Elastic APM].
394+
- [`tracing-etw`] provides a layer for emitting Windows [ETW] events.
395+
- [`tracing-fluent-assertions`] provides a fluent assertions-style testing
396+
framework for validating the behavior of `tracing` spans.
393397

394398
If you're the maintainer of a `tracing` ecosystem crate not listed above,
395399
please let us know! We'd love to add your project to the list!
@@ -410,6 +414,11 @@ please let us know! We'd love to add your project to the list!
410414
[`diesel-tracing`]: https://crates.io/crates/diesel-tracing
411415
[`tracing-tracy`]: https://crates.io/crates/tracing-tracy
412416
[Tracy]: https://github.com/wolfpld/tracy
417+
[`tracing-elastic-apm`]: https://crates.io/crates/tracing-elastic-apm
418+
[Elastic APM]: https://www.elastic.co/apm
419+
[`tracing-etw`]: https://github.com/microsoft/tracing-etw
420+
[ETW]: https://docs.microsoft.com/en-us/windows/win32/etw/about-event-tracing
421+
[`tracing-fluent-assertions`]: https://crates.io/crates/tracing-fluent-assertions
413422

414423
**Note:** that some of the ecosystem crates are currently unreleased and
415424
undergoing active development. They may be less stable than `tracing` and

tracing/src/lib.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -739,6 +739,8 @@
739739
//! applications.
740740
//! - [`tracing-elastic-apm`] provides a layer for reporting traces to [Elastic APM].
741741
//! - [`tracing-etw`] provides a layer for emitting Windows [ETW] events.
742+
//! - [`tracing-fluent-assertions`] provides a fluent assertions-style testing
743+
//! framework for validating the behavior of `tracing` spans.
742744
//!
743745
//! If you're the maintainer of a `tracing` ecosystem crate not listed above,
744746
//! please let us know! We'd love to add your project to the list!
@@ -765,10 +767,7 @@
765767
//! [`diesel-tracing`]: https://crates.io/crates/diesel-tracing
766768
//! [`tracing-tracy`]: https://crates.io/crates/tracing-tracy
767769
//! [Tracy]: https://github.com/wolfpld/tracy
768-
//! [`tracing-elastic-apm`]: https://crates.io/crates/tracing-elastic-apm
769-
//! [Elastic APM]: https://www.elastic.co/apm
770-
//! [`tracing-etw`]: https://github.com/microsoft/tracing-etw
771-
//! [ETW]: https://docs.microsoft.com/en-us/windows/win32/etw/about-event-tracing
770+
//! [`tracing-fluent-assertions`]: https://crates.io/crates/tracing-fluent-assertions
772771
//!
773772
//! <pre class="ignore" style="white-space:normal;font:inherit;">
774773
//! <strong>Note</strong>: Some of these ecosystem crates are currently

0 commit comments

Comments
 (0)