我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

这篇文章将为大家详细讲解有关怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

SpringBoot的应用监控方案比较多,SpringBoot+Prometheus+Grafana是目前比较常用的方案之一。它们三者之间的关系大概如下图:

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

 开发SpringBoot应用

首先,创建一个SpringBoot项目,pom文件如下:

<dependency>  <groupId>org.springframework.boot</groupId>  <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency>  <groupId>org.springframework.boot</groupId>  <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency>  <groupId>org.projectlombok</groupId>  <artifactId>lombok</artifactId>  <optional>true</optional> </dependency> <!-- https://mvnrepository.com/artifact/io.prometheus/simpleclient_spring_boot --> <dependency>  <groupId>io.prometheus</groupId>  <artifactId>simpleclient_spring_boot</artifactId>  <version>0.8.1</version> </dependency> <dependency>  <groupId>org.springframework.boot</groupId>  <artifactId>spring-boot-starter-security</artifactId> </dependency>

注意: 这里的SpringBoot版本是1.5.7.RELEASE,之所以不用最新的2.X是因为最新的simpleclient_spring_boot只支持1.5.X,不确定2.X版本的能否支持。

MonitorDemoApplication启动类增加注解

package cn.sp; import io.prometheus.client.spring.boot.EnablePrometheusEndpoint; import io.prometheus.client.spring.boot.EnableSpringBootMetricsCollector; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @EnablePrometheusEndpoint @EnableSpringBootMetricsCollector @SpringBootApplication public class MonitorDemoApplication {  public static void main(String[] args) {  SpringApplication.run(MonitorDemoApplication.class, args);  } }

配置文件application.yml

server:  port: 8848 spring:  application:  name: monitor-demo security:  user:  name: admin  password: 1234  basic:  enabled: true  # 安全路径列表,逗号分隔,此处只针对/admin路径进行认证  path: /admin # actuator暴露接口的前缀 management:  context-path: /admin  # actuator暴露接口使用的端口,为了和api接口使用的端口进行分离  port: 8888  security:  enabled: true  roles: SUPERUSER

测试代码TestController

@RequestMapping("/heap/test")@RestControllerpublic class TestController { public static final Map<String, Object> map = new ConcurrentHashMap<>(); @RequestMapping("") public String testHeapUsed() { for (int i = 0; i < 10000000; i++) {  map.put(i + "", new Object()); } return "ok"; }}

这里的逻辑就是在请求这个接口后,创建大量对象保存到map中增加堆内存使用量,方便后面测试邮件报警。

启动项目后,可以在IDEA中看到有很多Endpoints,如图:

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

开始我的IDEA是不显示这个Endpoints,后来发现是我使用的idea版本太老了,还是2017.1的,

而这个需要 idea2017.2版本以上才能看到。

后来只好重新下载安装,弄了好久。。。。

启动完毕,访问http://localhost:8888/admin/prometheus就可以看到服务暴露的那些监控指标了。

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

注意:

由于开启了安全认证,所以访问这个URL的需要提示输入账号/密码,如果提示404请检查下你的请求地址是否正确,如果不设置management.context-path则默认地址是http://ip:port/prometheus

安装Prometheus

下载地址点击这里,本文下载的是Windows版本prometheus-2.17.2.windows-amd64.tar.gz。

解压后修改prometheus.yml文件,配置数据采集的目标信息。

scrape_configs:  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.  # - job_name: 'prometheus'  # metrics_path defaults to '/metrics'  # scheme defaults to 'http'.  # static_configs:  # - targets: ['localhost:9090']  - job_name: 'monitor-demo'  scrape_interval: 5s # 刮取的时间间隔  scrape_timeout: 5s  metrics_path: /admin/prometheus  scheme: http  basic_auth: #认证信息  username: admin  password: 1234  static_configs:  - targets:  - 127.0.0.1:8888 #此处填写 Spring Boot 应用的 IP + 端口号

更多配置信息请查看官方文档。

现在可以启动Prometheus了,命令行输入:prometheus.exe –config.file=prometheus.yml

访问http://localhost:9090/targets,查看Spring Boot采集状态是否正常。

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

安装Grafana

下载地址点击这里,本文用到的是Windows版本grafana-6.3.3.windows-amd64.zip。

解压后运行bin目录下的grafana-server.exe启动,游览器访问http://localhost:3000即可看到登录页面,默认账号密码是admin/admin。

现在开始创建自己的可视化监控面板。

设置数据源

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

创建一个Dashboard

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

填写采集的指标点

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

