监控系列讲座(三)Prometheus概览

1. Prometheus快速搭建

1.1. 下载

下载地址,这里面的地址都是来自于github,我们也可以去github中的release直接下载。

我们这里使用的是2.18.1版本

wget https://github.com/prometheus/prometheus/releases/download/v2.18.1/prometheus-2.18.1.linux-amd64.tar.gz

1.2. 安装

不管哪个版本,我都建议看安装文档来安装。这里我们为了讲课方便,我会把安装步骤写下来。

首先解压他

tar xvfz prometheus-*.tar.gz
cd prometheus-*

1.3. 配置Prometheus监控他自己

Prometheus收集来自从targets的endpoints中的metrics。因为Prometheus同样会暴露一些关于自己的指标,他也可以抓取并且监控他自己的监控。

虽然Prometheus服务器只收集自身的数据在实践中不是很有用,但它是一个很好的开始示例。将以下基本Prometheus配置保存为名为Prometheus.yml

global:
  scrape_interval:     15s # By default, scrape targets every 15 seconds.

  # Attach these labels to any time series or alerts when communicating with
  # external systems (federation, remote storage, Alertmanager).
  external_labels:
    monitor: 'codelab-monitor'

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: 'prometheus'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

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

1.4. 启动Prometheus

使用新创建的配置文件来启动Prometheus,进入到包含Prometheus二进制文件的目录运行

# Start Prometheus.
# By default, Prometheus stores its database in ./data (flag --storage.tsdb.path).
./prometheus --config.file=prometheus.yml

2. 架构

2.1. 架构图

architecture.png
file

2.2. 一些概念

3. 初步认识Prometheus

3.1. 使用表达式浏览

我们来看一下Prometheus收集的关于他自己的数据。使用Prometheus内建的浏览器,打开浏览器输入 http://localhost:9090/graph然后选择Console来浏览“Graph”标签。

我们可以从这个地址来采集metric localhost:9090/metrics, Prometheus所暴露的他自己的指标中,有一个metric叫 prometheus_target_interval_length_seconds (两次抓取指标的时间间隔). 我们把他输入到查询框中,然后执行Execute

image-20200607222651752.png
file

他会返回一系列不同的时间(每个后面都有一个value),所有的metrics都叫 prometheus_target_interval_length_seconds但是标签不同。这些标签标示不同的延迟百分比和目标组的间隔时间

如果我们只对“99th percentile latencies”这一行感兴趣,我们就可以这样来取出这一行

prometheus_target_interval_length_seconds{quantile="0.99"}

如果想统计返回的时间序列的个数,就使用count函数

count(prometheus_target_interval_length_seconds)

3.2. 使用图形接口

使用图形接口的话,就输入http://localhost:9090/graph然后使用“Graph”标签

比如,输入下面的表达式可以显示出最近每分钟产生的chunks的数量

rate(prometheus_tsdb_head_chunks_created_total[1m])

image-20200608103548306.png
file

3.3. 启动一些样例的target

我们可以创建一些样例的targets给Prometheus去抓取

Go客户端的库里面包含了一个样例,为三个不同延迟的服务暴露了虚构的RPC延迟

确保我们有Go语言编译器Go语言编译环境(配置GOPATH

从Prometheus网站下载Go客户端的库来运行这三个样例

# 下载客户端的库并且编译
git clone https://github.com/prometheus/client_golang.git
cd client_golang/examples/random
go get -d
go build

# 在三个端口启动这三个样例
./random -listen-address=:8080
./random -listen-address=:8081
./random -listen-address=:8082

现在我们就有一些样例的数据暴露在端口上, http://localhost:8080/metrics, http://localhost:8081/metrics, 和 http://localhost:8082/metrics.

3.4. 配置Prometheus去监控这些样例

现在我们配置Prometheus去抓取这些新的目标。我们在这三个后端节点放在一个job中,叫做 example-random。我们前两个节点想象为生产的节点,第三个节点是一个金丝雀的实例。我们可以在Prometheus中添加多个端点到一个组,然后为每个组添加额外的标签。在下面的例子当中,我们会给第一组添加group="production"标签,给第二组添加group="canary"标签。

我们需要在prometheus.yml 文件的scrape_configs添加job的定义,然后重启Prometheus实例

scrape_configs:
  - job_name:       'example-random'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

    static_configs:
      - targets: ['localhost:8080', 'localhost:8081']
        labels:
          group: 'production'

      - targets: ['localhost:8082']
        labels:
          group: 'canary'

去浏览器的表达式中查看,确认Prometheus已经拥有这些端点暴露出来的时间序列,比如 rpc_durations_seconds

image-20200608173434649.png
file

3.5. 配置把抓取的数据聚合到新的时间序列

在我们刚才的例子成功的条件下,查询那些由上千条时间序列聚合而成的数据的时候可能很慢,他们需要一条一条的计算。为了让他更有效率,Prometheus允许我们通过规则预先设定一个表达式rate(rpc_durations_seconds_count[5m])来创建一个新的时间段。比如,我们对于所有的实例中,平均每秒钟的RPC请求 (rpc_durations_seconds_count) 感兴趣,并且观察的维度(groub by)是jobservice,每五分钟计算一次,我们就可以写成下面的形式

avg(rate(rpc_durations_seconds_count[5m])) by (job, service)

image-20200608173621247.png
file

3.6. 创建新的规则

然后,我们想把刚才的时间序列变成一个新的metrics,叫做job_service:rpc_durations_seconds_count:avg_rate5m,就创建一个规则文件,并且保存成prometheus.rules.yml

groups:
- name: example
  rules:
  - record: job_service:rpc_durations_seconds_count:avg_rate5m
    expr: avg(rate(rpc_durations_seconds_count[5m])) by (job, service)

为了让Prometheus识别刚才的规则,需要在prometheus.yml中添加一个 rule_files 。配置文件如下:

global:
  scrape_interval:     15s # By default, scrape targets every 15 seconds.
  evaluation_interval: 15s # Evaluate rules every 15 seconds.

  # Attach these extra labels to all timeseries collected by this Prometheus instance.
  external_labels:
    monitor: 'codelab-monitor'

rule_files:
  - 'prometheus.rules.yml'

scrape_configs:
  - job_name: 'prometheus'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

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

  - job_name:       'example-random'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

    static_configs:
      - targets: ['localhost:8080', 'localhost:8081']
        labels:
          group: 'production'

      - targets: ['localhost:8082']
        labels:
          group: 'canary'

用新的配置文件重启Prometheus并且确保使用新的metrics名字的时间序列job_service:rpc_durations_seconds_count:avg_rate5m可以被浏览器查询

image-20200608175311646.png
file

为了方便大家学习,请大家加我的微信,我会把大家加到微信群(微信群的二维码会经常变)和qq群821119334,问题答案云原生技术课堂,有问题可以一起讨论

  • 个人微信
    640.jpeg

  • 腾讯课堂
    640-20200506145837072.jpeg

  • 微信公众号
    640-20200506145842007.jpeg

  • 专题讲座

2020 CKA考试视频 真题讲解 https://www.bilibili.com/video/BV167411K7hp

2020 CKA考试指南 https://www.bilibili.com/video/BV1sa4y1479B/

2020年 5月CKA考试真题 https://mp.weixin.qq.com/s/W9V4cpYeBhodol6AYtbxIA

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