Class: GraphQL::Tracing::ScoutTracing
- Inherits:
 - 
      PlatformTracing
      
        
- Object
 - PlatformTracing
 - GraphQL::Tracing::ScoutTracing
 
 
- Defined in:
 - lib/graphql/tracing/scout_tracing.rb
 
Constant Summary collapse
- INSTRUMENT_OPTS =
 { scope: true }
Instance Method Summary collapse
- 
  
    
      #initialize(options = {})  ⇒ ScoutTracing 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ScoutTracing.
 - 
  
    
      #platform_authorized_key(type)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
 - 
  
    
      #platform_field_key(type, field)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
 - 
  
    
      #platform_resolve_type_key(type)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
 - 
  
    
      #platform_trace(platform_key, key, data)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
 
Methods inherited from PlatformTracing
Constructor Details
#initialize(options = {}) ⇒ ScoutTracing
Returns a new instance of ScoutTracing.
      22 23 24 25 26  | 
    
      # File 'lib/graphql/tracing/scout_tracing.rb', line 22 def initialize( = {}) self.class.include ScoutApm::Tracer @set_transaction_name = .fetch(:set_transaction_name, false) super() end  | 
  
Instance Method Details
#platform_authorized_key(type) ⇒ Object
      45 46 47  | 
    
      # File 'lib/graphql/tracing/scout_tracing.rb', line 45 def (type) "#{type.graphql_name}.authorized" end  | 
  
#platform_field_key(type, field) ⇒ Object
      41 42 43  | 
    
      # File 'lib/graphql/tracing/scout_tracing.rb', line 41 def platform_field_key(type, field) "#{type.graphql_name}.#{field.graphql_name}" end  | 
  
#platform_resolve_type_key(type) ⇒ Object
      49 50 51  | 
    
      # File 'lib/graphql/tracing/scout_tracing.rb', line 49 def platform_resolve_type_key(type) "#{type.graphql_name}.resolve_type" end  | 
  
#platform_trace(platform_key, key, data) ⇒ Object
      28 29 30 31 32 33 34 35 36 37 38 39  | 
    
      # File 'lib/graphql/tracing/scout_tracing.rb', line 28 def platform_trace(platform_key, key, data) if key == "execute_query" set_this_txn_name = data[:query].context[:set_scout_transaction_name] if set_this_txn_name == true || (set_this_txn_name.nil? && @set_transaction_name) ScoutApm::Transaction.rename(transaction_name(data[:query])) end end self.class.instrument("GraphQL", platform_key, INSTRUMENT_OPTS) do yield end end  |