tower_otel/lib.rs
1/*!
2
3# Crate features
4
5* **axum** -
6 Enables the [`axum`] integration. Trace and metrics will contain the
7 `http.route` attribute, populated with the path in the router that matches
8 the request, as well as the `client.address` and `client.port` attributes.
9
10[`axum`]: https://docs.rs/axum
11
12*/
13
14pub mod metrics;
15pub mod trace;
16mod util;