mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-22 01:17:19 +08:00
24 lines
786 B
YAML
24 lines
786 B
YAML
groups:
|
|
|
|
- name: EmbeddedExporter
|
|
|
|
|
|
rules:
|
|
|
|
- alert: MeilisearchIndexIsEmpty
|
|
expr: 'meilisearch_index_docs_count == 0'
|
|
for: 0m
|
|
labels:
|
|
severity: warning
|
|
annotations:
|
|
summary: Meilisearch index is empty (instance {{ $labels.instance }})
|
|
description: "Meilisearch index {{ $labels.index }} has zero documents\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|
|
|
|
- alert: MeilisearchHttpResponseTime
|
|
expr: 'meilisearch_http_response_time_seconds > 0.5'
|
|
for: 0m
|
|
labels:
|
|
severity: warning
|
|
annotations:
|
|
summary: Meilisearch http response time (instance {{ $labels.instance }})
|
|
description: "Meilisearch http response time is too high\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|