spring boot 添加监控

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 添加监控相关的知识,希望对你有一定的参考价值。

在application.properties中,添加

        spring.application.name=Spring Boot Admin Web
        spring.boot.admin.url=http://localhost:${server.port}
        spring.jackson.serialization.indent_output=true
        endpoints.health.sensitive=false
        management.security.enabled=false
        ribbon.ReadTimeout=60000
        ribbon.ConnectTimeout=60000

在 启动类中添加

            @EnableAdminServer

在 pom.xml中添加

                <dependency>
                                    <groupId>de.codecentric</groupId>
                                    <artifactId>spring-boot-admin-server</artifactId>
                                    <version>1.5.7</version>
            </dependency>

            <dependency>
                <groupId>de.codecentric</groupId>
                <artifactId>spring-boot-admin-server-ui</artifactId>
                <version>1.5.7</version>
            </dependency>

            <dependency>
                <groupId>de.codecentric</groupId>
                <artifactId>spring-boot-admin-starter-client</artifactId>
                <version>1.5.7</version>
            </dependency>

以上是关于spring boot 添加监控的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 监控与管理(actuator)

Spring boot:thymeleaf 没有正确渲染片段

spring-boot 监控 Actuator

spring-boot-starter-actuator监控接口详解

Spring Boot(21)——监控和管理接口

Spring Boot 应用可视化监控,一目了然!