$ cat fabfile.py
from fabric.api import *
def crit_disk(warn=80,crit=90):
x = run("df -hP | awk 'NR>1{print $1,$5}' | sed -e's/%//g'")
drives = dict([y.split() for y in x.split('\n')])
for drive,percent in drives.iteritems():
if warn<int(percent)<crit:
print("WARN: %s at %d%%" % (drive,percent))
if int(percent)>crit:
print("CRIT: %s at %d%%" % (drive,percent))
Essa é uma tentativa rápida de mostrar como você pode usar o tecido para isso.