summaryrefslogtreecommitdiff
path: root/datasources/diskfree.sh
diff options
context:
space:
mode:
Diffstat (limited to 'datasources/diskfree.sh')
-rwxr-xr-xdatasources/diskfree.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/datasources/diskfree.sh b/datasources/diskfree.sh
deleted file mode 100755
index 60ffe47..0000000
--- a/datasources/diskfree.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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