Prometheus

Prometheus 架构

Prometheus 架构.png
Prometheus Server
  • Prometheus 的核心,做 Metrics 数据监控的,用数字表示的信息都可以用 Prometheus Server 采集,比如系统的流量,服务的响应时间;
  • Prometheus Server 根据配置完成数据的采集、服务的发现、数据的存储;
  • HTTP Servver:把收集到 Prometheus Server 的数据暴露出去,供前端的应用使(Prometheus web UI 和)
Service Discovery
  • 服务的发现,通过 Service Discovery,Prometheus Server 就知道从哪里采集数据;
  • Service Discovery 有两种方式:1)静态的,通过文件告知从哪里拿 Metrics 的数据;2)动态的,通过 zookeeper 等配置中心,配置中心里的数据变化的时候,Prometheus Server 也跟着变,从不同的地方抓取数据;
Pushgateway
  • 支持 push 模式的,有些数据并不是一直存在的,比如定时任务的数据,Prometheus Server 来抓的时候,正好定时任务没起,就抓不到数据,这中情况,定时事务就需要把它产生的数据,push 到 Pushgateway,Prometheus Server 从 Pushgateway 中 pull 数据;
  • 除了Pushgateway 中的数据需要应用系统推过来之外,其他的数据都是 Prometheus Server 根据配置到各个应用系统 pull 的;
Prometheus web UI
  • Prometheus 自带的图形化界面,可以把 Prometheus Server 中收集的格式化的数据展示出来,这个页面很简陋,为了解决这个问题,有一个项目叫 Grafna;
Grafna
  • 更高级的图形界面,很炫酷的图表 ;
API Client
  • 可以自己写服务,调 Prometheus 中的服务,自己实现定制化的业务逻辑;
PromQL
  • Prometheus web UI 、Grafna、API Client 和 Prometheus Server 通信时使用的语言,和 SQL 类似,和 SQL 不同的是,这个语言只能查询,Prometheus Server 所有的数据都是 Prometheus Server 自己 pull 来的;
Alertmanager
  • 报警用的;
  • 报警的方式有很多种:Email、微信、钉钉、还可以调指定的接口;
  • Prometheus Server 会根据指定的规则推送给 Alertmanager;
  • 不是有数被 push 到 Alertmanager 就会有报警,它会再评估几个周期,比如 5 个周期,如果 5 个周期都是要报警,才会真正的去报警,防止网络抖动造成的误报;

Prometheus 安装

  • 一旦装了 Prometheus Server,Pushgateway、Prometheus web UI 和 Alertmanager 就都装上了,Grafna 需要单独装一下;
  • Prometheus 的安装,是通过 docker-compose 的编排,同时安装了 Prometheus 和 Grafana,通过命令 sudo docker-compose -f docker-compose.yml up
docker-compose.yml
version: "3"
services:
  prometheus:
    image: prom/prometheus:v2.4.3
    container_name: 'prometheus'
    volumes:
    - ./prometheus/:/etc/prometheus/
    ports:
    - '9092:9090'
  grafana:
    image: grafana/grafana:5.2.4
    container_name: 'grafana'
    ports:
    - '3000:3000'
    volumes:
    - ./grafana/config/grafana.ini:/etc/grafana/grafana.ini
    - ./grafana/provisioning/:/etc/grafana/provisioning/
    env_file:
    - ./grafana/config.monitoring
    depends_on:
    - prometheus
Prometheus 的配置文件 | monitoring/prometheus/prometheus.yml
  • 172.18.0.1 是宿主机的 IP,宿主机有好几个 IP,这个 IP 和 Docker 容器中的 IP 一个样子;
global:
  scrape_interval:   15s
  
scrape_configs:
- job_name:       'springboot-app'

  scrape_interval: 10s
  metrics_path: '/actuator/prometheus'

  static_configs:
  - targets: ['172.18.0.1:9082']
    labels:
      application: 'springboot-app'

- job_name: 'prometheus'

  scrape_interval: 5s

  static_configs:
  - targets: ['localhost:9090']

改造被监控的微服务 | orderApi

依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<!-- 在 actuator 的基础上,暴露一个 prometheus 的端口 -->
<dependency>
    <groupId>io.micrometer</groupId>
    <artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
application.yml
server:
  port: 9082

management:
  endpoints:
    # 这是 promethus 暴露的端口
    promethus:
      enable: true
    # 这是 actuator 暴露的端口
    web:
      exposure:
        include:
          - prometheus
          - info
          - health
让 promethus 的端点不受安全机制的约束直接访问到
package com.lixinlei.security.order.config;

import org.springframework.boot.actuate.autoconfigure.security.servlet.EndpointRequest;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter;

@Configuration
public class ActuatorSecurityConfig extends ResourceServerConfigurerAdapter {

    @Override
    public void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
                // 所有的监控端点都不受 Spring Security 的约束
                .requestMatchers(EndpointRequest.toAnyEndpoint()).permitAll()
                .anyRequest().authenticated();
    }

}

微服务给 prometheus 提供的数据

  • http://localhost:9082/actuator/prometheus
从 prometheus 中看这些数据
  • http://localhost:9092/graph 中输入从 http://localhost:9082/actuator/prometheus 看到的属性,比如 jvm_threads_states_threads,然后点 Execute;

prometheus web UI 提供的能力优先,一般会搭配 Grafana 和 Prometheus Server 使用。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345