Crates.io | trillium-opentelemetry |
lib.rs | trillium-opentelemetry |
version | 0.9.0 |
source | src |
created_at | 2023-03-22 05:58:53.593747 |
updated_at | 2024-07-15 22:57:45.701392 |
description | opentelemetry for trillium.rs |
homepage | |
repository | https://github.com/trillium-rs/trillium-opentelemetry |
max_upload_size | |
id | 816740 |
size | 108,843 |
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.