13个版本 (重大变更)
0.9.0 | 2024年7月15日 |
---|---|
0.7.0 | 2024年4月12日 |
0.6.0 | 2024年2月26日 |
0.5.3 | 2023年12月13日 |
0.1.0 | 2023年3月27日 |
#198 在 HTTP服务器
每月 1,633 次下载
35KB
642 代码行
Trillium Opentelemetry!
此crate提供符合HTTP语义约定和跟踪语义约定的opentelemetry指标。
使用方法
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;
}
法律
根据以下任一许可协议授权:
- Apache License, Version 2.0 (LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT许可 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
由您选择。
除非您明确声明,否则根据Apache-2.0许可协议定义,您有意提交的任何贡献均应按照上述方式双重许可,而不附加任何额外条款或条件。
依赖关系
~8MB
~194K SLoC