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

发布于 2024-07-17 08:04:22 字数 149 浏览 7 评论 0原文

是否有类似于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

追风人 2024-07-24 08:04:22

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

There's always gdb and strace/dtrace. There's also the xdebug module but its not real time.

桃扇骨 2024-07-24 08:04:22

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

mongrel_rails start -B 

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

You can use the following command in your application directory:

mongrel_rails start -B 

This starts it in debug mode and gives you all the requests just like Webrick. Yes, including all those 'puts' statements.

狼性发作 2024-07-24 08:04:22

有一种非常简单的方法:您可以简单地跟踪 production.log 文件,而不是监视 access.log apache2 文件或 mongrel 文件,您将获得与 webrick 完全相同的行为。 所以解决办法是:

tail -f /your/project/path/log/production.log

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
半衾梦 2024-07-24 08:04:22

我相信 FirePHP 可能在某种程度上与您寻找的内容相同。

简单示例:

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

替代文字
(来源:firephp.org

了解更多

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
(source: firephp.org)

Read More

睡美人的小仙女 2024-07-24 08:04:22

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文