ansible-roles/proftpd/files/munin_plugin
William Hirigoyen d00fbbe518
Some checks failed
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2746|0|2746|0|:zzz:
gitea/ansible-roles/pipeline/head There was a failure building this commit
proftpd: add new munin graph (users count)5
2024-06-10 13:03:37 +02:00

19 lines
388 B
Bash

#! /bin/bash
#
if [ "$1" = 'config' ]; then
echo "graph_args --base 1000 -l 0"
echo "graph_title ProFTPd"
echo "graph_category network"
echo "graph_vlabel Stats Proftpd"
echo "users_count.label Connected users"
echo "users_count.draw AREA"
fi
n_users="$(ftpcount | awk '/users/{print $4}')"
echo "users_count.value ${n_users}"
exit 0