Module: Datadog::Contrib::ActionCable::Events::Transmit
- Includes:
- Datadog::Contrib::ActionCable::Event
- Defined in:
- lib/ddtrace/contrib/action_cable/events/transmit.rb
Overview
Defines instrumentation for 'transmit.action_cable' event.
A 'transmit' event sends a message to a single client subscribed to a channel.
Constant Summary collapse
- EVENT_NAME =
'transmit.action_cable'.freeze
Class Method Summary collapse
- .event_name ⇒ Object
- .process(span, _event, _id, payload) ⇒ Object
- .span_name ⇒ Object
- .span_type ⇒ Object
Methods included from Datadog::Contrib::ActionCable::Event
Class Method Details
.event_name ⇒ Object
19 20 21 |
# File 'lib/ddtrace/contrib/action_cable/events/transmit.rb', line 19 def event_name self::EVENT_NAME end |
.process(span, _event, _id, payload) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/ddtrace/contrib/action_cable/events/transmit.rb', line 32 def process(span, _event, _id, payload) channel_class = payload[:channel_class] span.service = configuration[:service_name] span.resource = channel_class span.span_type = span_type # Set analytics sample rate if Contrib::Analytics.enabled?(configuration[:analytics_enabled]) Contrib::Analytics.set_sample_rate(span, configuration[:analytics_sample_rate]) end span.set_tag(Ext::TAG_CHANNEL_CLASS, channel_class) span.set_tag(Ext::TAG_TRANSMIT_VIA, payload[:via]) end |
.span_name ⇒ Object
23 24 25 |
# File 'lib/ddtrace/contrib/action_cable/events/transmit.rb', line 23 def span_name Ext::SPAN_TRANSMIT end |