Sha256: 456d2dee8bc3b5a96dfd2ccc2eb8aa85c6ef1bb359973cd41a798a4508356f99
Contents?: true
Size: 1.56 KB
Versions: 24
Compression:
Stored size: 1.56 KB
Contents
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
24 entries across 24 versions & 2 rubygems