The Mod_Status module permits a server administrator to expose how well the apache server is performing. A HTML page is offered that gives the current server statistics.
So to enable server status in apache uncomment the following lines.
<Location /server-status>
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from .example.com
</Location>
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from .example.com
</Location>
Restart Apache service.
#service httpd restart
Then verify it working or not.
#elinks http://localhost/server-status