vote up 0 vote down star

Is there a realtime apache/php console similar to webrick or mongrel with ruby on rails?

I want to be able to monitor what the heck my server is doing.

edit:

but I don't want to grep the log

Thanks!

flag

78% accept rate
What information are you looking for that tail -f /path/to/access.log doesn't provide you with? – ceejayoz Apr 11 at 4:37
probably the same, but in an automatic way. would i have to periodically have to run tail manually? with RoR/webrick/mongrel you get realtime feedback as events occur. I'm running a long php script and I don't want to wait for it to finish to see what it's up to and I dont want to re-run tail myself – ThomasGHenry Apr 11 at 4:53
tail -f is real time – Itay Moav Apr 11 at 5:29
hm... it's not exactly real time. it waits for a script to finish running which leaves me where i started. it's cool to know though, thx. im looking for something i can use to follow outgoing connections not just incoming ones. also in RoR you can "puts <string>" to print to the console immediately. – ThomasGHenry Apr 11 at 5:46
i mean tail -f appears to be real time, but apache isn't writing to the log until it's done with whatever it's doing. i want to see the intermediate steps – ThomasGHenry Apr 11 at 5:47
show 4 more comments

2 Answers

vote up 0 vote down

I believe FirePHP might be somewhat equivalent to what your looking for.

Simple Example:

 <?php
 FB::log('Log message');
 FB::info('Info message');
 FB::warn('Warn message');
 FB::error('Error message');
 ?>

alt text

Read More

link|flag
Will have the same problem as with tail -f, Unless you flush after each FB:: call (which then can be disastrous for your headers)+add the time between request and response. – Itay Moav Apr 11 at 13:07
vote up 0 vote down

ApacheTop may not quite do what you want, but just in case.. and you might find it useful nonetheless :) It's basically like UNIX top but for Apache.

link|flag

Your Answer

Get an OpenID
or

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