Prometheus-push-client Maven 依赖
时间: 2023-11-29 12:05:20 浏览: 151
你可以使用以下 Maven 依赖来使用 Prometheus Push Gateway 客户端:
```xml
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient_pushgateway</artifactId>
<version>0.11.0</version>
</dependency>
```
这将为你提供 `PushGateway` 类,可以用来向 Push Gateway 发送指标数据。你还需要为 Prometheus 客户端添加以下 Maven 依赖:
```xml
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient</artifactId>
<version>0.11.0</version>
</dependency>
```
这将为你提供 Prometheus 客户端的核心类,包括 `CollectorRegistry`、`Counter`、`Gauge`、`Histogram` 等。你需要使用这些类来创建指标并将其注册到 `CollectorRegistry` 中,然后再使用 `PushGateway` 将这些指标推送到 Push Gateway。
阅读全文