欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot 指标监控actuator的专题

程序员文章站 2022-06-23 12:14:06
目录1.写在前面2.springboot actuator3.定制化endpoint3.1 定制health端点信息3.2 定制info端点信息1.写在前面首先肯定要说一下springboot的四大核...

1.写在前面

首先肯定要说一下springboot的四大核心了:

  • 自动装配:简单配置甚至零配置即可运行项目
  • 起步依赖:场景启动器
  • actuator:指标监控
  • 命令行界面 :命令行

这篇文章呢,我来和大家聊聊指标监控这个东西。

2.springboot actuator

未来每一个微服务在云上部署以后,我们都需要对其进行监控、追踪、审计、控制等。springboot就抽取了actuator场景,使得我们每个微服务快速引用即可获得生产级别的应用监控、审计等功能。

要开启指标监控功能,首先需要在pom文件种添加如下依赖:

<dependency>
    <groupid>org.springframework.boot</groupid>
    <artifactid>spring-boot-starter-actuator</artifactid>
</dependency>

然后在配置文件中先做如下配置:

server:
  port: 8080
 
# 暴露所有监控信息为http
management:
  endpoints:
    enabled-by-default: true # 默认开启所有监控端点信息
    web:
      exposure:
        include: '*' # 以web方式暴露所有端点

然后启动项目,进行测试:

下图中测试得到的内容就是目前项目中可以监控到的各种指标参数信息。

SpringBoot 指标监控actuator的专题

在指标监控这个功能中,有一个经常提到的词叫:端点。那么常用常见的端点如下图:????????????

SpringBoot 指标监控actuator的专题

上面我们访问指标监控的url是:http://localhost:8080/actuator/ 即可获取到所有端点信息。那么如果想要获取某个端点信息,url就应该是:

http://localhost:8080/actuator/endpointname/detailpath

健康检查端点,我们一般用于在云平台,平台会定时的检查应用的健康状况,我们就需要health endpoint可以为平台返回当前应用的一系列组件健康状况的集合。

重要的几点:

  • health endpoint返回的结果,应该是一系列健康检查后的一个汇总报告
  • 很多的健康检查默认已经自动配置好了,比如:数据库、redis等
  • 可以很容易的添加自定义的健康检查机制

SpringBoot 指标监控actuator的专题

SpringBoot 指标监控actuator的专题

SpringBoot 指标监控actuator的专题

提供详细的、层级的、空间指标信息,这些信息可以被pull(主动推送)或者push(被动获取)方式得到;

  • 通过metrics对接多种监控系统
  • 简化核心metrics开发
  • 添加自定义metrics或者扩展已有metrics

SpringBoot 指标监控actuator的专题

SpringBoot 指标监控actuator的专题

上面的这些测试结果就是我们根据当前项目,获取到某个端点的详细指标信息。

除此之外,我们也可以对这些端点进行手动开启或者禁用。(参见下面的配置文件)

server:
  port: 8080
 
# 暴露所有监控信息为http
management:
  endpoints:
    enabled-by-default: false # 默认开启所有监控端点信息
    web:
      exposure:
        include: '*' # 以web方式暴露所有端点
# 需要开启或者禁用某个endpoint
# 配置模式为 management.endpoint.<endpointname>.enabled = true/false
  endpoint:
    health:
      show-details: always # 总是显示health端点的详细信息
      enabled: true
    info:
      enabled: true
    beans:
      enabled: true
 

SpringBoot 指标监控actuator的专题

SpringBoot 指标监控actuator的专题

上面的测试截图就是我们手动的开启某些端点、同时关闭了某些端点之后的结果。

3.定制化endpoint

3.1 定制health端点信息

以上的所有内容都是在使用springboot为我们提供的官方的endpoint,那么我们也是可以自定义endpoint的(也即定制化endpoint)。

有两种方式:①继承abstracthealthindicator抽象类(dohealthcheck(health.builder builder)方法);②实现healthindicator接口(重写health()方法)。我是用第一种方法简单做个测试吧。

package com.szh.boot.health;
 
import org.springframework.boot.actuate.health.abstracthealthindicator;
import org.springframework.boot.actuate.health.health;
import org.springframework.boot.actuate.health.status;
import org.springframework.stereotype.component;
 
import java.util.hashmap;
import java.util.map;
 
/**
 *
 */
@component
public class mycomhealthindicator extends abstracthealthindicator {
 
    /**
     * 真实的检查方法
     * @param builder
     * @throws exception
     */
    @override
    protected void dohealthcheck(health.builder builder) throws exception {
        map<string,object> map = new hashmap<>();
        //模拟检查过程
        if (1 == 1) {
//            builder.up(); //健康
            builder.status(status.up);
            map.put("count",1);
            map.put("ms",100);
        } else {
//            builder.down(); //宕机
            builder.status(status.down);
            map.put("error","连接超时");
            map.put("ms",3000);
        }
 
        builder.withdetail("code",20001)
                .withdetails(map);
    }
}

配置文件如下:????????????

server:
  port: 8080
 
# 暴露所有监控信息为http
management:
  endpoints:
    enabled-by-default: false # 默认开启所有监控端点信息
    web:
      exposure:
        include: '*' # 以web方式暴露所有端点
# 需要开启或者禁用某个endpoint
# 配置模式为 management.endpoint.<endpointname>.enabled = true/false
  endpoint:
    health:
      show-details: always # 总是显示health端点的详细信息
      enabled: true

然后我们启动测试,访问路径:http://localhost:8080/actuator/health。从结果中看到有一个端点mycom就是我们自定义的(命名方式就是 mycomhealthindicator 类去掉后面的 healthindicator)。

SpringBoot 指标监控actuator的专题

3.2 定制info端点信息

首先在配置文件中添加如下内容:(最后几行)

server:
  port: 8080
 
# 暴露所有监控信息为http
management:
  endpoints:
    enabled-by-default: false # 默认开启所有监控端点信息
    web:
      exposure:
        include: '*' # 以web方式暴露所有端点
# 需要开启或者禁用某个endpoint
# 配置模式为 management.endpoint.<endpointname>.enabled = true/false
  endpoint:
    health:
      show-details: always # 总是显示health端点的详细信息
      enabled: true
    info:
      enabled: true
    beans:
      enabled: true
info:
  appname: spring-boot-actuator-endpoint-info
  version: 2.0.0
  mavenprojectname: @project.artifactid@
  mavenprojectversion: @project.version@

然后创建一个类,实现 infocontributor 这个接口,并且重写接口中的 contribute(info.builder builder) 方法。

package com.szh.boot.info;
 
import org.springframework.boot.actuate.info.info;
import org.springframework.boot.actuate.info.infocontributor;
import org.springframework.stereotype.component;
 
import java.util.collections;
 
/**
 *
 */
@component
public class exampleinfocontributor implements infocontributor {
 
    @override
    public void contribute(info.builder builder) {
        builder.withdetail("example", collections.singletonmap("key","value"));
    }
 
}

最后我们启动测试一下,访问路径:http://localhost:8080/actuator/info。得到的数据就是我们上面通过代码写好的内容。

SpringBoot 指标监控actuator的专题

到此这篇关于springboot 指标监控actuator的专题的文章就介绍到这了,更多相关springboot 指标监控内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!