summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdatasources/diskfree.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/datasources/diskfree.sh b/datasources/diskfree.sh
new file mode 100755
index 0000000..60ffe47
--- /dev/null
+++ b/datasources/diskfree.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+. "`dirname \"$0\"`"/datastore-functions.sh
+
+for fs in `df -P | tail -n +2 | awk '{print $6}'`; do
+ fsname=`echo "$fs" | tr -d -c 'a-zA-Z0-9'`
+ sensor="`hostname`.fs.ROOT$fsname"
+ used=`df -P "$fs" | tail -n +2 | awk '{print $5}' | tr -c -d '0-9'`
+
+ put_value_sensor_now \
+ "$sensor" \
+ "$used"
+done