proxmox_lxc_count angelegt
This commit is contained in:
parent
7a84250233
commit
f35527494a
1 changed files with 40 additions and 0 deletions
40
proxmox_lxc_count
Normal file
40
proxmox_lxc_count
Normal file
|
@ -0,0 +1,40 @@
|
|||
#!/bin/bash
|
||||
#%# family=auto
|
||||
#%# capabilities=autoconf
|
||||
|
||||
# Michael Grote
|
||||
# michael.grote ät posteo.de
|
||||
# Outputs the running, stopped and total counts of ProxMox LXCs.
|
||||
# needs to be run as user: root AND group: root
|
||||
# [kvm_vm_count]
|
||||
# user root
|
||||
# group root
|
||||
|
||||
wpct=$(which pct)
|
||||
total=$($wpct list | sed 1d | wc -l)
|
||||
running=$($wpct list | sed 1d | grep running | wc -l)
|
||||
stopped=$($wpct 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 LXCs'
|
||||
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
|
Loading…
Reference in a new issue