mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Merge pull request #105 from sileht/master
Fix incorrect label in nova_instance_ plugin
This commit is contained in:
commit
0e504dd3e2
@ -66,7 +66,7 @@ def get_name(metric, code):
|
||||
if metric == "power_state":
|
||||
return power_state.name(code)
|
||||
elif metric in ["root_gb", "ephemeral_gb"]:
|
||||
return "%d_gb", code
|
||||
return "%d gb" % code
|
||||
else:
|
||||
return code
|
||||
|
||||
@ -79,7 +79,7 @@ def print_config(metric):
|
||||
print 'graph_scale no'
|
||||
print 'graph_info This graph shows the number of instances by %s' % metric
|
||||
for state in states:
|
||||
print '%s.label %s' % (state, get_name(state))
|
||||
print '%s.label %s' % (state, get_name(metric, state))
|
||||
print '%s.draw LINE2' % state
|
||||
print '%s.info %s IPs' % (state, state)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user