diff --git a/node_exporter/active-sessions.sh b/node_exporter/active-sessions.sh index d5f68c6..bfe02cd 100644 --- a/node_exporter/active-sessions.sh +++ b/node_exporter/active-sessions.sh @@ -1,7 +1,7 @@ #!/bin/bash -ALL_SESSIONS=$(who | wc -l) -ROOT_SESSIONS=$(who | grep root | wc -l) +ALL_SESSIONS=$(w -h | wc -l) +ROOT_SESSIONS=$(w -h | grep priv | wc -l) echo "# HELP node_active_sessions active sessions by type." echo "# TYPE node_active_sessions gauge"