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:
parent
83b66f5af4
commit
0304d8076a
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ module ActiveSupport
|
||||||
else
|
else
|
||||||
{ :min_percent => 0.01,
|
{ :min_percent => 0.01,
|
||||||
:metrics => [:process_time, :memory, :objects],
|
:metrics => [:process_time, :memory, :objects],
|
||||||
:formats => [:flat, :graph_html, :call_tree] }
|
:formats => [:flat, :graph_html, :call_tree, :call_stack] }
|
||||||
end).freeze
|
end).freeze
|
||||||
|
|
||||||
protected
|
protected
|
||||||
|
|
|
@ -340,7 +340,7 @@ Metrics and formats have different defaults depending on the interpreter in use.
|
||||||
|
|
||||||
|_.Interpreter|_.Mode|_.Default metrics|_.Default formats|
|
|_.Interpreter|_.Mode|_.Default metrics|_.Default formats|
|
||||||
|/2.MRI/REE |Benchmarking|+[:wall_time, :memory, :objects, :gc_runs, :gc_time]+|N/A|
|
|/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|
|
|/2.Rubinius|Benchmarking|+[:wall_time, :memory, :objects, :gc_runs, :gc_time]+|N/A|
|
||||||
|Profiling |+[:wall_time]+|+[:flat, :graph]+|
|
|Profiling |+[:wall_time]+|+[:flat, :graph]+|
|
||||||
|/2.JRuby |Benchmarking|+[:wall_time, :user_time, :memory, :gc_runs, :gc_time]+|N/A|
|
|/2.JRuby |Benchmarking|+[:wall_time, :user_time, :memory, :gc_runs, :gc_time]+|N/A|
|
||||||
|
|
Loading…
Reference in a new issue