Comment 1 for bug 231706

Revision history for this message
Jurrit (jurrit) wrote : Re: munin apache plugin no data

Dit you try this:
cd /etc/munin/plugins/
munin-run apache_accesses auto

and

w3m http://127.0.0.1/server-status?auto

You probably need something like this in your apache2.conf:
<IfModule mod_status.c>
    ExtendedStatus On
    <Location /server-status>
        SetHandler server-status
        Order deny,allow
        Deny from all
        Allow from 127.0.0.1
    </Location>
</IfModule>