SpringCloud入门——Actuator健康监控

SpringCloud入门——Actuator健康监控

一、开启监控

开启Actuator只需要在pom文件中,添加actuator依赖。

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

重启服务,打开对应端口/actuator路径,例如http://localhost:8082/actuator,可以看到可以访问的端点。

在这里插入图片描述

现在只开启了health节点和info节点。health里面只有status信息。UP说明这个节点是启动的。

在这里插入图片描述

二、开启监控端点信息

当前提供的监控信息无法满足我们的需求,需要我们在配置文件中进行配置。

*代表所有节点都加载/actuator返回json

#开启所有端点
management.endpoints.web.exposure.include=*

1、开启所有端点

{
   
  "_links": {
   
    "self": {
   
      "href": "http://localhost:8082/actuator",
      "templated": false
    },
    "archaius": {
   
      "href": "http://localhost:8082/actuator/archaius",
      "templated": false
    },
      //bean信息
    "beans": {
   
      "href": "http://localhost:8082/actuator/beans",
      "templated": false
    },
    "caches": {
   
      "href": "http://localhost:8082/actuator/caches",
      "templated": false
    },
    "caches-cache": {
   
      "href": "http://localhost:8082/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值