美文网首页
springboot特性之Actuator

springboot特性之Actuator

作者: 奋斗的韭菜汪 | 来源:发表于2020-07-17 13:20 被阅读0次

查看springboot应用健康状况:
http://localhost:8080/actuator/health
http://localhost:8080/actuator/info
默认只开放health,info;可以通过配置开放其他web暴露,如beans:
management.endpoints.web.exposure.include=health,info,beans
springboot官网endpoint文档:
https://docs.spring.io/spring-boot/docs/1.1.x/reference/htmlsingle/#production-ready-endpoints
metrics作用:
查看JVM(垃圾收集器/内存/堆)
系统(运行时间、平均负载、处理器的信息)
线程池信息
tomcat会话信息
自定义监控信息(见github源码)
Actuator有两种形态的监控
1、http(web)
2、jmx(上报信息的方式,源码中设置埋点)(以get*开头的方法称为操作,其他方法称为属性)
springboot的监控信息可以发布到Prometheus+Grafana

相关文章

  • springboot特性之Actuator

    查看springboot应用健康状况:http://localhost:8080/actuator/healthh...

  • 线上问题分析

    《Springboot Actuator之二:actuator在监控和管理指标的特性[https://www.cn...

  • Springboot之Actuator的使用解析

    Springboot之Actuator的使用解析 Actuator是spring boot提供的对应用系统的自省和...

  • springboot actuator

    了解Springboot Actuator,它提供了很多生产级的特性,比如说监控和度量spring boot应用程...

  • springboot——Actuator

    Actuator 介绍 1.问题背景 2.Actuator作用 Actuator是Springboot提供的用来对...

  • SpringBoot 之Actuator

    一、Actuator 介绍 Actuator 是 SpringBoot 项目中一个非常强大一个功能,有助于对应...

  • Springboot之actuator

    spring-boot-starter-actuator 提供多个web站点, 站点分为三大类: 配置端点 度量端...

  • Springboot之Actuator

    澳大利亚国立大学(澳大利亚)校训:“重要的是弄清事物的本质。” 昨天因为加班耽搁了写文章,在此反思5分钟。。。。 ...

  • SpringBoot之Actuator

    一、Spring Boot Actuator作用 1.1 Spring Boot Actuator作用: 健康检查...

  • Spring-Boot-Actuator,Prometheus,

    Spring-Boot-Actuator SpringBoot自带监控功能Actuator,可以帮助实现对程序内部...

网友评论

      本文标题:springboot特性之Actuator

      本文链接:https://www.haomeiwen.com/subject/vaxjhktx.html