搭建Prometheus+Grafana实时监控平台监控Java应用服务

一、Prometheus简介
1、Docker安装Prometheus
2、修改配置文件
3、重启容器
4、浏览器访问
5、查看Targets
二、Grafana
1、Docker安装Grafana
2、浏览器访问
3、配置数据源
三、Java应用接入监控
1、项目引入依赖
2、修改配置文件
3、启动服务并查看Grafana监控台
一、Prometheus简介


官网是这样介绍的:

Prometheus is an open-source systems monitoring and alerting toolkit originally built at SoundCloud. Since its inception in 2012, many companies and organizations have adopted Prometheus, and the project has a very active developer and user community. It is now a standalone open source project and maintained independently of any company. To emphasize this, and to clarify the project’s governance structure, Prometheus joined the Cloud Native Computing Foundation in 2016 as the second hosted project, after Kubernetes.
翻译:Prometheus是一个开源系统监控和警报工具包,最初由SoundCloud构建。自2012年成立以来,许多公司和组织都采用了普罗米修斯,该项目拥有一个非常活跃的开发人员和用户社区。它现在是一个独立的开源项目,独立于任何公司进行维护。为了强调这一点,并澄清项目的治理结构,普罗米修斯加入云计算基金会2016作为第二托管项目,继Kubernetes。

1、Docker安装Prometheus
docker run --name prometheus -p 9090:9090 -d bitnami/prometheus
2、修改配置文件
docker exec -it ${容器id} /bin/bash
vi conf/prometheus.yml
 
修改配置文件的scrape_configs,上面的Job是prometheus自身的,下面的Job是我们新增的,用来监控我们的服务器的(192.168.1.3)。

scrape_configs:
  - job_name: "prometheus"
    static_configs:
            - targets: ["localhost:9090"]

  - job_name: "pro_test"     
    metrics_path: /actuator/prometheus
    static_configs:
            - targets: ["192.168.1.3:8086"]
 
3、重启容器
docker restart ${容器id}

4、浏览器访问
地址:http://IP地址:9090/


5、查看Targets


二、Grafana

   Grafana是一个跨平台的开源的度量分析和可视化工具,可以通过将采集的数据查询然后可视化的展示,并及时通知。它主要有以下六大特点:

展示方式:快速灵活的客户端图表,面板插件有许多不同方式的可视化指标和日志,官方库中具有丰富的仪表盘插件,比如热图、折线图、图表等多种展示方式;
数据源:Graphite,InfluxDB,OpenTSDB,Prometheus,Elasticsearch,CloudWatch和KairosDB等;
通知提醒:以可视方式定义最重要指标的警报规则,Grafana将不断计算并发送通知,在数据达到阈值时通过Slack、PagerDuty等获得通知;
混合展示:在同一图表中混合使用不同的数据源,可以基于每个查询指定数据源,甚至自定义数据源;
注释:使用来自不同数据源的丰富事件注释图表,将鼠标悬停在事件上会显示完整的事件元数据和标记;
过滤器:Ad-hoc过滤器允许动态创建新的键/值过滤器,这些过滤器会自动应用于使用该数据源的所有查询。
1、Docker安装Grafana
docker run -d --name=grafana -p 3000:3000 grafana/grafana
1
2、浏览器访问
http://IP地址:3000/
用户名密码都是admin。


3、配置数据源
咱们用的Prometheus,如图位置找到并添加Prometheus数据源。


三、Java应用接入监控
1、项目引入依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
    <groupId>io.micrometer</groupId>
    <artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
2、修改配置文件
增加如下配置

management:
  endpoint:
    prometheus:
      enabled: true
  endpoints:
    web:
      exposure:
        include: '*'
  metrics:
    export:
      prometheus:
        enabled: true
别忘了修改prometheus的配置文件,让它监控我们应用,上面prometheus.yml我已经写了,再发一下。

- job_name: "pro_test"     
    metrics_path: /actuator/prometheus
    static_configs:
            - targets: ["192.168.1.3:8086"]
3、启动服务并查看Grafana监控台
   Grafana查看需要新建Dashboard,就是自定义显示的数据,还是比较灵活的。这里我们也可以去Grafana官网下载,有很多好看的。我这里用的Spring Boot Statistics & Endpoint Metrics。
   来看下效果。



————————————————
版权声明:本文为CSDN博主「程序员云帆哥」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/sinat_27933301/article/details/122162696

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

福海鑫森

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值