Module: MemoryProfiler::TopN
- Included in:
- StatHash
- Defined in:
- lib/memory_profiler/top_n.rb
Instance Method Summary collapse
-
#top_n(max, metric_method) ⇒ Object
Fast approach for determining the top_n entries in a Hash of Stat objects.
- #top_n_memory(max, metric_method) ⇒ Object
- #top_n_objects(max, metric_method) ⇒ Object
Instance Method Details
#top_n(max, metric_method) ⇒ Object
Fast approach for determining the top_n entries in a Hash of Stat objects. Returns results for both memory (memsize summed) and objects allocated (count) as a tuple.
7 8 9 10 11 12 |
# File 'lib/memory_profiler/top_n.rb', line 7 def top_n(max, metric_method) [ top_n_memory(max, metric_method), top_n_objects(max, metric_method) ] end |
#top_n_memory(max, metric_method) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/memory_profiler/top_n.rb', line 14 def top_n_memory(max, metric_method) metric_memsize = Hash.new(0) each_value do |value| metric = value.send(metric_method) metric_memsize[metric] += value.memsize end metric_memsize .to_a .sort_by! { |metric, memsize| [-memsize, metric] } .take(max) .map! { |metric, memsize| { data: metric, count: memsize } } end |
#top_n_objects(max, metric_method) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/memory_profiler/top_n.rb', line 29 def top_n_objects(max, metric_method) metric_objects_count = Hash.new(0) each_value do |value| metric = value.send(metric_method) metric_objects_count[metric] += 1 end metric_objects_count .to_a .sort_by! { |metric, count| [-count, metric] } .take(max) .map! { |metric, count| { data: metric, count: count } } end |