1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# frozen_string_literal: true
require "active_support/core_ext/module/attr_internal"
require "active_record/runtime_registry"
module ActiveRecord
module Railties # :nodoc:
module ControllerRuntime # :nodoc:
extend ActiveSupport::Concern
module ClassMethods # :nodoc:
def log_process_action(payload)
messages, db_runtime = super, payload[:db_runtime]
if db_runtime
queries_count = payload[:queries_count] || 0
cached_queries_count = payload[:cached_queries_count] || 0
messages << ("ActiveRecord: %.1fms (%d %s, %d cached)" % [db_runtime.to_f, queries_count,
"query".pluralize(queries_count), cached_queries_count])
end
messages
end
end
def initialize(...) # :nodoc:
super
self.db_runtime = nil
end
private
attr_internal :db_runtime
def process_action(action, *args)
# We also need to reset the runtime before each action
# because of queries in middleware or in cases we are streaming
# and it won't be cleaned up by the method below.
ActiveRecord::RuntimeRegistry.reset
super
end
def cleanup_view_runtime
if logger && logger.info?
db_rt_before_render = ActiveRecord::RuntimeRegistry.reset_runtimes
self.db_runtime = (db_runtime || 0) + db_rt_before_render
runtime = super
queries_rt = ActiveRecord::RuntimeRegistry.sql_runtime - ActiveRecord::RuntimeRegistry.async_sql_runtime
db_rt_after_render = ActiveRecord::RuntimeRegistry.reset_runtimes
self.db_runtime += db_rt_after_render
runtime - queries_rt
else
super
end
end
def append_info_to_payload(payload)
super
payload[:db_runtime] = (db_runtime || 0) + ActiveRecord::RuntimeRegistry.reset_runtimes
payload[:queries_count] = ActiveRecord::RuntimeRegistry.reset_queries_count
payload[:cached_queries_count] = ActiveRecord::RuntimeRegistry.reset_cached_queries_count
end
end
end
end
|