Class: RailsSpotlight::AppNotifications

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_spotlight/app_notifications.rb

Constant Summary collapse

CACHE_KEY_COLUMNS =

these are the specific keys in the cache payload that we display in the panel view

%i[key hit options type].freeze
CACHE_BLOCK =

define this here so we can pass it in to all of our cache subscribe calls

proc { |*args|
  name, start, ending, transaction_id, payload = args

  # from http://edgeguides.rubyonrails.org/active_support_instrumentation.html#cache-fetch-hit-active-support
  #
  # :super_operation  :fetch is added when a read is used with #fetch
  #
  # so if :super_operation is present, we'll use it for the type. otherwise
  # strip (say) 'cache_delete.active_support' down to 'delete'
  payload[:type] = payload.delete(:super_operation) || name.sub(/cache_(.*?)\..*$/, '\1')

  # anything that isn't in CACHE_KEY_COLUMNS gets shoved into :options
  # instead
  payload[:options] = {}
  payload.each_key do |k|
    payload[:options][k] = payload.delete(k) unless k.in? CACHE_KEY_COLUMNS
  end

  callsite = ::RailsSpotlight::Utils.dev_callsite(caller)
  payload.merge!(callsite) if callsite

  Event.new(name, start, ending, transaction_id, payload)
}
VIEW_LOCALS_BLOCK =
proc { |*args|
  name, start, ending, transaction_id, payload = args
  Event.new(name, start, ending, transaction_id, payload)
}
SQL_EVENT_NAME =

HACK: we hardcode the event name to ‘sql.active_record’ so that the ui will display sequel events without modification. otherwise the ui would need to be modified to support a sequel tab (or to change the display name on the active_record tab when necessary - which maybe makes more sense?)

'sql.active_record'
SQL_BLOCK =
proc { |*args|
  _name, start, ending, transaction_id, payload = args
  callsite = ::RailsSpotlight::Utils.dev_callsite(caller)
  payload.merge!(callsite) if callsite

  Event.new(SQL_EVENT_NAME, start, ending, transaction_id, payload)
}
VIEW_BLOCK =
proc { |*args|
  name, start, ending, transaction_id, payload = args
  payload[:identifier] = ::RailsSpotlight::Utils.sub_source_path(payload[:identifier])

  Event.new(name, start, ending, transaction_id, payload)
}

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.migrating?Boolean

Returns:

  • (Boolean)


98
99
100
101
102
# File 'lib/rails_spotlight/app_notifications.rb', line 98

def self.migrating?
  defined?(Rake) && Rake.application.top_level_tasks.any? do |task|
    task.start_with?('db:migrate', 'db:schema:load', 'db:rollback')
  end
end

.subscribeObject

Subscribe to all events relevant to RailsPanel



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/rails_spotlight/app_notifications.rb', line 64

def self.subscribe
  # Skip RailsSpotlight subscriptions during migrations
  return if migrating?

  new
    .subscribe('rsl.notification.log')
    .subscribe('sql.active_record', &SQL_BLOCK)
    .subscribe('sql.sequel', &SQL_BLOCK)
    .subscribe('render_partial.action_view', &VIEW_BLOCK)
    .subscribe('render_template.action_view', &VIEW_BLOCK)
    .subscribe('process_action.action_controller.exception')
    .subscribe('process_action.action_controller') do |*args|
      name, start, ending, transaction_id, payload = args
      payload[:status] = '500' if payload[:exception]
      Event.new(name, start, ending, transaction_id, payload)
    end
    .subscribe('cache_read.active_support', &CACHE_BLOCK)
    .subscribe('cache_generate.active_support', &CACHE_BLOCK)
    .subscribe('cache_fetch_hit.active_support', &CACHE_BLOCK)
    .subscribe('cache_write.active_support', &CACHE_BLOCK)
    .subscribe('cache_delete.active_support', &CACHE_BLOCK)
    .subscribe('cache_exist?.active_support', &CACHE_BLOCK)
    .subscribe('render_view.locals', &VIEW_LOCALS_BLOCK)

  # TODO: Consider adding these events
  # start_processing.action_controller: Triggered when a controller action starts processing a request.
  # send_file.action_controller: Triggered when a file is sent as a response.
  # redirect_to.action_controller: Triggered when a redirect response is sent.
  # halted_callback.action_controller: Triggered when a filter or callback halts the request.
  # render_collection.action_view: This event is triggered when a collection is rendered using a partial.
  #                                It includes details about the collection being rendered,
  #                                such as the collection name and the partial being used to render each item.
end

Instance Method Details

#subscribe(event_name) ⇒ Object



104
105
106
107
108
109
110
# File 'lib/rails_spotlight/app_notifications.rb', line 104

def subscribe(event_name)
  ActiveSupport::Notifications.subscribe(event_name) do |*args|
    event = block_given? ? yield(*args) : Event.new(*args)
    AppRequest.current.events << event if AppRequest.current
  end
  self
end