diff options
Diffstat (limited to 'collect.d/system')
-rw-r--r-- | collect.d/system | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/collect.d/system b/collect.d/system index c5be33d..c741cda 100644 --- a/collect.d/system +++ b/collect.d/system @@ -42,6 +42,11 @@ if [ -f /proc/mdstat ] ; then cat /proc/mdstat > mdstat fi +# Collect hard disk information +for diskdev in $(grep 'sd.$' /proc/partitions|awk '{print $4}'|sort); do + hdparm -I /dev/$diskdev || true +done > hdparm-I + # Collect mount points, for nagios configuration cp /etc/fstab fstab cat /proc/mounts > procmounts |