mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
alerts: lower the threshold for TooHighSlowInsertsRate (#2210)
Lowering threshold from 50% to 5% will be more sufficient for discovering un-healthy system state. It also goes in sync with alert definition in cluster branch. Signed-off-by: hagen1778 <roman@victoriametrics.com>
This commit is contained in:
parent
ea86716d06
commit
7cd371f08f
1 changed files with 2 additions and 2 deletions
|
@ -187,13 +187,13 @@ groups:
|
||||||
sum(rate(vm_slow_row_inserts_total[5m])) by(instance)
|
sum(rate(vm_slow_row_inserts_total[5m])) by(instance)
|
||||||
/
|
/
|
||||||
sum(rate(vm_rows_inserted_total[5m])) by (instance)
|
sum(rate(vm_rows_inserted_total[5m])) by (instance)
|
||||||
) > 0.5
|
) > 0.05
|
||||||
for: 15m
|
for: 15m
|
||||||
labels:
|
labels:
|
||||||
severity: warning
|
severity: warning
|
||||||
annotations:
|
annotations:
|
||||||
dashboard: "http://localhost:3000/d/wNf0q_kZk?viewPanel=68&var-instance={{ $labels.instance }}"
|
dashboard: "http://localhost:3000/d/wNf0q_kZk?viewPanel=68&var-instance={{ $labels.instance }}"
|
||||||
summary: "Percentage of slow inserts is more than 50% on \"{{ $labels.instance }}\" for the last 15m"
|
summary: "Percentage of slow inserts is more than 5% on \"{{ $labels.instance }}\" for the last 15m"
|
||||||
description: "High rate of slow inserts on \"{{ $labels.instance }}\" may be a sign of resource exhaustion
|
description: "High rate of slow inserts on \"{{ $labels.instance }}\" may be a sign of resource exhaustion
|
||||||
for the current load. It is likely more RAM is needed for optimal handling of the current number of active time series."
|
for the current load. It is likely more RAM is needed for optimal handling of the current number of active time series."
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue