mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
Fix copy-paste bug where objects graph was never updated.
This commit is contained in:
parent
4ed6c56f28
commit
e70f572eeb
1 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ growth.min 0
|
|||
multigraph openstack_swift_stats_objects
|
||||
graph_title Swift container object count ($CONTAINER)
|
||||
graph_category cloud
|
||||
graph_vlabel
|
||||
graph_vlabel
|
||||
graph_args --base=1000 -l 0
|
||||
graph_period hour
|
||||
objects.label Objects
|
||||
|
@ -142,6 +142,6 @@ printf "multigraph openstack_swift_stats_objects\n"
|
|||
|
||||
case $OBJECTS_COUNT in
|
||||
(*[!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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue