diff options
author | Sven Nierlein <sven@nierlein.org> | 2019-03-21 16:43:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 16:43:55 (GMT) |
commit | 71582d8bf98a115281ae6d4af5056b99c4ae46a2 (patch) | |
tree | 425d44c4c80b8e672967dac5cbc7a2ef8322e9af /plugins/check_procs.c | |
parent | 41d98f708a635b2105f1bcb8960ab1dc3d907fd9 (diff) | |
parent | a58ea5ec5d5fecce9224d10b7058ac63050db05a (diff) | |
download | monitoring-plugins-71582d8bf98a115281ae6d4af5056b99c4ae46a2.tar.gz |
Merge pull request #1586 from computersalat/master
improve command examples for 'at least' processes
Diffstat (limited to 'plugins/check_procs.c')
-rw-r--r-- | plugins/check_procs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 4bcc56b..f7917c3 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
@@ -764,6 +764,11 @@ be the total number of running processes\n\n")); | |||
764 | printf (" %s\n", "check_procs -w 2:2 -c 2:1024 -C portsentry"); | 764 | printf (" %s\n", "check_procs -w 2:2 -c 2:1024 -C portsentry"); |
765 | printf (" %s\n", _("Warning if not two processes with command name portsentry.")); | 765 | printf (" %s\n", _("Warning if not two processes with command name portsentry.")); |
766 | printf (" %s\n\n", _("Critical if < 2 or > 1024 processes")); | 766 | printf (" %s\n\n", _("Critical if < 2 or > 1024 processes")); |
767 | printf (" %s\n", "check_procs -c 1: -C sshd"); | ||
768 | printf (" %s\n", _("Critical if not at least 1 process with command sshd")); | ||
769 | printf (" %s\n", "check_procs -w 1024 -c 1: -C sshd"); | ||
770 | printf (" %s\n", _("Warning if > 1024 processes with command name sshd.")); | ||
771 | printf (" %s\n\n", _("Critical if < 1 processes with command name sshd.")); | ||
767 | printf (" %s\n", "check_procs -w 10 -a '/usr/local/bin/perl' -u root"); | 772 | printf (" %s\n", "check_procs -w 10 -a '/usr/local/bin/perl' -u root"); |
768 | printf (" %s\n", _("Warning alert if > 10 processes with command arguments containing")); | 773 | printf (" %s\n", _("Warning alert if > 10 processes with command arguments containing")); |
769 | printf (" %s\n\n", _("'/usr/local/bin/perl' and owned by root")); | 774 | printf (" %s\n\n", _("'/usr/local/bin/perl' and owned by root")); |