2023-08-03 10:45:21 +02:00
|
|
|
# File contains default list of alerts for various VM components.
|
|
|
|
# The following alerts are recommended for use for any VM installation.
|
2022-09-21 10:48:38 +02:00
|
|
|
# The alerts below are just recommendations and may require some updates
|
|
|
|
# and threshold calibration according to every specific setup.
|
|
|
|
groups:
|
|
|
|
- name: vm-health
|
|
|
|
# note the `job` filter and update accordingly to your setup
|
|
|
|
rules:
|
|
|
|
- alert: TooManyRestarts
|
2023-10-03 16:45:33 +02:00
|
|
|
expr: changes(process_start_time_seconds{job=~".*(victoriametrics|vmselect|vminsert|vmstorage|vmagent|vmalert|vmsingle|vmalertmanager|vmauth).*"}[15m]) > 2
|
2022-09-21 10:48:38 +02:00
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "{{ $labels.job }} too many restarts (instance {{ $labels.instance }})"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: >
|
|
|
|
Job {{ $labels.job }} (instance {{ $labels.instance }}) has restarted more than twice in the last 15 minutes.
|
|
|
|
It might be crashlooping.
|
2022-09-21 10:48:38 +02:00
|
|
|
|
|
|
|
- alert: ServiceDown
|
2023-10-03 16:45:33 +02:00
|
|
|
expr: up{job=~".*(victoriametrics|vmselect|vminsert|vmstorage|vmagent|vmalert|vmsingle|vmalertmanager|vmauth).*"} == 0
|
2022-09-21 10:48:38 +02:00
|
|
|
for: 2m
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "Service {{ $labels.job }} is down on {{ $labels.instance }}"
|
|
|
|
description: "{{ $labels.instance }} of job {{ $labels.job }} has been down for more than 2 minutes."
|
|
|
|
|
|
|
|
- alert: ProcessNearFDLimits
|
|
|
|
expr: (process_max_fds - process_open_fds) < 100
|
|
|
|
for: 5m
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "Number of free file descriptors is less than 100 for \"{{ $labels.job }}\"(\"{{ $labels.instance }}\") for the last 5m"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: |
|
|
|
|
Exhausting OS file descriptors limit can cause severe degradation of the process.
|
|
|
|
Consider to increase the limit as fast as possible.
|
2022-09-21 10:48:38 +02:00
|
|
|
|
|
|
|
- alert: TooHighMemoryUsage
|
2023-10-24 09:39:46 +02:00
|
|
|
expr: (min_over_time(process_resident_memory_anon_bytes[10m]) / vm_available_memory_bytes) > 0.8
|
2022-09-21 10:48:38 +02:00
|
|
|
for: 5m
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
2023-10-24 09:53:44 +02:00
|
|
|
summary: "It is more than 80% of memory used by \"{{ $labels.job }}\"(\"{{ $labels.instance }}\")"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: |
|
|
|
|
Too high memory usage may result into multiple issues such as OOMs or degraded performance.
|
|
|
|
Consider to either increase available memory or decrease the load on the process.
|
2022-09-21 10:48:38 +02:00
|
|
|
|
|
|
|
- alert: TooHighCPUUsage
|
|
|
|
expr: rate(process_cpu_seconds_total[5m]) / process_cpu_cores_available > 0.9
|
|
|
|
for: 5m
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "More than 90% of CPU is used by \"{{ $labels.job }}\"(\"{{ $labels.instance }}\") during the last 5m"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: >
|
|
|
|
Too high CPU usage may be a sign of insufficient resources and make process unstable.
|
|
|
|
Consider to either increase available CPU resources or decrease the load on the process.
|
2022-10-05 19:23:36 +02:00
|
|
|
|
2024-09-23 16:54:42 +02:00
|
|
|
- alert: TooHighGoroutineSchedulingLatency
|
2024-09-24 11:48:19 +02:00
|
|
|
expr: histogram_quantile(0.99, sum(rate(go_sched_latencies_seconds_bucket[5m])) by (le, job, instance)) > 0.1
|
2024-09-23 16:54:42 +02:00
|
|
|
for: 15m
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "\"{{ $labels.job }}\"(\"{{ $labels.instance }}\") has insufficient CPU resources for >15m"
|
|
|
|
description: >
|
|
|
|
Go runtime is unable to schedule goroutines execution in acceptable time. This is usually a sign of
|
|
|
|
insufficient CPU resources or CPU throttling. Verify that service has enough CPU resources. Otherwise,
|
|
|
|
the service could work unreliably with delays in processing.
|
|
|
|
|
2022-10-05 19:23:36 +02:00
|
|
|
- alert: TooManyLogs
|
2023-12-11 15:17:30 +01:00
|
|
|
expr: sum(increase(vm_log_messages_total{level="error"}[5m])) without (app_version, location) > 0
|
2022-10-05 19:23:36 +02:00
|
|
|
for: 15m
|
|
|
|
labels:
|
|
|
|
severity: warning
|
|
|
|
annotations:
|
|
|
|
summary: "Too many logs printed for job \"{{ $labels.job }}\" ({{ $labels.instance }})"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: >
|
|
|
|
Logging rate for job \"{{ $labels.job }}\" ({{ $labels.instance }}) is {{ $value }} for last 15m.
|
|
|
|
Worth to check logs for specific error messages.
|
2023-03-17 09:46:51 +01:00
|
|
|
|
|
|
|
- alert: TooManyTSIDMisses
|
2023-12-11 15:17:30 +01:00
|
|
|
expr: rate(vm_missing_tsids_for_metric_id_total[5m]) > 0
|
2023-03-17 09:46:51 +01:00
|
|
|
for: 10m
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "Too many TSID misses for job \"{{ $labels.job }}\" ({{ $labels.instance }})"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: |
|
|
|
|
The rate of TSID misses during query lookups is too high for \"{{ $labels.job }}\" ({{ $labels.instance }}).
|
|
|
|
Make sure you're running VictoriaMetrics of v1.85.3 or higher.
|
|
|
|
Related issue https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3502
|
2023-08-03 10:45:21 +02:00
|
|
|
|
|
|
|
- alert: ConcurrentInsertsHitTheLimit
|
|
|
|
expr: avg_over_time(vm_concurrent_insert_current[1m]) >= vm_concurrent_insert_capacity
|
|
|
|
for: 15m
|
|
|
|
labels:
|
|
|
|
severity: warning
|
|
|
|
annotations:
|
|
|
|
summary: "{{ $labels.job }} on instance {{ $labels.instance }} is constantly hitting concurrent inserts limit"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: |
|
|
|
|
The limit of concurrent inserts on instance {{ $labels.instance }} depends on the number of CPUs.
|
2023-08-03 10:45:21 +02:00
|
|
|
Usually, when component constantly hits the limit it is likely the component is overloaded and requires more CPU.
|
|
|
|
In some cases for components like vmagent or vminsert the alert might trigger if there are too many clients
|
|
|
|
making write attempts. If vmagent's or vminsert's CPU usage and network saturation are at normal level, then
|
2024-06-03 11:31:53 +02:00
|
|
|
it might be worth adjusting `-maxConcurrentInserts` cmd-line flag.
|
2024-05-24 14:55:20 +02:00
|
|
|
|
|
|
|
- alert: IndexDBRecordsDrop
|
|
|
|
expr: increase(vm_indexdb_items_dropped_total[5m]) > 0
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "IndexDB skipped registering items during data ingestion with reason={{ $labels.reason }}."
|
2024-06-03 11:31:53 +02:00
|
|
|
description: |
|
|
|
|
VictoriaMetrics could skip registering new timeseries during ingestion if they fail the validation process.
|
|
|
|
For example, `reason=too_long_item` means that time series cannot exceed 64KB. Please, reduce the number
|
|
|
|
of labels or label values for such series. Or enforce these limits via `-maxLabelsPerTimeseries` and
|
|
|
|
`-maxLabelValueLen` command-line flags.
|
2024-05-24 15:09:52 +02:00
|
|
|
|
|
|
|
- alert: TooLongLabelValues
|
|
|
|
expr: increase(vm_too_long_label_values_total[5m]) > 0
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "VictoriaMetrics truncates too long label values"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: |
|
|
|
|
The maximum length of a label value is limited via `-maxLabelValueLen` cmd-line flag.
|
|
|
|
Longer label values are truncated and may result into time series overlapping.
|
|
|
|
Please, check your logs to find which labels were truncated and
|
|
|
|
either reduce the size of label values or increase `-maxLabelValueLen`.
|
2024-05-24 15:09:52 +02:00
|
|
|
|
|
|
|
- alert: TooLongLabelNames
|
|
|
|
expr: increase(vm_too_long_label_names_total[5m]) > 0
|
|
|
|
labels:
|
|
|
|
severity: critical
|
|
|
|
annotations:
|
|
|
|
summary: "VictoriaMetrics truncates too long label names"
|
2024-06-03 11:31:53 +02:00
|
|
|
description: >
|
|
|
|
The maximum length of a label name is limited by 256 bytes.
|
|
|
|
Longer label names are truncated and may result into time series overlapping.
|