Sha256: 75e1c8dce9c4ae6082411952f0a23d30467e3451a0cad0023d8ac59b2330b9fc

Contents?: true

Size: 920 Bytes

Versions: 1

Compression:

Stored size: 920 Bytes

Contents

# The best kind of instrumentation is in the actual db provider, however we don't want to double instrument

class Mysql2::Result
  alias_method :each_without_profiling, :each
  def each(*args, &blk)
    return each_without_profiling(*args, &blk) unless defined?(@miniprofiler_sql_id)

    start        = Process.clock_gettime(Process::CLOCK_MONOTONIC)
    result       = each_without_profiling(*args,&blk)
    elapsed_time = SqlPatches.elapsed_time(start)

    @miniprofiler_sql_id.report_reader_duration(elapsed_time)
    result
  end
end

class Mysql2::Client
  alias_method :query_without_profiling, :query
  def query(*args,&blk)
    return query_without_profiling(*args,&blk) unless SqlPatches.should_measure?

    result, record = SqlPatches.record_sql( args[0] ) do
      query_without_profiling(*args,&blk)
    end
    result.instance_variable_set("@miniprofiler_sql_id", record) if result
    result
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-mini-profiler-0.10.7 lib/patches/db/mysql2.rb