mirror of
https://github.com/luzifer-aur/elb-instance-status.git
synced 2024-11-08 22:00:07 +00:00
11 lines
328 B
YAML
11 lines
328 B
YAML
---
|
|
|
|
root_free_inodes:
|
|
name: Ensure there are at least 30% free inodes on /
|
|
command: test $(df -i | grep "/$" | xargs | cut -d ' ' -f 5 | sed "s/%//") -lt 70
|
|
|
|
root_free_diskspace:
|
|
name: Ensure there is at least 30% free disk space on /
|
|
command: test $(df | grep "/$" | xargs | cut -d ' ' -f 5 | sed "s/%//") -lt 70
|
|
|
|
...
|