Perform the following steps in the Apache configuration file to enable and configure the status module and get the performance metrics:
1. Enable the mod_status:
/etc/apache2/httpd.conf (Ubuntu, Debian, openSUSE)
/etc/apache2/apache2.conf (Ubuntu, Debian, openSUSE)
/etc/httpd/httpd.conf (Red Hat)
/etc/httpd/conf/httpd.conf (CentOS, Fedora)
#LoadModule status_module modules/mod_status.so
LoadModule status_module modules/mod_status.so
2. Configure the mod_status:
# 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 .example.com
#</location>
<Location /server-status>
SetHandler server-status
Order allow,deny
Deny from all
Allow from all
</Location>

Notes:
…
<Location /server-status>
SetHandler server-status
Order allow,deny
Deny from all
Allow from example.com
</Location>
…
</VirtualHost>
3. Enable Extended-Status:
#ExtendedStatus On
ExtendedStatus On
4. Service restart:
5. Access Apache stats page:
