Sha256: 543554a8fec450e078d3fe982d3501c79691dd56ee97112c079740b1e9b505c8
Contents?: true
Size: 1.36 KB
Versions: 6
Compression:
Stored size: 1.36 KB
Contents
## based off https://github.com/newrelic/rpm/blob/master/lib/new_relic/agent/instrumentation/active_record.rb ## fallback for alls sorts of weird dbs module Rack class MiniProfiler module ActiveRecordInstrumentation def self.included(instrumented_class) instrumented_class.class_eval do unless instrumented_class.method_defined?(:log_without_miniprofiler) alias_method :log_without_miniprofiler, :log alias_method :log, :log_with_miniprofiler protected :log end end end def log_with_miniprofiler(*args, &block) return log_without_miniprofiler(*args, &block) unless SqlPatches.should_measure? sql, name, _binds = args start = Time.now rval = log_without_miniprofiler(*args, &block) # Don't log schema queries if the option is set return rval if Rack::MiniProfiler.config.skip_schema_queries and name =~ /SCHEMA/ elapsed_time = SqlPatches.elapsed_time(start) Rack::MiniProfiler.record_sql(sql, elapsed_time) rval end end end def self.insert_instrumentation ActiveRecord::ConnectionAdapters::AbstractAdapter.module_eval do include ::Rack::MiniProfiler::ActiveRecordInstrumentation end end if defined?(::Rails) && !SqlPatches.patched? insert_instrumentation end end
Version data entries
6 entries across 6 versions & 1 rubygems