Class: Datadog::Tracing::Tracer::TraceCompleted
- Defined in:
- lib/datadog/tracing/tracer.rb
Overview
Triggered whenever a trace is completed
Instance Attribute Summary
Attributes inherited from Event
Instance Method Summary collapse
-
#initialize ⇒ TraceCompleted
constructor
A new instance of TraceCompleted.
-
#publish(trace) ⇒ Object
NOTE: Ignore Rubocop rule.
Methods inherited from Event
Constructor Details
#initialize ⇒ TraceCompleted
Returns a new instance of TraceCompleted.
284 285 286 |
# File 'lib/datadog/tracing/tracer.rb', line 284 def initialize super(:trace_completed) end |
Instance Method Details
#publish(trace) ⇒ Object
NOTE: Ignore Rubocop rule. This definition allows for
description of and constraints on arguments.
rubocop:disable Lint/UselessMethodDefinition
291 292 293 |
# File 'lib/datadog/tracing/tracer.rb', line 291 def publish(trace) super(trace) end |