tjstein / php5-fpm-munin-plugins

A set of Munin plugins for PHP5-FPM
http://tjstein.com
MIT License
109 stars 45 forks source link

Please fix graph_order #10

Closed hron84 closed 11 years ago

hron84 commented 11 years ago

Graph order have to contain field names not labels, please fix it.

Patch:

--- a/phpfpm_status
+++ b/phpfpm_status
@@ -45,7 +45,7 @@ if ( defined $ARGV[0] and $ARGV[0] eq "config" )
 graph_args --base 1024 -l 0
 graph_vlabel Connections
 graph_category PHP
-graph_order Idle Active Total
+graph_order idle active total
 graph_info Plugin created by TJ Stein
 idle.label Idle
 idle.draw AREA
hermzz commented 11 years ago

Done in 663cea7

tjstein commented 11 years ago

Many thanks @hermzz!