Module: Rack::MiniProfiler::ActiveRecordInstrumentation

Defined in:
lib/patches/sql_patches.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(instrumented_class) ⇒ Object



193
194
195
196
197
198
199
200
201
# File 'lib/patches/sql_patches.rb', line 193

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

Instance Method Details

#log_with_miniprofiler(*args, &block) ⇒ Object



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'lib/patches/sql_patches.rb', line 203

def log_with_miniprofiler(*args, &block)
  current = ::Rack::MiniProfiler.current
  return log_without_miniprofiler(*args, &block) unless current

  sql, name, binds = args
  t0 = 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 = ((Time.now - t0).to_f * 1000).round(1)
  Rack::MiniProfiler.record_sql(sql, elapsed_time)
  rval
end