哪个是最好的图形化 Ruby 分析器?

发布于 2024-12-20 10:40:37 字数 513 浏览 7 评论 0原文

到目前为止,我发现的最佳匹配是从命令行使用 ruby​​-prof 并尝试从那里猜测图形读数。

require 'ruby-prof'

# Profile the code
RubyProf.start
...
[code to profile]
...
result = RubyProf.stop

# Print a flat profile to text
printer = RubyProf::FlatPrinter.new(result)
printer.print(STDOUT)

https://github.com/rdp/ruby-prof

这种方法的主要问题是您必须修改代码才能查看分析结果,并且可读性不太好。

我还尝试过一些 IDE:RubyMine、Aptana 和 Netbeans,但没有人拥有合适的图形界面来分析代码。

有什么推荐吗?

The best match that I have found until now is to use ruby-prof from command line and try to guess the graph reading from there.

require 'ruby-prof'

# Profile the code
RubyProf.start
...
[code to profile]
...
result = RubyProf.stop

# Print a flat profile to text
printer = RubyProf::FlatPrinter.new(result)
printer.print(STDOUT)

https://github.com/rdp/ruby-prof

The main problem with this approach is that you have to modify your code to see the profiling and is not very readable.

Also I have tried if some IDEs: RubyMine, Aptana and Netbeans and no one has a proper graphical interface to profile code.

Any recommendation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

绝情姑娘 2024-12-27 10:40:37

尝试 ruby​​-prof 命令行工具:
http://ruby-prof.rubyforge.org/files/bin/ruby -prof.html

并使用如下所示的内容:

ruby-prof -p graph_html -f filename.html rubycode.rb

Try the ruby-prof command line tool:
http://ruby-prof.rubyforge.org/files/bin/ruby-prof.html

And use something like following:

ruby-prof -p graph_html -f filename.html rubycode.rb
云柯 2024-12-27 10:40:37

查看迷你分析器:http://railscasts.com/episodes/368-miniprofiler

文档可以在这里找到:https://github.com/SamSaffron/MiniProfiler/tree/master/Ruby

查看特殊参数:pp=flamegraph - 分析起来非常简单。对于 ruby​​ 2.0,它甚至可以在生产环境中使用!

Checkout mini-profiler: http://railscasts.com/episodes/368-miniprofiler

Documentation can be found here: https://github.com/SamSaffron/MiniProfiler/tree/master/Ruby

Checkout special parameter: pp=flamegraph - it's amazingly easy to profile. For ruby 2.0 it works even on production!

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