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

Plugin-Gallery: move to more specific categories

This commit is contained in:
dipohl 2017-02-24 16:13:05 +01:00
parent f769371079
commit 37d658526b
8 changed files with 16 additions and 16 deletions

View file

@ -50,7 +50,7 @@ graph_title HDD power state
graph_vlabel Power state graph_vlabel Power state
graph_args --upper-limit 1 -l 0 graph_args --upper-limit 1 -l 0
graph_scale no graph_scale no
graph_category disk graph_category sensors
graph_info The power state of the hard disk drives on the system (1 is spun up, 0 is idle/standby). graph_info The power state of the hard disk drives on the system (1 is spun up, 0 is idle/standby).
EOM EOM
echo $DEVICES | awk 'BEGIN{OFS=""} { for (i = 0; i++ < NF;) print "power", i, ".label ", $i }' echo $DEVICES | awk 'BEGIN{OFS=""} { for (i = 0; i++ < NF;) print "power", i, ".label ", $i }'

View file

@ -73,7 +73,7 @@ if (defined $ARGV[0] and $ARGV[0] eq "config")
print "graph_title Memory usage print "graph_title Memory usage
graph_args --base 1000 -l 0 graph_args --base 1000 -l 0
graph_vlabel kB graph_vlabel kB
graph_category system graph_category memory
graph_info This graph shows total and used memory on the host. graph_info This graph shows total and used memory on the host.
memsize.label total memsize.label total
memused.label used memused.label used

View file

@ -140,7 +140,7 @@ if ($ARGV[0] and $ARGV[0] eq "config")
print "graph_title CPU Usage on $host\n"; print "graph_title CPU Usage on $host\n";
print "graph_args --base 1000 --lower-limit 0\n"; print "graph_args --base 1000 --lower-limit 0\n";
print "graph_vlabel Percentage on one minute\n"; print "graph_vlabel Percentage on one minute\n";
print "graph_category system\n"; print "graph_category cpu\n";
print "graph_info This graph shows the CPU usage on one minute\n"; print "graph_info This graph shows the CPU usage on one minute\n";
my $firstCounter = 1; my $firstCounter = 1;

View file

@ -114,7 +114,7 @@ config()
echo "multigraph fn_cpu" echo "multigraph fn_cpu"
echo "host_name $SNMPCLIENT" echo "host_name $SNMPCLIENT"
echo "graph_title $UNIT - CPU usage" echo "graph_title $UNIT - CPU usage"
echo 'graph_category system' echo 'graph_category fw'
echo 'graph_vlabel %' echo 'graph_vlabel %'
echo 'graph_info This graph shows current CPU usage.' echo 'graph_info This graph shows current CPU usage.'
echo 'graph_args --base 1000 -r --lower-limit 0 --upper-limit 100' echo 'graph_args --base 1000 -r --lower-limit 0 --upper-limit 100'
@ -125,7 +125,7 @@ config()
echo "multigraph fn_memory" echo "multigraph fn_memory"
echo "host_name $SNMPCLIENT" echo "host_name $SNMPCLIENT"
echo "graph_title $UNIT - Memory usage" echo "graph_title $UNIT - Memory usage"
echo 'graph_category system' echo 'graph_category fw'
echo 'graph_vlabel %' echo 'graph_vlabel %'
echo 'graph_info This graph shows current memory usage.' echo 'graph_info This graph shows current memory usage.'
echo 'graph_args --base 1000 -r --lower-limit 0 --upper-limit 100' echo 'graph_args --base 1000 -r --lower-limit 0 --upper-limit 100'
@ -136,7 +136,7 @@ config()
echo "multigraph fn_sessions" echo "multigraph fn_sessions"
echo "host_name $SNMPCLIENT" echo "host_name $SNMPCLIENT"
echo "graph_title $UNIT - Sessions" echo "graph_title $UNIT - Sessions"
echo 'graph_category Other' echo 'graph_category fw'
echo 'graph_vlabel Active Sessions' echo 'graph_vlabel Active Sessions'
echo 'graph_info Active session count on the Fortigate firewall' echo 'graph_info Active session count on the Fortigate firewall'
echo 'fortisessions.label Sessions' echo 'fortisessions.label Sessions'
@ -146,7 +146,7 @@ config()
echo "multigraph fn_vpnsessions" echo "multigraph fn_vpnsessions"
echo "host_name $SNMPCLIENT" echo "host_name $SNMPCLIENT"
echo "graph_title $UNIT - SSLvpn Sessions" echo "graph_title $UNIT - SSLvpn Sessions"
echo 'graph_category Other' echo 'graph_category fw'
echo 'graph_vlabel Sessions/Users' echo 'graph_vlabel Sessions/Users'
echo 'graph_info Loged in users with SSLvpn (WebSession or Tunnel-Mode)' echo 'graph_info Loged in users with SSLvpn (WebSession or Tunnel-Mode)'
echo 'fortiuser.label Users' echo 'fortiuser.label Users'

View file

@ -52,7 +52,7 @@ if [ "$1" = "config" ]; then
echo ' echo '
graph_args --base 1024 -l 0 --vertical-label Bytes graph_args --base 1024 -l 0 --vertical-label Bytes
graph_title Memory usage graph_title Memory usage
graph_category system graph_category memory
graph_info This graph shows system memory use. graph_info This graph shows system memory use.
graph_order kernel anon exec cacheused zfs cachefree free graph_order kernel anon exec cacheused zfs cachefree free

