是否有类似于 webrick 或 mongrel 的实时 apache/php 控制台,带有 ruby on Rails?
是否有类似于 webrick 或 mongrel 的实时 apache/php 控制台,带有 ruby on Rails?
我希望能够监控我的服务器到底在做什么。
编辑:
但我不想 grep 日志
谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
总有 gdb 和 strace/dtrace。 还有 xdebug 模块,但它不是实时的。
There's always gdb and strace/dtrace. There's also the xdebug module but its not real time.
您可以在应用程序目录中使用以下命令:
这将在调试模式下启动它并为您提供所有请求,就像 Webrick 一样。 是的,包括所有那些“看跌”声明。
You can use the following command in your application directory:
This starts it in debug mode and gives you all the requests just like Webrick. Yes, including all those 'puts' statements.
有一种非常简单的方法:您可以简单地跟踪 production.log 文件,而不是监视 access.log apache2 文件或 mongrel 文件,您将获得与 webrick 完全相同的行为。 所以解决办法是:
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:
我相信 FirePHP 可能在某种程度上与您寻找的内容相同。
简单示例:
(来源:firephp.org)
了解更多
I believe FirePHP might be somewhat equivalent to what your looking for.
Simple Example:
(source: firephp.org)
Read More
ApacheTop 可能不会相当做你想做的事,但以防万一..你可能会发现它仍然有用:)它基本上就像UNIX top,但适用于Apache。
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.