Build precise queries to find exactly what you need
Press ESC to close
Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More
Not sure if this is still any use to anyone but I fixed the missing volume disk space bug by removing a $ symbol from line 317.
Original Line:
storageID[$i]=$(echo “$syno_diskspace” | grep “= “?/${storageName[$i]}$”?” | cut -d “=” -f1 | rev | cut -d “.” -f1 | rev)
Replaced with:
storageID[$i]=$(echo “$syno_diskspace” | grep “= “?/${storageName[$i]}”?” | cut -d “=” -f1 | rev | cut -d “.” -f1 | rev)
I am not sure if this will break anything else but it seems to be doing what I need it to now.