Munin apache plugin bad response

apache-2.2munin

All my apache plugins returns the same value :


/usr/share/munin/plugins# munin-run apache_volume
volume443.value U

Here is my config in /etc/munin/plugin-conf.d/munin-node


[apache_*]
env.ports 443

Some have an idea where is the problem ?

Thanks in advance

Best Answer

I found the solution.

The apache scripts are not compatible with ssl. You have to use modified version on :
http://munin-monitoring.org/attachment/wiki/PluginCat/apache_volume
http://munin-monitoring.org/attachment/wiki/PluginCat/apache_accesses
http://munin-monitoring.org/attachment/wiki/PluginCat/apachessl_processes

Be sure to have the perl libraries LWP::UserAgent and Crypt::SSLeay installed

Modify also /etc/munin/plugin-conf.d/munin-node :
[apache_*]
env.ports 443
env.url https://localhost:443/server-status?auto

It works fine after that ;-)