class GraphQL::Tracing::ScoutTracing

Constants

INSTRUMENT_OPTS

Public Class Methods

new(options = {}) click to toggle source

@param set_transaction_name [Boolean] If true, the GraphQL operation name will be used as the transaction name.

This is not advised if you run more than one query per HTTP request, for example, with `graphql-client` or multiplexing.
It can also be specified per-query with `context[:set_scout_transaction_name]`.
Calls superclass method GraphQL::Tracing::PlatformTracing::new
# File lib/graphql/tracing/scout_tracing.rb, line 22
def initialize(options = {})
  self.class.include ScoutApm::Tracer
  @set_transaction_name = options.fetch(:set_transaction_name, false)
  super(options)
end

Public Instance Methods

platform_authorized_key(type) click to toggle source
# File lib/graphql/tracing/scout_tracing.rb, line 45
def platform_authorized_key(type)
  "#{type.graphql_name}.authorized"
end
platform_field_key(type, field) click to toggle source
# File lib/graphql/tracing/scout_tracing.rb, line 41
def platform_field_key(type, field)
  "#{type.graphql_name}.#{field.graphql_name}"
end
platform_resolve_type_key(type) click to toggle source
# File lib/graphql/tracing/scout_tracing.rb, line 49
def platform_resolve_type_key(type)
  "#{type.graphql_name}.resolve_type"
end
platform_trace(platform_key, key, data) { || ... } click to toggle source
# File lib/graphql/tracing/scout_tracing.rb, line 28
def platform_trace(platform_key, key, data)
  if key == "execute_query"
    set_this_txn_name = data[:query].context[:set_scout_transaction_name]
    if set_this_txn_name == true || (set_this_txn_name.nil? && @set_transaction_name)
      ScoutApm::Transaction.rename(transaction_name(data[:query]))
    end
  end

  self.class.instrument("GraphQL", platform_key, INSTRUMENT_OPTS) do
    yield
  end
end