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

Version Path
ddtrace-0.51.1 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.51.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.50.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.49.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.48.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.47.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.46.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.45.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.44.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.43.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.42.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.41.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ls-trace-0.2.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.40.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.39.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.38.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.37.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.36.0 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.35.2 lib/ddtrace/contrib/action_cable/events/perform_action.rb
ddtrace-0.35.1 lib/ddtrace/contrib/action_cable/events/perform_action.rb