Hi all,
I have configured munin in redhat linux and can view the default processes. Now I was willing to monitor apache and mysql also. Now the problem is munin doesn't display any graph for apache which I tried first.
What I did was just created a symbolic link to apache_processes, apache_volume, apache_accesses in /usr/share/munin/plugins/ directory to /etc/munin/plugins/ in same name like
lrwxrwxrwx 1 root root 29 Mar 18 08:57 apache_processes -> /usr/share/munin/plugins/apache_processes
Only apache processes works. But the other two shows nothing in graph.
I also enabled this directive in httpd.conf in /usr/local/apache/conf/httpd.conf
as below
Code:
<IfModule mod_status.c>
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".example.com" to match your domain to enable.
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from all
</Location>
</IfModule>
Any idea on the issue.