diff options
Diffstat (limited to 'collect.d')
-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 2a43630..4ec5438 100644 --- a/collect.d/system +++ b/collect.d/system @@ -37,6 +37,11 @@ route -n > route-n cat /proc/cpuinfo > cpuinfo cat /proc/meminfo > meminfo +# Collect software RAID status +if [ -f /proc/mdstat ] ; then + cat /proc/mdstat > mdstat +fi + # Collect mount points, for nagios configuration cp /etc/fstab fstab cat /proc/mounts > procmounts |