mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
chrony_status: fix reboot-workaround, value is str not int
After reboot stratum is 0, convert it to U. Include unknown_limit to config to not send warning email. I finally found a server where this workaround was needed.
This commit is contained in:
parent
e77bb30d37
commit
24f0fee044
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