云应用引擎 CAE-java应用如何提供Prometheus指标?:修改配置文件

时间:2023-11-09 16:48:30

修改配置文件

编辑resources目录下的application.yml文件,修改actuator相关的配置来暴露Prometheus格式的指标数据。

management:
  endpoints:
    web:
      exposure:
        include: prometheus

配置完成后,此springboot项目可以通过/actuator/prometheus路径,9090端口暴露出Prometheus格式的监控指标。

support.huaweicloud.com/cae_faq/cae_07_0024.html