当前位置:   article > 正文

Spring Boot 自定义指标

Spring Boot 自定义指标

Spring Boot 自定义指标

阅读本文需要对一些前置技术有所了解,下面列出的一些前置技术是必须要了解的。

  • Prometheus:这是一个时序数据库,我们的指标数据一般保存在这个数据库中。
  • Grafana:借助Grafana可以将Prometheus中的数据以图表的方式展示出来。
  • Micrometer:是一个用于度量应用程序性能和监控的度量库
  • spring-boot-starter-actuator:用于在 Spring Boot 应用程序中添加运行时管理和监控功能

在项目中如果希望自定义一些指标用于监控系统的运行情况,那么可以通过本文中介绍的方法来实现自定义监控指标,我们先从一个简单的例子来介绍如何实现自定义监控指标。

依赖

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
        <groupId>io.micrometer</groupId>
        <artifactId>micrometer-core</artifactId>
        <version>1.11.4</version>
    </dependency>
    <dependency>
        <groupId>io.micrometer</groupId>
        <artifactId>micrometer-registry-prometheus</artifactId>
        <version>1.11.4</version>
    </dependency>
</dependencies>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

实现

这里实现一个健康检查的指标收集器,如果健康检查正常返回1,如果健康检查异常返回 0

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/tf789/article/detail/61400
推荐阅读
相关标签
  

闽ICP备14008679号