amavis_multi: fix spelling, it's "processes", not "childs" or "children"

This commit is contained in:
Kim B. Heino 2021-07-16 11:37:31 +03:00
parent e36bb075fb
commit 30328b3546
1 changed files with 5 additions and 5 deletions

View File

@ -81,15 +81,15 @@ def print_status(config):
both = os.environ.get('MUNIN_CAP_DIRTYCONFIG') == '1' both = os.environ.get('MUNIN_CAP_DIRTYCONFIG') == '1'
values = get_values() values = get_values()
# Busy childs. Use average of last three runs so that single "bad timing" # Busy processes. Use average of last three runs so that single "bad
# doesn't trigger warning. # timing" doesn't trigger warning.
print('multigraph amavis_childs') print('multigraph amavis_processes')
if config or both: if config or both:
print('graph_title Amavis mail filter busy childs') print('graph_title Amavis mail filter busy processes')
print('graph_vlabel % busy') print('graph_vlabel % busy')
print('graph_args --base 1000 --lower-limit 0 --upper-limit 100') print('graph_args --base 1000 --lower-limit 0 --upper-limit 100')
print('graph_category spamfilter') print('graph_category spamfilter')
print('busy.label Percent of busy childs') print('busy.label Percent of busy processes')
print('busy.warning 80') print('busy.warning 80')
print('busy.critical 95') print('busy.critical 95')
if not config or both: if not config or both: