The Apache http webserver template allows you to monitor your local Cacti server's Apache server for performance KPI's
This template leverages the mod_status module in apache in order to pull the kpi data to feed into the script
For Centos/Redhat implementations the config will look as follows
Place the below config in /etc/httpd/conf/httpd.conf
LoadModule status_module modules/mod_status.so
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Require local
</Location>
For Debian
a2enmod status
Place the below config in /etc/apache2/sites-enabled
LoadModule status_module modules/mod_status.so
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Require local
</Location