Solon Detector Prometheus
一个支持导出 Prometheus 指标的 Solon 插件
Solon Detector Prometheus 是一个基于 [Solon] 框架的 Prometheus 监控插件,借助 Micrometer 实现,减少在 Solon 中的配置。
允许将 Solon 应用程序的监控数据,导出到 Prometheus 端点。
Maven
在 pom.xml 中添加以下依赖:
1 | <dependency> |
Gradle
1 | implementation 'xyz.chaofan.solon:solon.detector.prometheus:1.0.0' |
应用程序启动后,访问 /metrics
即可查看监控数据。
1 | solon.detector.prometheus.endpoint: /metrics # 自定义端点,默认为 /metrics |
1 |
|
首先在 1 处注入 MeterRegistry
对象
然后在 2 处创建一个 Counter
对象,并注册到当前 meterRegistry
最后在 3 处使用 Counter
对象记录请求次数。
Counter 对象注册只需要一次,可以在应用程序启动时注册。
访问 /metrics
1 | # HELP request_hello_total Number of hello requests |