module Datadog::Contrib::ActionCable::RootContextEvent

Defines behavior for the first event of a thread execution.

This event is not expected to be nested with other event, but to start a fresh tracing context.

Public Class Methods

included(base) click to toggle source
# File lib/ddtrace/contrib/action_cable/event.rb, line 36
def self.included(base)
  base.send(:include, ActiveSupport::Notifications::Event)
  base.send(:extend, ClassMethods)
end