Sha256: f6a69f555286c1145ab1ad5ebea1b12cf714589aca48608baa5db28dd7413ffd
Contents?: true
Size: 1.57 KB
Versions: 5
Compression:
Stored size: 1.57 KB
Contents
# typed: false require 'ddtrace/contrib/analytics' require 'ddtrace/contrib/action_cable/event' module Datadog module Contrib module ActionCable module Events # Defines instrumentation for 'perform_action.action_cable' event. # # An action, triggered by a WebSockets client, invokes a method # in the server's channel instance. module PerformAction include ActionCable::RootContextEvent EVENT_NAME = 'perform_action.action_cable'.freeze module_function def event_name self::EVENT_NAME end def span_name Ext::SPAN_ACTION end def span_type # A request to perform_action comes from a WebSocket connection Datadog::Ext::AppTypes::WEB end 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 end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems