我正在使用 springboot 网关 2.0.4.RELEASE。
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
添加此依赖项后,它将所有指标公开给普罗米修斯端点。
我想禁止某些指标通过/actuator/prometheus端点公开。
假设我想禁用
- gateway_requests_seconds_count
- gateway_requests_seconds_sum
- gateway_requests_seconds_max
有谁知道我怎样才能做到这一点?
谢谢
阿尔佩什