zoukankan      html  css  js  c++  java
  • actuator监控

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

    @Controller
    @EnableAutoConfiguration
    public class App 
    {
    
        public static void main(String[] args) throws Exception {
            SpringApplication.run(App.class, args);
        }
    }
    

      

    {"links":[
    {"rel":"self","href":"http://127.0.0.1:8080/actuator"},
    {"rel":"health","href":"http://127.0.0.1:8080/health"},
    {"rel":"trace","href":"http://127.0.0.1:8080/trace"},
    {"rel":"configprops","href":"http://127.0.0.1:8080/configprops"},
    {"rel":"mappings","href":"http://127.0.0.1:8080/mappings"},
    {"rel":"env","href":"http://127.0.0.1:8080/env"},
    {"rel":"auditevents","href":"http://127.0.0.1:8080/auditevents"},
    {"rel":"metrics","href":"http://127.0.0.1:8080/metrics"},
    {"rel":"beans","href":"http://127.0.0.1:8080/beans"},
    {"rel":"heapdump","href":"http://127.0.0.1:8080/heapdump"},
    {"rel":"autoconfig","href":"http://127.0.0.1:8080/autoconfig"},
    {"rel":"info","href":"http://127.0.0.1:8080/info"},
    {"rel":"dump","href":"http://127.0.0.1:8080/dump"},
    {"rel":"loggers","href":"http://127.0.0.1:8080/loggers"}]}

     

    management.security.enabled=false

  • 相关阅读:
    第08组 Alpha冲刺(1/4)
    第08组 团队Git现场编程实战
    第二次结对编程作业
    团队项目-需求分析报告
    团队项目-选题报告
    第一次结对编程作业
    第一次个人编程作业
    第一次实践作业
    互联网协议学习笔记
    【选修建模的小练习】长方形椅子的稳定性探究
  • 原文地址:https://www.cnblogs.com/ahuo/p/7609900.html
Copyright © 2011-2022 走看看