Class: TraceViz::Collectors::Steps::LinkingStep
- Defined in:
- lib/trace_viz/collectors/steps/linking_step.rb
Instance Method Summary collapse
Methods inherited from BaseStep
Methods included from Helpers::ConfigHelper
#config, #fetch_general_config
Methods included from Helpers::TrackingHelper
#active_call_stack, #current_call, #current_depth, #tracker
Constructor Details
This class inherits a constructor from TraceViz::Collectors::Steps::BaseStep
Instance Method Details
#call(trace_data) ⇒ Object
10 11 12 13 14 15 |
# File 'lib/trace_viz/collectors/steps/linking_step.rb', line 10 def call(trace_data) valid?(trace_data) ? linking_trace(trace_data) : trace_data rescue StandardError => e logger.error("Linking failed for trace_data ID: #{trace_data.id} - #{e.}") nil end |