Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

What's the best tool for generating server stats reports and a live monitoring? It feels like Webalizer got a bit behind.

Thanks!

share|improve this question

1 Answer

up vote 3 down vote accepted

Why not using the module that comes with apache, it has lots of information (pages being accessed, memory being used per process and so forth) and is pretty usefull.

Make sure you have mod_status.so loaded within your apache modules then look for/add the above to your httpd.conf:

# Uncomment the following lines to enable mod_status support:
#
ExtendedStatus On

<Location /server-status>
SetHandler server-status

Order Deny,Allow
Deny from all
Allow from YOUR_IP_HERE
</Location>

To access it use http://YourServerIp/server-status

share|improve this answer
great thing.. just installed collectd which polls this information, too :) – Henrik P. Aug 25 '10 at 0:26
great :), by the way you should also take a look at mod_backdoor people.apache.org/~trawick it is a nice addition to server-status in case you can't really browse your server on the default port. – Prix Aug 25 '10 at 0:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.