我希望使用 Nagios 插件 check_procs 来监控在我的 CentOS 服务器上运行的 ssh 守护进程的数量。现在考虑我的服务器:
$ ps auxww | grep ssh
root 6750 0.0 0.0 31812 1224 ? Ss 2012 0:01 /usr/sbin/sshd
root 23375 0.0 0.0 65464 3244 ? Ss 16:53 0:00 sshd: user [priv]
user 23377 0.0 0.0 65464 1908 ? S 16:53 0:00 sshd: user@pts/1
root 23404 0.0 0.0 65464 3248 ? Ss 16:53 0:00 sshd: user [priv]
user 23406 0.0 0.0 65464 1912 ? S 16:53 0:00 sshd: user@pts/2
我只想知道有多少“/usr/sbin/sshd”实例正在运行,而不是启动了多少个守护进程来处理传入的 ssh 连接。有没有办法做到这一点?