You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
427 B
11 lines
427 B
#!/bin/bash |
|
|
|
ALL_SESSIONS=$(netstat -tnp | grep sshd -c) |
|
SU_SESSIONS=$(ps aux | grep ' [s][u] ' -c) |
|
ROOT_SESSIONS=$(netstat -tnp | grep sshd | grep root -c) |
|
|
|
echo "# HELP node_active_sessions active sessions by type." |
|
echo "# TYPE node_active_sessions gauge" |
|
echo "node_active_sessions{type=\"all\"} $ALL_SESSIONS" |
|
echo "node_active_sessions{type=\"su\"} $SU_SESSIONS" |
|
echo "node_active_sessions{type=\"root\"} $ROOT_SESSIONS"
|
|
|