2016-06-17 11:45:37 -04:00
|
|
|
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
|
2016-07-28 09:08:57 -04:00
|
|
|
@real_time = 0
|
|
|
|
@cpu_time = 0
|
2016-06-17 11:45:37 -04:00
|
|
|
@call_count = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
# Measures the real and CPU execution time of the supplied block.
|
|
|
|
def measure
|
2016-06-24 07:44:50 -04:00
|
|
|
start_real = System.monotonic_time
|
2016-06-17 11:45:37 -04:00
|
|
|
start_cpu = System.cpu_time
|
|
|
|
retval = yield
|
|
|
|
|
2016-06-24 07:44:50 -04:00
|
|
|
@real_time += System.monotonic_time - start_real
|
|
|
|
@cpu_time += System.cpu_time - start_cpu
|
2016-06-17 11:45:37 -04:00
|
|
|
@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
|