Sha256: 59a68b61cddf8233a93ba4de755f27f08fad3ebf4eaacb1c0ac144f5015a407a
Contents?: true
Size: 1.93 KB
Versions: 12
Compression:
Stored size: 1.93 KB
Contents
# frozen_string_literal: true module GraphQL module Tracing class NewRelicTracing < PlatformTracing self.platform_keys = { "lex" => "GraphQL/lex", "parse" => "GraphQL/parse", "validate" => "GraphQL/validate", "analyze_query" => "GraphQL/analyze", "analyze_multiplex" => "GraphQL/analyze", "execute_multiplex" => "GraphQL/execute", "execute_query" => "GraphQL/execute", "execute_query_lazy" => "GraphQL/execute", } # @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_new_relic_transaction_name]`. def initialize(set_transaction_name: false) @set_transaction_name = set_transaction_name super end 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) query = data[:query] # Set the transaction name based on the operation type and name selected_op = query.selected_operation if selected_op op_type = selected_op.operation_type op_name = selected_op.name || "anonymous" else op_type = "query" op_name = "anonymous" end NewRelic::Agent.set_transaction_name("GraphQL/#{op_type}.#{op_name}") end end NewRelic::Agent::MethodTracerHelpers.trace_execution_scoped(platform_key) do yield end end def platform_field_key(type, field) "GraphQL/#{type.name}/#{field.name}" end end end end
Version data entries
12 entries across 12 versions & 1 rubygems