mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
alerts: sync alert expression for DiskRunsOutOfSpaceIn3Days
with dashboard (#1436)
This commit is contained in:
parent
a7694092b8
commit
2f54559c89
1 changed files with 10 additions and 10 deletions
|
@ -33,16 +33,16 @@ groups:
|
||||||
rules:
|
rules:
|
||||||
- alert: DiskRunsOutOfSpaceIn3Days
|
- alert: DiskRunsOutOfSpaceIn3Days
|
||||||
expr: |
|
expr: |
|
||||||
vm_free_disk_space_bytes / ignoring(path) (
|
vm_free_disk_space_bytes / ignoring(path)
|
||||||
(
|
(
|
||||||
sum(rate(vm_rows_added_to_storage_total[1d])) -
|
(
|
||||||
sum(rate(vm_deduplicated_samples_total[1d])) without(type)
|
rate(vm_rows_added_to_storage_total[1d]) -
|
||||||
)
|
ignoring(type) rate(vm_deduplicated_samples_total{type="merge"}[1d])
|
||||||
*
|
)
|
||||||
(
|
* scalar(
|
||||||
sum(vm_data_size_bytes{type!="indexdb"}) /
|
sum(vm_data_size_bytes{type!="indexdb"}) /
|
||||||
sum(vm_rows{type!="indexdb"})
|
sum(vm_rows{type!="indexdb"})
|
||||||
)
|
)
|
||||||
) < 3 * 24 * 3600
|
) < 3 * 24 * 3600
|
||||||
for: 30m
|
for: 30m
|
||||||
labels:
|
labels:
|
||||||
|
|
Loading…
Reference in a new issue