Module: GraphQL::Tracing::ActiveSupportNotificationsTrace

Includes:
NotificationsTrace
Defined in:
lib/graphql/tracing/active_support_notifications_trace.rb

Overview

This implementation forwards events to ActiveSupport::Notifications with a graphql suffix.

Examples:

Sending execution events to ActiveSupport::Notifications

class MySchema < GraphQL::Schema
  trace_with(GraphQL::Tracing::ActiveSupportNotificationsTrace)
end

Subscribing to GraphQL events with ActiveSupport::Notifications

ActiveSupport::Notifications.subscribe(/graphql/) do |event|
  pp event.name
  pp event.payload
end

Constant Summary

Constants included from NotificationsTrace

NotificationsTrace::CURRENT_EV_KEY, NotificationsTrace::PREVIOUS_EV_KEY

Instance Method Summary collapse

Methods included from NotificationsTrace

#begin_analyze_multiplex, #begin_authorized, #begin_dataloader_source, #begin_execute_field, #begin_resolve_type, #dataloader_fiber_resume, #dataloader_fiber_yield, #end_analyze_multiplex, #end_authorized, #end_dataloader_source, #end_execute_field, #end_resolve_type, #execute_multiplex, #lex, #parse, #validate

Instance Method Details

#initialize(engine: ActiveSupport::Notifications, **rest) ⇒ Object



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

def initialize(engine: ActiveSupport::Notifications, **rest)
  super
end