This repository has been archived on 2023-09-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
awesome-scripts/node_exporter/active-sessions.sh
2021-05-16 03:12:23 +02:00

9 lines
300 B
Bash

#!/bin/bash
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"
echo "node_active_sessions{type=\"all\"} $ALL_SESSIONS"
echo "node_active_sessions{type=\"root\"} $ROOT_SESSIONS"