mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
Add support for dash in zfs_list
#969 zfs/zfs_list: Add support for dash in zfs_list
This commit is contained in:
parent
bc8bb4d9d7
commit
0429e63be5
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ fi
|
|||
if [ "$1" = "config" ]; then
|
||||
for i in `zfs list -Hp | awk '{print $1}'`; do
|
||||
values=( $(zfs get -p usedbydataset,usedbychildren,usedbysnapshots,usedbyrefreservation,available,quota $i | awk 'BEGIN {total=0;} { if( NR==1 ) next; } !/quota/ {total=total+$3;} {print $3} END{print total;}') )
|
||||
fsname=`echo $i | sed 's/\//__/g'`
|
||||
fsname=`echo $i | sed 's/\//__/g' | sed 's/-/_/g'`
|
||||
|
||||
echo <<EOF "multigraph zfs_list_$fsname
|
||||
graph_title $fsname usage
|
||||
|
@ -75,7 +75,7 @@ fi
|
|||
|
||||
for i in `zfs list -Hp | awk '{print $1}'`; do
|
||||
values=( $(zfs get -p usedbydataset,usedbychildren,usedbysnapshots,usedbyrefreservation,available,quota $i | awk 'BEGIN {total=0;} { if( NR==1 ) next; } !/quota/ {total=total+$3;} {print $3} END{print total;}') )
|
||||
fsname=`echo $i | sed 's/\//__/g'`
|
||||
fsname=`echo $i | sed 's/\//__/g' | sed 's/-/_/g'`
|
||||
|
||||
echo <<EOF "multigraph zfs_list_$fsname
|
||||
usedbydataset.value ${values[0]}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue