0

是否有类似于 webrick 或 mongrel 的实时 apache/php 控制台,带有 ruby​​ on rails?

我希望能够监控我的服务器在做什么。

编辑:

但我不想grep日志

谢谢!

4

5 回答 5

0

我相信FirePHP可能与您所寻找的有点等价。

简单示例:

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

替代文字
(来源:firephp.org

阅读更多

于 2009-04-11T09:36:47.133 回答
0

您可以在应用程序目录中使用以下命令:

mongrel_rails start -B 

这将在调试模式下启动它,并像 Webrick 一样为您提供所有请求。是的,包括所有那些“看跌”声明。

于 2011-02-23T08:12:57.227 回答
0

总是有 gdb 和 strace/dtrace。还有 xdebug 模块,但它不是实时的。

于 2010-05-04T12:57:35.210 回答
0

There is a really simple way: instead of monitoring the access.log apache2 file or the mongrel one, you can simple tail the production.log file and you will get the exact same behavior of webrick. So a solution is:

tail -f /your/project/path/log/production.log
于 2013-09-16T10:27:21.697 回答
-1

ApacheTop可能无法完全满足您的需求,但以防万一……尽管如此,您可能会发现它很有用 :) 它基本上类似于 UNIX top,但用于 Apache。

于 2009-05-24T01:13:28.307 回答