Class: GraphQL::Tracing::NewRelicTracing
- Inherits:
-
PlatformTracing
- Object
- PlatformTracing
- GraphQL::Tracing::NewRelicTracing
- Defined in:
- lib/graphql/tracing/new_relic_tracing.rb
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ NewRelicTracing
constructor
A new instance of NewRelicTracing.
-
#platform_field_key(type, field) ⇒ Object
-
#platform_trace(platform_key, key, data) ⇒ Object
Methods inherited from PlatformTracing
#instrument, #trace, #trace_field, use
Constructor Details
#initialize(options = {}) ⇒ NewRelicTracing
Returns a new instance of NewRelicTracing
20 21 22 23 |
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 20 def initialize( = {}) @set_transaction_name = .fetch(:set_transaction_name, false) super end |
Instance Method Details
#platform_field_key(type, field) ⇒ Object
49 50 51 |
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 49 def platform_field_key(type, field) "GraphQL/#{type.graphql_name}/#{field.graphql_name}" end |
#platform_trace(platform_key, key, data) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/graphql/tracing/new_relic_tracing.rb', line 25 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 |