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
どうすればこれを達成できるか知っている人はいますか?
ありがとう
アルペッシュ