1个不稳定版本

0.1.0 2023年4月4日

#5 in #responds

Download history 1007/week @ 2024-03-15 874/week @ 2024-03-22 1040/week @ 2024-03-29 1002/week @ 2024-04-05 513/week @ 2024-04-12 524/week @ 2024-04-19 333/week @ 2024-04-26 613/week @ 2024-05-03 401/week @ 2024-05-10 393/week @ 2024-05-17 463/week @ 2024-05-24 438/week @ 2024-05-31 661/week @ 2024-06-07 659/week @ 2024-06-14 432/week @ 2024-06-21 162/week @ 2024-06-28

1,922 每月下载量

MPL-2.0 许可证

8KB

这是一个小型的实用程序crate,它提供Prometheus指标端点作为Trillium处理器。它使用文本格式编码响应到"/metrics"的GET请求,使用提供的注册表的指标。

示例

let registry = prometheus::Registry::new();
let handler = trillium_prometheus::text_format_handler(registry);
trillium_smol::config()
    .with_host("0.0.0.0")
    .with_port(9464)
    .run(handler);

依赖项

~7–13MB
~212K SLoC