注意: 这里的指标点不能随便填,必须是已有的可以在 Prometheus看到。

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

选择图表样式

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

填写标题描述

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

最后点击右上角的保存,输入Dashboad的名称即可。

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

 五、添加邮件报警

在实际项目中当监控的某的个指标超过阈值(比如CPU使用率过高),希望监控系统自动通过短信、钉钉和邮件等方式报警及时通知运维人员,Grafana就支持该功能。

点击[Alerting]——>[Notification channels]添加通知通道

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

这里的Type有很多选项,包括webhook、钉钉等,这里以邮件为例。

邮箱配置

Grafana默认使用conf目录下defaults.ini作为配置文件运行,根据官方的建议我们不要更改defaults.ini而是在同级目录下新建一个配置文件custom.ini。

以腾讯企业邮箱为例,配置如下:

#################################### SMTP / Emailing #####################[smtp]enabled = truehost = smtp.exmail.qq.com:465user = xxxx@ininin.com# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""password = XXXcert_file =key_file =skip_verify = truefrom_address = xxxx@ininin.comfrom_name = Grafanaehlo_identity = ininin.com

然后需要重启Grafana,命令grafana-server.exe -config=E:filegrafana-6.3.3confcustom.ini

为指标添加alert

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

Evaluate every

表示检测评率,这里为了测试效果,改为1秒

For

如果警报规则配置了For,并且查询违反了配置的阈值,那么它将首先从OK变为Pending。从OK到Pending Grafana不会发送任何通知。一旦警报规则的触发时间超过持续时间,它将更改为Alerting并发送警报通知。

Conditions

when 表示什么时间,of 表示条件,is above 表示触发值

同时,设置了is above后会有一条红线。

If no data or all values are null

如果没有数据或所有值都为空,这里选择触发报警

If execution error or timeout

如果执行错误或超时,这里选择触发报警

注意: 下一次触发,比如10秒后,它不会再次触发,防止报警风暴产生!

测试

请求http://localhost:8848/heap/test接口后,内存升高大于设置的阈值,然后就收到报警邮件。

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

关于怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能

这篇文章将为大家详细讲解有关怎么在SpringBoot中利用Prometheus和Grafana实现实现应用监控和报警功能,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。SpringBoot的
2023-06-06

如何在MongoDB中实现数据的实时监控和报警功能

如何在MongoDB中实现数据的实时监控和报警功能摘要:在大数据时代,数据的安全性和可靠性成为了企业重要的关注点。为了保护企业的数据,并及时发现数据异常情况,实时监控和报警功能变得至关重要。本文将介绍如何在MongoDB数据库中实现数据的实
2023-10-22

如何在Storm中实现数据流的监控和警报功能

在Storm中可以通过以下几种方式实现数据流的监控和警报功能:使用Storm提供的Metrics系统来收集和监控数据流的指标。可以通过配置和启用Metrics系统来收集数据流的各种指标,如吞吐量、延迟等,并通过Metrics系统提供的API
如何在Storm中实现数据流的监控和警报功能
2024-03-13

shell中怎么利用sendmail实现服务器监控报警

shell中怎么利用sendmail实现服务器监控报警,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。代码如下:wget 2023-06-09

如何使用PHP微服务实现分布式监控和报警功能

随着互联网的快速发展,应用系统的规模和复杂性也逐渐增加。为了确保系统的稳定性和可用性,分布式监控和报警功能成为了每个开发人员都需要关注的重要问题。本文将介绍如何使用PHP微服务来实现分布式监控和报警功能,并提供具体的代码示例。一、概述分布式
2023-10-21

怎么在Android应用中利用控件实现一个对话框功能

怎么在Android应用中利用控件实现一个对话框功能?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。1、自定义提示对话框DialogM.Builder builder = new
2023-05-31

怎么在SpringBoot中利用WebSocket实现一个群聊功能

本篇文章为大家展示了怎么在SpringBoot中利用WebSocket实现一个群聊功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。消息群发创建新项目:添加依赖:
2023-06-06

怎么在java中利用反射实现获取和调用功能

怎么在java中利用反射实现获取和调用功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。Class类中获取方法:public Method[] getMetho
2023-05-30

SpringBoot中的利用Email发送功能怎么利用Thymeleaf实现

本篇文章为大家展示了SpringBoot中的利用Email发送功能怎么利用Thymeleaf实现,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。添加依赖(Mail starter dependenci
2023-05-31

怎么在SpringBoot中利用Shiro实现一个密码登录功能

怎么在SpringBoot中利用Shiro实现一个密码登录功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。导入依赖(pom.xml)