Class: GraphQL::Tracing::AppsignalTracing

Inherits:
PlatformTracing show all
Defined in:
lib/graphql/tracing/appsignal_tracing.rb

Instance Method Summary collapse

Methods inherited from PlatformTracing

#trace, use

Constructor Details

#initialize(options = {}) ⇒ AppsignalTracing

Returns a new instance of AppsignalTracing.

Parameters:

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



20
21
22
23
# File 'lib/graphql/tracing/appsignal_tracing.rb', line 20

def initialize(options = {})
  @set_action_name = options.fetch(:set_action_name, false)
  super
end

Instance Method Details

#platform_authorized_key(type) ⇒ Object



42
43
44
# File 'lib/graphql/tracing/appsignal_tracing.rb', line 42

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

#platform_field_key(type, field) ⇒ Object



38
39
40
# File 'lib/graphql/tracing/appsignal_tracing.rb', line 38

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

#platform_resolve_type_key(type) ⇒ Object



46
47
48
# File 'lib/graphql/tracing/appsignal_tracing.rb', line 46

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

#platform_trace(platform_key, key, data) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/graphql/tracing/appsignal_tracing.rb', line 25

def platform_trace(platform_key, key, data)
  if key == "execute_query"
    set_this_txn_name =  data[:query].context[:set_appsignal_action_name]
    if set_this_txn_name == true || (set_this_txn_name.nil? && @set_action_name)
      Appsignal::Transaction.current.set_action(transaction_name(data[:query]))
    end
  end

  Appsignal.instrument(platform_key) do
    yield
  end
end