您好,登錄后才能下訂單哦!
這篇文章運用了實例展示配置prometheus和alertmanager通信實現(xiàn)觸發(fā)報警的方法,代碼非常詳細(xì),可供感興趣的小伙伴們參考借鑒,希望對大家有所幫助。
Alertmanager與Prometheus是相互分離的兩個組件。Prometheus服務(wù)器根據(jù)報警規(guī)則將警報發(fā)送給Alertmanager,然后Alertmanager將silencing、inhibition、aggregation等消息通過電子郵件、微信、等發(fā)送信息,
下載軟件包
wget https://github.com/prometheus/alertmanager/releases/download/v0.20.0/alertmanager-0.20.0.linux-amd64.tar.gz
解壓安裝
tar zxvf alertmanager-0.16.0.linux-amd64.tar.gz && cd alertmanager-0.16.0.linux-amd64
啟動 alertmanager
./alertmanager --config.file=alertmanager.yml
修改 prometheus.yml 配置文件
配置 與alertmanager 通信
alerting:
alertmanagers:
- static_configs:
- targets:
- x.x.x.x:9093
增加報警規(guī)則,監(jiān)控主機(jī)服務(wù),默認(rèn)正常是1
#Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
groups:
- name: generals.rules
rules:
- alert: InstanceDown
expr: up == 0
for: 1m
labels:
severity: error
annotations:
summary: "Instance {{ $labels.isinstance }} down"
description: "{{ $labels.instance }} down more than 1 minutes"
重載配置文件 kill -hup $pid 或者重啟 prometheus 服務(wù)
查看配置的報警規(guī)則
報警規(guī)則已創(chuàng)建 ,設(shè)置郵件通知報警,已qq 郵箱為示列,qq 郵箱需要開啟smtp ,
smtp_require_tls 默認(rèn)為true ,這里需要修改為false,否則郵件觸發(fā)不成功, smtp_auth_password 填寫授權(quán)瑪
global: 全局配置,包括報警解決后的超時時間、SMTP 相關(guān)配置、各種渠道通知的 API 地址等等。
route: 用來設(shè)置報警的分發(fā)策略,它是一個樹狀結(jié)構(gòu),按照深度優(yōu)先從左向右的順序進(jìn)行匹配。
receivers: 配置告警消息接受者信息,例如常用的 email、wechat、slack、webhook 等消息通知方式。
global:
resolve_timeout: 5m
smtp_smarthost: 'smtp.qq.com:465'
smtp_from: 'xxx@qq.com'
smtp_auth_username: 'xxx@qq.com'
smtp_auth_password: 'xxx'
#smtp_auth_secret: false
smtp_require_tls: false
smtp_hello: 'qq.com'
route:
group_by: ['alertname']
group_wait: 10s
group_interval: 10s
repeat_interval: 1h
receiver: 'mail'
receivers:
- name: 'mail'
email_configs:
- to: 'xxx@qq.com'
send_resolved: true
觸發(fā)報警,手動關(guān)閉,es 服務(wù),幾分鐘后收到郵件報警
以上就是配置prometheus和alertmanager通信實現(xiàn)觸發(fā)報警的方法介紹,詳細(xì)使用情況還得要大家自己使用過才能知道具體要領(lǐng)。如果想閱讀更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。