View file

@ -121,7 +121,7 @@ host_name {hostname}
graph_title HDD temperatures on {hostname} graph_title HDD temperatures on {hostname}
graph_vlabel Temperature in °C graph_vlabel Temperature in °C
graph_args --base 1000 graph_args --base 1000
graph_category system graph_category sensors
graph_info HDD temperatures on {hostname}""".format(hostname=self.hostname) graph_info HDD temperatures on {hostname}""".format(hostname=self.hostname)
for id, name, model, temp in self._get_disks(): for id, name, model, temp in self._get_disks():
@ -136,7 +136,7 @@ host_name {hostname}
graph_title System temperatures of {hostname} graph_title System temperatures of {hostname}
graph_vlabel Temperature in °C graph_vlabel Temperature in °C
graph_args --base 1000 graph_args --base 1000
graph_category system graph_category sensors
graph_info System temperature of {hostname} graph_info System temperature of {hostname}
sys_temp.info System temperature sys_temp.info System temperature
sys_temp.label Temperature sys_temp.label Temperature

View file

@ -32,7 +32,7 @@ if [ "$1" = "config" ]; then
echo 'graph_args --base 1000 -l 0' echo 'graph_args --base 1000 -l 0'
echo 'graph_vlabel speed' echo 'graph_vlabel speed'
echo 'graph_scale no' echo 'graph_scale no'
echo 'graph_category system' echo 'graph_category sensors'
echo 'graph_info This graph shows the speed of the system fan.' echo 'graph_info This graph shows the speed of the system fan.'
echo 'fan.label speed' echo 'fan.label speed'
echo 'fan.info The current speed of the system fan.' echo 'fan.info The current speed of the system fan.'

View file

@ -217,7 +217,7 @@ if (defined $ARGV[0] and $ARGV[0] eq "config") {
print "graph_title Inlet $socketnumber voltage/frequency\n"; print "graph_title Inlet $socketnumber voltage/frequency\n";
print "graph_args --base 1000 -l 0\n"; print "graph_args --base 1000 -l 0\n";
print "graph_category system\n"; print "graph_category sensors\n";
print "graph_info This graph shows the tension and frequency to inlet $socketnumber on the Power Distribution Unit\n"; print "graph_info This graph shows the tension and frequency to inlet $socketnumber on the Power Distribution Unit\n";
print "voltage.label Tension (V)\n"; print "voltage.label Tension (V)\n";
@ -233,7 +233,7 @@ if (defined $ARGV[0] and $ARGV[0] eq "config") {
print "graph_title Inlet $socketnumber current\n"; print "graph_title Inlet $socketnumber current\n";
print "graph_args --base 1000 -l 0\n"; print "graph_args --base 1000 -l 0\n";
print "graph_category system\n"; print "graph_category sensors\n";
print "graph_info This graph shows the delivered current to inlet $socketnumber on the Power Distribution Unit\n"; print "graph_info This graph shows the delivered current to inlet $socketnumber on the Power Distribution Unit\n";
print "current.label Current (A)\n"; print "current.label Current (A)\n";
@ -245,7 +245,7 @@ if (defined $ARGV[0] and $ARGV[0] eq "config") {
print "graph_title Inlet $socketnumber power\n"; print "graph_title Inlet $socketnumber power\n";
print "graph_args --base 1000 -l 0\n"; print "graph_args --base 1000 -l 0\n";
print "graph_category system\n"; print "graph_category sensors\n";
print "graph_info This graph shows the delivered apparent and real power to inlet $socketnumber of the Power Distribution Unit\n"; print "graph_info This graph shows the delivered apparent and real power to inlet $socketnumber of the Power Distribution Unit\n";
print "apparentpower.label Apparent power (kVA)\n"; print "apparentpower.label Apparent power (kVA)\n";
@ -262,7 +262,7 @@ if (defined $ARGV[0] and $ARGV[0] eq "config") {
print "graph_title Outlet $socketnumber current\n"; print "graph_title Outlet $socketnumber current\n";
print "graph_args --base 1000 -l 0\n"; print "graph_args --base 1000 -l 0\n";
print "graph_category system\n"; print "graph_category sensors\n";
print "graph_info This graph shows the delivered current to outlet $socketnumber of the Power Distribution Unit\n"; print "graph_info This graph shows the delivered current to outlet $socketnumber of the Power Distribution Unit\n";
print "current.label Delivered current (A)\n"; print "current.label Delivered current (A)\n";
@ -273,7 +273,7 @@ if (defined $ARGV[0] and $ARGV[0] eq "config") {
print "graph_title Outlet $socketnumber power\n"; print "graph_title Outlet $socketnumber power\n";
print "graph_args --base 1000 -l 0\n"; print "graph_args --base 1000 -l 0\n";
print "graph_category system\n"; print "graph_category sensors\n";
print "graph_info This graph shows the delivered apparent and real power to outlet $socketnumber of the Power Distribution Unit\n"; print "graph_info This graph shows the delivered apparent and real power to outlet $socketnumber of the Power Distribution Unit\n";
print "apparentpower.label Apparent power (kVA)\n"; print "apparentpower.label Apparent power (kVA)\n";