diff options
author | ChrisWi <chris@computersalat.de> | 2019-03-21 14:18:37 +0100 |
---|---|---|
committer | ChrisWi <chris@computersalat.de> | 2019-03-21 14:18:37 +0100 |
commit | a58ea5ec5d5fecce9224d10b7058ac63050db05a (patch) | |
tree | 0885940fcf7d532bd5c5faba2433b3c073788969 /plugins | |
parent | 97bb142b144c7ae128cc69033e620906c95562c8 (diff) | |
download | monitoring-plugins-a58ea5ec5d5fecce9224d10b7058ac63050db05a.tar.gz |
improve command examples for 'at least' processes
Diffstat (limited to 'plugins')
-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 4bcc56bc..f7917c34 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c @@ -764,6 +764,11 @@ be the total number of running processes\n\n")); printf (" %s\n", "check_procs -w 2:2 -c 2:1024 -C portsentry"); printf (" %s\n", _("Warning if not two processes with command name portsentry.")); printf (" %s\n\n", _("Critical if < 2 or > 1024 processes")); + printf (" %s\n", "check_procs -c 1: -C sshd"); + printf (" %s\n", _("Critical if not at least 1 process with command sshd")); + printf (" %s\n", "check_procs -w 1024 -c 1: -C sshd"); + printf (" %s\n", _("Warning if > 1024 processes with command name sshd.")); + printf (" %s\n\n", _("Critical if < 1 processes with command name sshd.")); printf (" %s\n", "check_procs -w 10 -a '/usr/local/bin/perl' -u root"); printf (" %s\n", _("Warning alert if > 10 processes with command arguments containing")); printf (" %s\n\n", _("'/usr/local/bin/perl' and owned by root")); |