mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
Track method call times/counts as a single metric This changes method call tracking so only a single metric is emitted regardless of the number of calls. This allows us to more accurately measure the total execution time of a method as well as the number of times a method is called. See 851e3ff7578973c2206628424eac3b951a3c656d for more details. Method call tracking tracked calls individually meaning the end statistics may not always be accurate enough to get a good understanding of where time is spent. See merge request !4754
53 lines
1.3 KiB
Ruby
53 lines
1.3 KiB
Ruby
module Gitlab
|
|
module Metrics
|
|
# Class for tracking timing information about method calls
|
|
class MethodCall
|
|
attr_reader :real_time, :cpu_time, :call_count
|
|
|
|
# name - The full name of the method (including namespace) such as
|
|
# `User#sign_in`.
|
|
#
|
|
# series - The series to use for storing the data.
|
|
def initialize(name, series)
|
|
@name = name
|
|
@series = series
|
|
@real_time = 0.0
|
|
@cpu_time = 0.0
|
|
@call_count = 0
|
|
end
|
|
|
|
# Measures the real and CPU execution time of the supplied block.
|
|
def measure
|
|
start_real = Time.now
|
|
start_cpu = System.cpu_time
|
|
retval = yield
|
|
|
|
@real_time += (Time.now - start_real) * 1000.0
|
|
@cpu_time += System.cpu_time.to_f - start_cpu
|
|
@call_count += 1
|
|
|
|
retval
|
|
end
|
|
|
|
# Returns a Metric instance of the current method call.
|
|
def to_metric
|
|
Metric.new(
|
|
@series,
|
|
{
|
|
duration: real_time,
|
|
cpu_duration: cpu_time,
|
|
call_count: call_count
|
|
},
|
|
method: @name
|
|
)
|
|
end
|
|
|
|
# Returns true if the total runtime of this method exceeds the method call
|
|
# threshold.
|
|
def above_threshold?
|
|
real_time >= Metrics.method_call_threshold
|
|
end
|
|
end
|
|
end
|
|
end
|