可以给我一个 Prometheus 2.7.2 报警规则的实例么
时间: 2023-12-08 11:59:54 浏览: 84
prometheus监控mysql和报警规则详细资料—超详细,超全面(带文档和相关软件包)
以下是一个简单的 Prometheus 2.7.2 报警规则实例:
```
groups:
- name: example_alerts
rules:
- alert: HighRequestRate
expr: sum(rate(http_requests_total[5m])) by (job) > 100
for: 1m
labels:
severity: warning
annotations:
summary: High Request Rate for {{ $labels.job }}
description: The {{ $labels.job }} job is experiencing high request rates.
```
该规则会检查过去 5 分钟内每个 job 的 http_requests_total 指标的速率是否超过 100,并且如果超过 1 分钟,则会发出警报。警报的标签为“severity: warning”,并且包含有关警报的摘要和描述的注释。
阅读全文