Revert "fix(HostOutOfInodes): exclude msdosfs FS"

This reverts commit 5f57f09db0.
This commit is contained in:
Samuel Berthe 2024-02-10 20:06:44 +01:00
parent 937cd35df7
commit cc73d535fe
No known key found for this signature in database
GPG key ID: 64863511FFBD0E3C

View file

@ -192,16 +192,16 @@ groups:
for: 2m for: 2m
- name: Host out of inodes - name: Host out of inodes
description: Disk is almost running out of available inodes (< 10% left) description: Disk is almost running out of available inodes (< 10% left)
query: '(node_filesystem_files_free{fstype!="msdosfs"} / node_filesystem_files{fstype!="msdosfs"} * 100 < 10 and ON (instance, device, mountpoint) node_filesystem_readonly == 0) * on(instance) group_left (nodename) node_uname_info{nodename=~".+"}' query: '(node_filesystem_files_free / node_filesystem_files * 100 < 10 and ON (instance, device, mountpoint) node_filesystem_readonly == 0) * on(instance) group_left (nodename) node_uname_info{nodename=~".+"}'
severity: warning severity: warning
for: 2m for: 2m
- name: Host filesystem device error - name: Host filesystem device error
description: "{{ $labels.instance }}: Device error with the {{ $labels.mountpoint }} filesystem" description: '{{ $labels.instance }}: Device error with the {{ $labels.mountpoint }} filesystem'
query: "node_filesystem_device_error == 1" query: 'node_filesystem_device_error == 1'
severity: critical severity: critical
- name: Host inodes will fill in 24 hours - name: Host inodes will fill in 24 hours
description: Filesystem is predicted to run out of inodes within the next 24 hours at current write rate description: Filesystem is predicted to run out of inodes within the next 24 hours at current write rate
query: '(node_filesystem_files_free{fstype!="msdosfs"} / node_filesystem_files{fstype!="msdosfs"} * 100 < 10 and predict_linear(node_filesystem_files_free{fstype!="msdosfs"}[1h], 24 * 3600) < 0 and ON (instance, device, mountpoint) node_filesystem_readonly{fstype!="msdosfs"} == 0) * on(instance) group_left (nodename) node_uname_info{nodename=~".+"}' query: '(node_filesystem_files_free / node_filesystem_files * 100 < 10 and predict_linear(node_filesystem_files_free[1h], 24 * 3600) < 0 and ON (instance, device, mountpoint) node_filesystem_readonly == 0) * on(instance) group_left (nodename) node_uname_info{nodename=~".+"}'
severity: warning severity: warning
for: 2m for: 2m
- name: Host unusual disk read latency - name: Host unusual disk read latency