TPerry
Well-known member
Tracy Perry submitted a new resource:
Use Munin to show your APC stats. - APC stats displayed via Munin
Read more about this resource...
Use Munin to show your APC stats. - APC stats displayed via Munin
I use nginx for my http server, and this configuration is configured for that. Feel free to modify it for apache if that is what you use.
In /etc/munin/plugin-conf.d make a file called php_apc and place
in it.Code:[php_apc_*] user root env.url http://localhost/apc_info.php?auto
Define a localhost for nginx with
Code:server { server_name localhost; include /etc/nginx/php.conf; root /usr/share/nginx/html; allow 127.0.0.1; deny all; location / {...
Read more about this resource...