1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

ruby-prof's awesome call stack printer is now used by default

This commit is contained in:
Gonçalo Silva 2011-05-10 02:49:32 +01:00
parent 83b66f5af4
commit 0304d8076a
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ module ActiveSupport
else
{ :min_percent => 0.01,
:metrics => [:process_time, :memory, :objects],
:formats => [:flat, :graph_html, :call_tree] }
:formats => [:flat, :graph_html, :call_tree, :call_stack] }
end).freeze
protected

View file

@ -340,7 +340,7 @@ Metrics and formats have different defaults depending on the interpreter in use.
|_.Interpreter|_.Mode|_.Default metrics|_.Default formats|
|/2.MRI/REE |Benchmarking|+[:wall_time, :memory, :objects, :gc_runs, :gc_time]+|N/A|
|Profiling |+[:process_time, :memory, :objects]+|+[:flat, :graph_html, :call_tree]+|
|Profiling |+[:process_time, :memory, :objects]+|+[:flat, :graph_html, :call_tree, :call_stack]+|
|/2.Rubinius|Benchmarking|+[:wall_time, :memory, :objects, :gc_runs, :gc_time]+|N/A|
|Profiling |+[:wall_time]+|+[:flat, :graph]+|
|/2.JRuby |Benchmarking|+[:wall_time, :user_time, :memory, :gc_runs, :gc_time]+|N/A|