博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring boot admin系统监控处理
阅读量:6495 次
发布时间:2019-06-24

本文共 1673 字,大约阅读时间需要 5 分钟。

1.系统监控使用springboot admin

2.springboot admin server

2.1 修改pom.xml增加dependency

de.codecentric
spring-boot-admin-server
1.3.2
de.codecentric
spring-boot-admin-server-ui
1.3.2
org.springframework.boot
spring-boot-starter-actuator

2.2 启动类SpringbootApplication增加admin注解支持

@SpringBootApplication@EnableAutoConfiguration@EnableAdminServerpublic class SpringbootApplication {    public static void main(String[] args) {        SpringApplication.run(SpringbootApplication.class, args);    }}

2.3 修改属性文件application.properties

server.display-name=springbootserverserver.context-path=/server.servlet-path=/server.port=8090# adminspring.boot.admin.url=http://localhost:${server.port}

3.springboot admin client

3.1 修改pom.xml增加dependency

de.codecentric
spring-boot-admin-starter-client
1.3.4
org.jolokia
jolokia-core
org.springframework.boot
spring-boot-starter-actuator

3.2 修改属性文件application.properties

server.display-name=springbootserverserver.context-path=/server.servlet-path=/server.port=8090# adminspring.boot.admin.url=http://localhost:8090

3.3 logback.xml增加配置

启动server和client即可查看应用的状态

http://localhost:8090

转载地址:http://zluyo.baihongyu.com/

你可能感兴趣的文章
前端面试题:css相关面试题
查看>>
shell命令的高级使用之---选择性copy
查看>>
最长回文子序列-----动态规划
查看>>
Vue国际化实现
查看>>
设计模式:单例模式
查看>>
FLASH位宽为8、16、32时,CPU与外设之间地址线的连接方法
查看>>
双网卡一般情况不能有两个网关 (转)
查看>>
xshell 远程连接Linux
查看>>
【IOS】IOS8 TabBarItem设置自定义图片问题
查看>>
Linux计划任务及压缩归档(week2_day1)--技术流ken
查看>>
ccf算法模板
查看>>
实践案例 | 数据可视化报表应用
查看>>
微信小程序登录 该死的官方文档TypeError: the JSON object must be str, not 'bytes'
查看>>
VMware 虚拟机克隆 CentOS 6.5 之后,网络配置问题的解决方案
查看>>
Python ( 1 ) ----- 简介
查看>>
[linux基础学习]run level
查看>>
第七周学习总结
查看>>
一步步的教你安装UChome (UChome 安装教程)
查看>>
[DeeplearningAI笔记]序列模型1.5-1.6不同类型的循环神经网络/语言模型与序列生成...
查看>>
P2533 [AHOI2012]信号塔
查看>>