eureka(注册中心)中spring-boot-starter-actuator监控
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eureka(注册中心)中spring-boot-starter-actuator监控相关的知识,希望对你有一定的参考价值。
添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
启动后台会看到
就可以访问对应地址了,例如:
配置需要监测的端口,如果不指定则使用的是server的端口,指定的话则过滤这个端口,不检测,比如不检测health.mail,下图如果不指定8082则使用的是server的8081
server: port: 8081 management: port: 8082 health: mail: enabled: false
自定义配置待续
本文出自 “summit” 博客,请务必保留此出处http://786678398.blog.51cto.com/2082557/1948066
以上是关于eureka(注册中心)中spring-boot-starter-actuator监控的主要内容,如果未能解决你的问题,请参考以下文章
SpringCloud笔记Eureka服务注册中心Zookeeper服务注册中心Consul服务注册中心案例详解