Class: TraceViz::Collectors::TracePointCollector

Inherits:
BaseCollector show all
Defined in:
lib/trace_viz/collectors/trace_point_collector.rb

Instance Attribute Summary

Attributes inherited from BaseCollector

#collection, #hierarchy, #renderer, #stats

Instance Method Summary collapse

Methods inherited from BaseCollector

#clear, #collect

Methods included from Helpers::TrackingHelper

#active_call_stack, #current_call, #current_depth, #tracker

Methods included from Helpers::ConfigHelper

#config, #fetch_general_config

Constructor Details

#initializeTracePointCollector

Returns a new instance of TracePointCollector.



11
12
13
14
15
16
# File 'lib/trace_viz/collectors/trace_point_collector.rb', line 11

def initialize
  super()

  @action_matcher = Matchers::TracePointActionMatcher.new
  @within_depth_matcher = Matchers::WithinDepthMatcher.new
end