fixed active-sessions.sh

This commit is contained in:
Samuel Philipp 2021-05-16 16:19:31 +02:00
parent 73eab6c715
commit 2b49637246
Signed by: samuel-p
GPG key ID: 2AD495D17760CB4E

View file

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