From 2b496372462eff2c16edc83f90748b54b2937c07 Mon Sep 17 00:00:00 2001 From: samuel-p Date: Sun, 16 May 2021 16:19:31 +0200 Subject: [PATCH] fixed active-sessions.sh --- node_exporter/active-sessions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node_exporter/active-sessions.sh b/node_exporter/active-sessions.sh index bfe02cd..854d78c 100644 --- a/node_exporter/active-sessions.sh +++ b/node_exporter/active-sessions.sh @@ -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"