-
Notifications
You must be signed in to change notification settings - Fork 122
Z、常见问题
wangjie edited this page Dec 25, 2019
·
1 revision
1、spring boot actuator的监控路径被拦截,如/env、/info、/metrics、/health等。致使spring boot admin server无法获取监控数据
1、为jmx添加访问上下文
#监控(JMX)配置
management:
context-path: /mgt
2、将/mgt/**使用anon过滤器,也就是过不过滤匹配/mgt/**的路径,这部分的访问安全空间有management自己来。
filte-rules:
- /layui/**,/mgt/**-->anon
- /login/**-->authc
- /logout/**-->logout
- /**-->user