博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot Admin - 监控部署 - 邮件监控报警
阅读量:6625 次
发布时间:2019-06-25

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

hot3.png

        目前项目中用到了最基本的两个监控:spring boot admin和spring cloud hystrix,这里先介绍一下spring boot admin的实战。

添加依赖

  1. spring cloud
    org.springframework.boot
    spring-boot-starter-parent
    1.5.9.RELEASE
    1.8
    Edgware.RELEASE
    1.5.7
    src/main/profiles
    org.springframework.cloud
    spring-cloud-dependencies
    ${spring.cloud.version}
    pom
    import

     

配置文件

server:    port: 8083spring:  application:    name: monitor-admin  jackson:    serialization:      indent_output: true  mail:    host: mx1.qq.com  boot:    admin:      notify:        mail:          to: yourEmail@qq.com  output:    ansi:      enabled: alwaysendpoints:  health:    sensitive: falseeureka:  client:    serviceUrl:      defaultZone: http://eureka1:1111//eureka/  instance:    prefer-ip-address: true    leaseExpirationDurationInSeconds: 30    leaseRenewalIntervalInSeconds: 10management:  security:    enabled: false  endpoints:    web:      exposure:        include: "*"  #<2>endpoint:  health:    show-details: ALWAYS

这里有几个注意点:

  1. 邮件报警
    ●检测服务器的基本运行状态,宕机通知
    ●spring.boot.admin.notify.mail.to=yourEmail@qq.com
    ●具体的配置信息参照:
    ●默认效果图:
    181228_w1UT_226613.png181335_sWnt_226613.png
  2. endpoints.health.sensitive
    设置为false,将所有的健康信息都暴漏显示。
  3. management.security.enabled
    设置为false,关闭安全限制
    与上个参数结合使用效果如下:
    181827_CFMd_226613.png
  4. endpoint.health.show-details
    182310_Zp2H_226613.png
    参考:

效果图

182357_4GNg_226613.png

  1. 如果被监控的服务器,没有关闭安全限制,点击“Details”,只能看到部分信息,效果如下图:
    182502_3LSq_226613.png
  2. 如果想要看到更多的信息,需要设置management.security.enabled为false,设置后效果如下图:
    182907_cnzy_226613.png

转载于:https://my.oschina.net/xiaowangqiongyou/blog/1647236

你可能感兴趣的文章
vue 记一次编译没反应、无进度、没有任何报错的提示,但后台却TM一直消耗内存的BUG:...
查看>>
poj3517
查看>>
iphone http下载文件
查看>>
poj 1195:Mobile phones(二维树状数组,矩阵求和)
查看>>
Codeforces 433 C. Ryouko&#39;s Memory Note
查看>>
java中的Static class
查看>>
实例讲解Linux下的makefile
查看>>
json lib 2.4及其依赖包下载
查看>>
计算机中文核心期刊
查看>>
sql的left join 命令
查看>>
8148 8168 中移植live55 出现except rtsp 中途莫名的断流
查看>>
【BZOJ】3832: [Poi2014]Rally
查看>>
[转]看懂ExtJS的API
查看>>
宜昌民生大厦
查看>>
推荐15款制作 SVG 动画的 JavaScript 库
查看>>
转:OpenResty最佳实践(推荐了解lua语法)
查看>>
转:CEO, CFO, CIO, CTO, CSO是什么
查看>>
ROC曲线(receiver-operating-characteristic curve)-阈值评价标准(转)
查看>>
Swift 表达式
查看>>
FFmpeg(8)-打开音视频解码器,配置解码器上下文(avcodec_find_decoder()、avcodec_alloc_context3())...
查看>>