mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
Merge pull request #1404 from kimheino/master
chrony_status: fix reboot-workaround, value is str not int
This commit is contained in:
commit
f76cb185bb
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ def fetch():
|
|||
values = get_values()
|
||||
for graph in GRAPHS:
|
||||
print('multigraph chrony_{}'.format(graph))
|
||||
if graph == 'stratum' and values[graph] == 0:
|
||||
if graph == 'stratum' and values[graph] == '0':
|
||||
print('{}.value U'.format(graph))
|
||||
elif graph == 'serverstats':
|
||||
for stat in SERVERSTATS:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue