aboutsummaryrefslogtreecommitdiffstats
path: root/collect.d/system
diff options
context:
space:
mode:
Diffstat (limited to 'collect.d/system')
-rw-r--r--collect.d/system5
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