mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-22 10:23:46 +01:00
Known types always have a metric, even if 0
This commit is contained in:
parent
5ff4605400
commit
5a8cad9783
@ -39,9 +39,9 @@ def main():
|
|||||||
", ".join(["%s: %i" % (x, len(pkg_updates[x])) for x in pkg_updates.keys()]))
|
", ".join(["%s: %i" % (x, len(pkg_updates[x])) for x in pkg_updates.keys()]))
|
||||||
p.add_metric("total", total_updates)
|
p.add_metric("total", total_updates)
|
||||||
for update_type in pkg_updates:
|
for update_type in pkg_updates:
|
||||||
|
p.add_metric(update_type.lower(), len(pkg_updates[update_type]))
|
||||||
if len(pkg_updates[update_type]):
|
if len(pkg_updates[update_type]):
|
||||||
p.add_long_output(update_type)
|
p.add_long_output(update_type)
|
||||||
p.add_metric(update_type.lower(), len(pkg_updates[update_type]))
|
|
||||||
for pkg in pkg_updates[update_type]:
|
for pkg in pkg_updates[update_type]:
|
||||||
p.add_long_output(" %s" % pkg)
|
p.add_long_output(" %s" % pkg)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user