Module: ActiveRecord::Db::Metrics::ControllerHelper

Extended by:
ActiveSupport::Concern
Defined in:
lib/activerecord/db/metrics/controller_helper.rb

Overview

Helper module to be included in Rails controllers Provides convenient methods to measure database operations

Examples:

Basic usage

class ApplicationController < ActionController::Base
  include ActiveRecord::Db::Metrics::ControllerHelper
  around_action :measure_db_operations
end