赞
踩
阅读本文需要对一些前置技术有所了解,下面列出的一些前置技术是必须要了解的。
在项目中如果希望自定义一些指标用于监控系统的运行情况,那么可以通过本文中介绍的方法来实现自定义监控指标,我们先从一个简单的例子来介绍如何实现自定义监控指标。
<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
,如果健康检查异常返回 0
。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。