1个不稳定版本
0.1.0 | 2023年4月4日 |
---|
#5 in #responds
1,922 每月下载量
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