module Datadog::Contrib::ActionCable::Events::PerformAction
Defines instrumentation for 'perform_action.action_cable' event.
An action, triggered by a WebSockets client, invokes a method in the server's channel instance.
Constants
- EVENT_NAME
Public Instance Methods
event_name()
click to toggle source
# File lib/ddtrace/contrib/action_cable/events/perform_action.rb, line 20 def event_name self::EVENT_NAME end
process(span, _event, _id, payload)
click to toggle source
# File lib/ddtrace/contrib/action_cable/events/perform_action.rb, line 33 def process(span, _event, _id, payload) channel_class = payload[:channel_class] action = payload[:action] span.service = configuration[:service_name] span.resource = "#{channel_class}##{action}" 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 # Measure service stats Contrib::Analytics.set_measured(span) span.set_tag(Ext::TAG_CHANNEL_CLASS, channel_class) span.set_tag(Ext::TAG_ACTION, action) end
span_name()
click to toggle source
# File lib/ddtrace/contrib/action_cable/events/perform_action.rb, line 24 def span_name Ext::SPAN_ACTION end
span_type()
click to toggle source
# File lib/ddtrace/contrib/action_cable/events/perform_action.rb, line 28 def span_type # A request to perform_action comes from a WebSocket connection Datadog::Ext::AppTypes::WEB end