Fix previous change. The key for config and values was the mountpoint

I accidently changed this to dev. This also works but breaks existing history
This commit is contained in:
Daniel Alder 2023-12-14 13:26:47 +01:00
parent f55b83fdbd
commit c2b8d7315d
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ graph_category disk
graph_info This graph shows disk usage on the machine."
df -PT | grep '^/' | grep -vwE "$DF_IGNORE_FILESYSTEM_REGEX" | while read dev type blocks used avail pct mp
do
PNAME=$(clean_fieldname "$dev")
PNAME=$(clean_fieldname "$mp")
echo "$PNAME.label $mp"
echo "$PNAME.info $dev -> $mp"
echo "$PNAME.warning 92"
@ -16,7 +16,7 @@ graph_info This graph shows disk usage on the machine."
fetch_df() {
df -PT | grep '^/' | grep -vwE "$DF_IGNORE_FILESYSTEM_REGEX" | while read dev type blocks used avail pct mp
do
PNAME=$(clean_fieldname "$dev")
PNAME=$(clean_fieldname "$mp")
echo "$PNAME.value" "${pct%\%}"
done
}