使用Prometheus监视Spring Boot缓存指标

问题描述 投票:0回答:1

我正在尝试使用prometheus来监视spring-boot中的某些缓存指标。缓存是使用@Cacheable创建的,我的配置如下:

management.endpoints:
  web.exposure.include: "*"
  metrics.enabled: true
  prometheus.enabled: true
management.metrics:
  export.prometheus.enabled: true
  cache.instrument: true

我的确在/ actuator / caches /列表中看到了我的缓存,但在/ metrics或/ prometheus端点中都没有详细说明。

[我看到了一些有关手动需要注册缓存的注意事项,但是我也无法正常工作(我也不确定它确实适用)。

spring-boot prometheus spring-boot-actuator spring-cache
1个回答
0
投票

似乎您的财产有误,应该是您拥有的[[端点和另外的[[s]

您的财产应为management.endpoint.prometheus.enabled您可以在此处引用所有执行器属性

https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-application-properties.html#actuator-properties

© www.soinside.com 2019 - 2024. All rights reserved.