mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-26 11:27:00 +08:00
fix(query): use == instead of =
This commit is contained in:
parent
bee4c51664
commit
eda71b626b
1 changed files with 2 additions and 2 deletions
4
dist/rules/meilisearch/embedded-exporter.yml
vendored
4
dist/rules/meilisearch/embedded-exporter.yml
vendored
|
|
@ -5,7 +5,7 @@ groups:
|
||||||
rules:
|
rules:
|
||||||
|
|
||||||
- alert: MeilisearchIndexIsEmpty
|
- alert: MeilisearchIndexIsEmpty
|
||||||
expr: meilisearch_index_docs_count{index="$Index"} = 0
|
expr: meilisearch_index_docs_count{index="$Index"} == 0
|
||||||
for: 5m
|
for: 5m
|
||||||
labels:
|
labels:
|
||||||
severity: warning
|
severity: warning
|
||||||
|
|
@ -20,4 +20,4 @@ groups:
|
||||||
severity: warning
|
severity: warning
|
||||||
annotations:
|
annotations:
|
||||||
summary: the meilisearch server http response time is too high
|
summary: the meilisearch server http response time is too high
|
||||||
description: "The meilisearch server http response time is too high at the moment\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
description: "The meilisearch server http response time is too high at the moment\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue