fixed active-sessions.sh

This commit is contained in:
Samuel Philipp 2021-05-16 16:33:25 +02:00
parent 2b49637246
commit afc5dd6c7a
Signed by: samuel-p
GPG key ID: 2AD495D17760CB4E

View file

@ -1,7 +1,7 @@
#!/bin/bash
ALL_SESSIONS=$(ps auxwww | grep sshd: | grep -v grep -c)
ROOT_SESSIONS=$(ps auxwww | grep sshd: | grep -v grep | grep 'root\|priv' -c)
ALL_SESSIONS=$(ps auxwww | grep sshd: | grep -v 'grep\|listen' -c)
ROOT_SESSIONS=$(ps auxwww | grep sshd: | grep -v 'grep\|listen' | grep 'root\|priv' -c)
echo "# HELP node_active_sessions active sessions by type."
echo "# TYPE node_active_sessions gauge"