結論、ここに書いてあるのが全て。
Active Support Instrumentation で計測 - Railsガイド
例えば、SQLがどこで発行されたのか?をログに出すには caller_locations を使ってこんな感じにできる。
Kernel.#caller_locations (Ruby 3.2 リファレンスマニュアル)
ActiveSupport::Notifications.subscribe('sql.active_record') do |*args|
event = ActiveSupport::Notifications::Event.new(*args)
caller_names = caller_locations.select { |line| line.to_s =~ /#{Rails.root}/ }
Rails.logger.debug([event.name, caller_names.first].join(' '))
end