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

This commit is contained in:
dipohl 2017-02-22 04:48:52 +01:00
parent 84c28707eb
commit c4b2d9a8e3
22 changed files with 377 additions and 377 deletions

View file

@ -64,7 +64,7 @@ if ($ARGV[0] && $ARGV[0] eq "autoconf") {
print "graph_title HTTP response time\n";
}
print "graph_vlabel ms\n";
print "graph_category HTTP\n";
print "graph_category webserver\n";
print "graph_info This graph shows the response time in milliseconds, to load a web page\n";
print "timespent.label timespent\n";
print "timespent.type GAUGE\n";

View file

@ -92,7 +92,7 @@ if ($ARGV[0] && $ARGV[0] eq "autoconf") {
}
print "graph_scale no\n";
print "graph_vlabel ms\n";
print "graph_category HTTP\n";
print "graph_category webserver\n";
print "graph_info This graph shows the response time in milliseconds, to load a web page\n";
for ($i=0; $i <= $max_index; ++$i) {
$vhost = $url_array[$i];

View file

@ -64,7 +64,7 @@ file_name=`basename $0 | sed 's/^vhost_requests_//g'`
case $1 in
config)
echo graph_category http
echo graph_category webserver
echo graph_title Requests by Status Code $file_name
echo graph_vlabel Nr of Requests
echo S200.label 200 OK

View file

@ -143,7 +143,7 @@ if [ "${1}" = "config" ]; then
echo "graph_args --base 1000 -l 0"
echo "graph_scale no"
echo "graph_vlabel Load time in seconds"
echo "graph_category http"
echo "graph_category webserver"
echo "graph_info This graph shows load time in seconds of one or more urls"
I=1
for name in ${names}; do