Module: GraphQL::Tracing::AppsignalTrace

Includes:
PlatformTrace
Defined in:
lib/graphql/tracing/appsignal_trace.rb

Instance Method Summary collapse

Methods included from PlatformTrace

#platform_authorized_lazy, #platform_execute_field_lazy, #platform_resolve_type_lazy

Instance Method Details

#initialize(set_action_name: false, **rest) ⇒ Object

Parameters:

  • set_action_name (Boolean) (defaults to: false)

    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_appsignal_action_name].



12
13
14
15
# File 'lib/graphql/tracing/appsignal_trace.rb', line 12

def initialize(set_action_name: false, **rest)
  @set_action_name = set_action_name
  super
end

#platform_authorized_key(type) ⇒ Object



57
58
59
# File 'lib/graphql/tracing/appsignal_trace.rb', line 57

def platform_authorized_key(type)
  "#{type.graphql_name}.authorized.graphql"
end

#platform_execute_field(platform_key) ⇒ Object



47
48
49
50
51
# File 'lib/graphql/tracing/appsignal_trace.rb', line 47

def platform_execute_field(platform_key)
  Appsignal.instrument(platform_key) do
    super
  end
end

#platform_field_key(field) ⇒ Object



53
54
55
# File 'lib/graphql/tracing/appsignal_trace.rb', line 53

def platform_field_key(field)
  "#{field.owner.graphql_name}.#{field.graphql_name}.graphql"
end

#platform_resolve_type_key(type) ⇒ Object



61
62
63
# File 'lib/graphql/tracing/appsignal_trace.rb', line 61

def platform_resolve_type_key(type)
  "#{type.graphql_name}.resolve_type.graphql"
end