1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

Fix copy-paste bug where objects graph was never updated.

This commit is contained in:
s0 2021-07-15 19:55:24 +10:00
parent 4ed6c56f28
commit e70f572eeb

View file

@ -142,6 +142,6 @@ printf "multigraph openstack_swift_stats_objects\n"
case $OBJECTS_COUNT in case $OBJECTS_COUNT in
(*[!0-9]*|'') printf "U\n";; # Emit magic error value (*[!0-9]*|'') printf "U\n";; # Emit magic error value
(*) printf "size.value %s\ngrowth.value %s\n" "$OBJECTS_COUNT" "$OBJECTS_COUNT";; (*) printf "objects.value %s\nobjgrowth.value %s\n" "$OBJECTS_COUNT" "$OBJECTS_COUNT";;
esac esac