Archive of UserLand's first discussion group, started October 5, 1998.
Re: tail -f in a web page
Author: Jeffrey Baker Posted: 11/5/1999; 7:33:54 PM Topic: A question for Apache gurus Msg #: 12768 (In response to 12764) Prev/Next: 12767 / 12769
Brent,If you want to see the last n lines of the log, I assume that what you really mean is that you want to see the last n requests. I suggest that, instead of writing a custom program, you use the status module that comes with Apache. It will show you the most recent requests, and also it will tell you what each of your Apache child processes are doing. You can make it automatically refresh at whatever interval you want.
See the documentation at:
http://www.apache.org/docs/mod/mod_status.html
There is a sample mod_status configuration in the httpd.conf file that comes with Apache. Here it is:
# # Allow server status reports, with the URL of http://servername/server-status # Change the ".your_domain.com" to match your domain to enable. # #
# SetHandler server-status # Order deny,allow # Deny from all # Allow from .your_domain.com # Have fun, Jeffrey
There are responses to this message:
- Re: tail -f in a web page, Emmanuel M. Décarie, 11/5/1999; 9:21:32 PM
This page was archived on 6/13/2001; 4:53:22 PM.
© Copyright 1998-2001 UserLand Software, Inc.