munin-plugins/proxmox_vm_count

40 lines
891 B
Bash

#!/bin/bash
#%# family=auto
#%# capabilities=autoconf
# Michael Grote
# michael.grote ät posteo.de
# Outputs the running, stopped and total counts of ProxMox VMs.
# needs to be run as user: root AND group: root
# [kvm_vm_count]
# user root
# group root
wqm=$(which qm)
total=$($wqm list | sed 1d | wc -l)
running=$($wqm list | sed 1d | grep running | wc -l)
stopped=$($wqm list | sed 1d | grep stopped | wc -l)
# wenn parameter = ...
if [ "$1" = "autoconf" ]; then
echo yes
exit 0
fi
if [ "$1" = "config" ]; then
# setze label
echo total.label total
echo running.label running
echo stopped.label stopped
# setze optionen
echo 'graph_title Number of VMs'
echo 'graph_vlabel Count'
echo 'graph_category virtualization'
echo 'graph_args -l 0'
exit 0
fi
echo total.value $total
echo running.value $running
echo stopped.value $stopped
exit 0