SpringBoot 2.x应用监控配置

                                       Springboot 2.x应用监控

   作用:  用于管理,监控应用,暴露自身信息。减少应用系统在采集应用指标的开发量。

  1.添加依赖:

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

   2: springboot2.0配置:

  在application.properties文件下配置

#actuator端口
management.server.port: 9001
#修改访问路径  2.0之前默认是/   2.0默认是 /actuator  可以通过这个属性值修改
management.endpoints.web.base-path: /actuator
#开放所有页面节点  默认只开启了health、info两个节点
management.endpoints.web.exposure.include:*
#显示健康具体信息  默认不会显示详细信息
management.endpoint.health.show-details: always
 

配置端点的启用:   management.endpoint.<id>.enabled=true or  false

官方文档地址:https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html

原来的1.x版本  已经弃用  

management.port=9001
management.security.enabled=false

实例:

 

浏览器地址栏访问: localhost:9001/actuator     

部分截图:

shutdown 为post请求  需要用postman插件

management.endpoint.shutdown.enabled = true

 

 

 

 

 

 

 

 

 

 

 

 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值