module Skylight::Core::Probes::GraphQL::Instrumentation

Public Class Methods

new(*, **) click to toggle source
Calls superclass method
# File lib/skylight/core/probes/graphql.rb, line 7
def initialize(*, **)
  super

  return unless defined?(@tracers)

  unless @tracers.include?(::GraphQL::Tracing::ActiveSupportNotificationsTracing)
    @tracers << ::GraphQL::Tracing::ActiveSupportNotificationsTracing
  end
end