| Crates.io | trillium-opentelemetry |
| lib.rs | trillium-opentelemetry |
| version | 0.10.0 |
| created_at | 2023-03-22 05:58:53.593747+00 |
| updated_at | 2025-01-24 17:27:12.490185+00 |
| description | opentelemetry for trillium.rs |
| homepage | |
| repository | https://github.com/trillium-rs/trillium-opentelemetry |
| max_upload_size | |
| id | 816740 |
| size | 119,908 |
This crate provides opentelemetry metrics conforming to semantic conventions for http and tracing semantic conventions.
use trillium_opentelemetry::global::{instrument, instrument_handler};
use trillium_router::router;
#[tokio::main]
async fn main() {
// configure a global meter provider and tracer provider here
// see examples/with_global.rs for a functional example
trillium_tokio::run_async((
instrument().with_route(|conn| conn.route().map(|r| r.to_string().into())),
instrument_handler(router().get("/some/:path", instrument_handler("ok")),
))
.await;
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.