Class: GraphQL::Tracing::NewRelicTracing

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

Instance Method Summary collapse

Methods inherited from PlatformTracing

#trace, use

Constructor Details

#initialize(options = {}) ⇒ NewRelicTracing



22
23
24
25
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 22

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

Instance Method Details

#platform_authorized_key(type) ⇒ Object



44
45
46
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 44

def platform_authorized_key(type)
  "GraphQL/Authorize/#{type.graphql_name}"
end

#platform_field_key(type, field) ⇒ Object



40
41
42
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 40

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

#platform_resolve_type_key(type) ⇒ Object



48
49
50
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 48

def platform_resolve_type_key(type)
  "GraphQL/ResolveType/#{type.graphql_name}"
end

#platform_trace(platform_key, key, data) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 27

def platform_trace(platform_key, key, data)
  if key == "execute_query"
    set_this_txn_name =  data[:query].context[:set_new_relic_transaction_name]
    if set_this_txn_name == true || (set_this_txn_name.nil? && @set_transaction_name)
      NewRelic::Agent.set_transaction_name(transaction_name(data[:query]))
    end
  end

  NewRelic::Agent::MethodTracerHelpers.trace_execution_scoped(platform_key) do
    yield
  end
end