Create config to allow apache to show status:
cat > /etc/httpd/conf.d/status.conf <<EOT
# Enable apache to show status page
ExtendedStatus on
<IfModule mod_status.c>
<Location /mod_status>
SetHandler server-status
Order deny,allow
Deny from all
# allow from office net:
#Allow from a.b.c.d
</Location>
</IfModule>
EOT
Add to collectd.conf:
LoadPlugin apache
<Plugin "apache">
<Instance "apache80">
URL "http://localhost/mod_status?auto"
</Instance>
</Plugin>