Class: Necropsy::Analyzers::Dynamic::TracePointImporter

Inherits:
CoverageImporter show all
Defined in:
lib/necropsy/analyzers/dynamic/trace_point_importer.rb

Instance Method Summary collapse

Methods inherited from CoverageImporter

#analyze, #initialize

Methods inherited from Necropsy::Analyzer

#analyze, #capabilities

Constructor Details

This class inherits a constructor from Necropsy::Analyzers::Dynamic::CoverageImporter

Instance Method Details

#profileObject



7
8
9
10
11
12
13
14
15
16
# File 'lib/necropsy/analyzers/dynamic/trace_point_importer.rb', line 7

def profile
  AnalyzerProfile.new(
    name: :trace_point,
    kind: :dynamic,
    soundness: :observational,
    description: 'Imports method execution and caller-callee edges captured by Necropsy TracePoint recording.',
    version: Necropsy::VERSION,
    assumptions: %w[positive_observations_only tracepoint_call_events]
  )
end