Browse Source

Fix SystemDiskInodesTooLow alert

Change-Id: I715f78983c69084c81d4efd4a5625d5dfe0f276f
pull/128/head
Szymon Bańka 7 years ago
parent
commit
a0dd1737af
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      linux/meta/prometheus.yml

+ 1
- 1
linux/meta/prometheus.yml View File

@@ -42,7 +42,7 @@ server:
description: 'The disk inodes ({{ $labels.path }}) will be full in less than 8 hours on {{ $labels.host }}.'
{% endraw %}
SystemDiskInodesFull:
if: 'disk_inodes_used / disk_inodes_total >= 99'
if: 'disk_inodes_used / disk_inodes_total >= 0.99'
{% raw %}
labels:
severity: critical

Loading…
Cancel
Save