【 TiDB 使用环境】测试
【 TiDB 版本】v6.5.2
【资源配置】
alertmanager.yml 的配置内容:
global:
# The smarthost and SMTP sender used for mail notifications.
smtp_smarthost: "localhost:25"
smtp_from: "alertmanager@example.org"
smtp_auth_username: "alertmanager"
smtp_auth_password: "password"
# smtp_require_tls: true
# The Slack webhook URL.
# slack_api_url: ''
route:
# A default receiver
receiver: "blackhole"
# The labels by which incoming alerts are grouped together. For example,
# multiple alerts coming in for cluster=A and alertname=LatencyHigh would
# be batched into a single group.
group_by: ["env", "instance", "alertname", "type", "group", "job"]
# When a new group of alerts is created by an incoming alert, wait at
# least 'group_wait' to send the initial notification.
# This way ensures that you get multiple alerts for the same group that start
# firing shortly after another are batched together on the first
# notification.
group_wait: 30s
# When the first notification was sent, wait 'group_interval' to send a batch
# of new alerts that started firing for that group.
group_interval: 3m
# If an alert has successfully been sent, wait 'repeat_interval' to
# resend them.
repeat_interval: 3m
routes:
- match:
severity: "warning,critical,emergency"
receiver: webhook-qt
continue: true
receivers:
- name: 'webhook-qt'
webhook_configs:
- send_resolved: true
url: 'http://xxxx/xxx'
# This doesn't alert anything, please configure your own receiver
- name: "blackhole"
【问题描述】
配置了 severity: “warning,critical,emergency” 后webhook收不到任何消息了。 不配置此项的时候能收到很多消息。
tiup安装的alertmanager的版本是0.17。 在普罗米修斯官方最低版本是0.20,最高是0.25。 已经找不到0.17的任何文档信息了。
想请教:
**1. 如何过滤webhook的消息级别? **
2. TiDB中配置的监控的级别都有哪些?