Files
proxmox-snmp/snmp-zfs-used.sh
Jan Zahradník 188ec5b69f ZFS % usage
2024-09-13 19:45:20 +02:00

9 lines
149 B
Bash

#!/bin/bash
if [ "$1" = "-g" ]
then
echo .1.3.6.1.2.1.25.1.11
echo gauge
zpool list rpool | grep "rpool" | awk '{print $8}' | sed 's/%//g'
fi
exit 0