1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Category Tree: Reduce number of categories

squid -> webserver (squid)
openfire -> chate
nfs -> fs
xastir -> radio
This commit is contained in:
dipohl 2017-02-23 04:29:44 +01:00
parent a4710dc1a4
commit 3ad41d6a4a
8 changed files with 35 additions and 35 deletions

View file

@ -300,7 +300,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_v3_calls_s
graph_title EMC VNX 5300 NFSv3 Calls per second
graph_vlabel Calls
graph_category nfs
graph_category fs
graph_args --base 1000
EOF
for graph in "${graphs[@]}"; do
@ -313,7 +313,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_v3_usec_call
graph_title EMC VNX 5300 NFSv3 uSeconds per call
graph_vlabel uSec / call
graph_category nfs
graph_category fs
graph_args --base 1000
EOF
for graph in "${graphs[@]}"; do
@ -326,7 +326,7 @@ if [ "$1" = "config" ] ; then
graph_title EMC VNX 5300 NFSv3 Op %
graph_vlabel %
graph_scale no
graph_category nfs
graph_category fs
EOF
for graph in "${graphs[@]}"; do
field=$(echo "$graph" | cut -d '.' -f4 )
@ -341,7 +341,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_v4_calls_s
graph_title EMC VNX 5300 NFSv4 Calls per second
graph_vlabel Calls
graph_category nfs
graph_category fs
graph_args --base 1000
EOF
for graph in "${graphs[@]}"; do
@ -354,7 +354,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_v4_usec_call
graph_title EMC VNX 5300 NFSv4 uSeconds per call
graph_vlabel uSec / call
graph_category nfs
graph_category fs
graph_args --base 1000
EOF
for graph in "${graphs[@]}"; do
@ -367,7 +367,7 @@ if [ "$1" = "config" ] ; then
graph_title EMC VNX 5300 NFSv4 Op %
graph_vlabel %
graph_scale no
graph_category nfs
graph_category fs
EOF
for graph in "${graphs[@]}"; do
field=$(echo "$graph" | cut -d '.' -f4 )
@ -386,7 +386,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_nfs_client_ops_s
graph_title EMC VNX 5300 NFS Client Ops/s
graph_vlabel Ops/s
graph_category nfs
graph_category fs
EOF
echo -n "graph_order "
for graph in "${graphs_array[@]}"; do
@ -408,7 +408,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_nfs_client_b_s
graph_title EMC VNX 5300 NFS Client B/s
graph_vlabel B/s
graph_category nfs
graph_category fs
EOF
echo -n "graph_order "
for graph in "${graphs_array[@]}"; do
@ -429,7 +429,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_nfs_client_avg_usec
graph_title EMC VNX 5300 NFS Client Avg uSec/call
graph_vlabel uSec/call
graph_category nfs
graph_category fs
EOF
for graph in "${graphs_array[@]}"; do
field="$(clean_fieldname "_$graph")"
@ -444,7 +444,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_nfs_std_nfs_ops
graph_title EMC VNX 5300 Std NFS Ops/s
graph_vlabel Ops/s
graph_category nfs
graph_category fs
EOF
echo "graph_order ${filtered_server}_rops ${filtered_server}_wops ${filtered_server}_tops"
echo "${filtered_server}_rops.label $server Read Ops/s"
@ -457,7 +457,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_nfs_std_nfs_b_s
graph_title EMC VNX 5300 Std NFS B/s
graph_vlabel B/s
graph_category nfs
graph_category fs
EOF
echo "graph_order ${filtered_server}_rbs ${filtered_server}_wbs ${filtered_server}_tbs"
echo "${filtered_server}_rbs.label $server Read B/s"
@ -471,7 +471,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_nfs_std_nfs_avg
graph_title EMC VNX 5300 Std NFS Average Size Bytes
graph_vlabel Bytes
graph_category nfs
graph_category fs
EOF
echo "${filtered_server}_avg_readsize.label $server Average Read Size Bytes"
echo "${filtered_server}_avg_writesize.label $server Average Write Size Bytes"
@ -481,7 +481,7 @@ if [ "$1" = "config" ] ; then
multigraph vnx_emc_nfs_std_nfs_threads
graph_title EMC VNX 5300 Std NFS Active Threads
graph_vlabel Threads
graph_category nfs
graph_category fs
EOF
echo "${filtered_server}_threads.label $server Active Threads"
fi