gitlab-org--gitlab-foss/lib/gitlab/metrics/transaction.rb

165 lines
5.1 KiB
Ruby
Raw Normal View History

2017-10-16 13:57:33 +00:00
module Gitlab
module Metrics
# Class for storing metrics information of a single transaction.
2017-10-19 09:24:15 +00:00
class Transaction
# base labels shared among all transactions
BASE_LABELS = { controller: nil, action: nil }.freeze
2017-10-16 13:57:33 +00:00
THREAD_KEY = :_gitlab_metrics_transaction
METRICS_MUTEX = Mutex.new
2017-10-16 13:57:33 +00:00
# The series to store events (e.g. Git pushes) in.
EVENT_SERIES = 'events'.freeze
attr_reader :tags, :values, :method, :metrics
def self.current
Thread.current[THREAD_KEY]
end
def initialize
2017-10-16 13:57:33 +00:00
@metrics = []
@methods = {}
@started_at = nil
@finished_at = nil
@values = Hash.new(0)
@tags = {}
@memory_before = 0
@memory_after = 0
end
def duration
@finished_at ? (@finished_at - @started_at) : 0.0
end
def duration_milliseconds
2017-12-19 18:40:43 +00:00
duration.in_milliseconds.to_i
end
2017-10-16 13:57:33 +00:00
def allocated_memory
@memory_after - @memory_before
end
def run
Thread.current[THREAD_KEY] = self
@memory_before = System.memory_usage
@started_at = System.monotonic_time
yield
ensure
@memory_after = System.memory_usage
@finished_at = System.monotonic_time
2018-01-16 07:50:42 +00:00
self.class.gitlab_transaction_duration_seconds.observe(labels, duration)
self.class.gitlab_transaction_allocated_memory_bytes.observe(labels, allocated_memory * 1024.0)
2017-10-16 13:57:33 +00:00
Thread.current[THREAD_KEY] = nil
end
def add_metric(series, values, tags = {})
@metrics << Metric.new("#{Metrics.series_prefix}#{series}", values, tags)
end
# Tracks a business level event
#
# Business level events including events such as Git pushes, Emails being
# sent, etc.
#
# event_name - The name of the event (e.g. "git_push").
# tags - A set of tags to attach to the event.
def add_event(event_name, tags = {})
2018-01-16 07:50:42 +00:00
self.class.transaction_metric(event_name, :counter, prefix: 'event_', tags: tags).increment(tags.merge(labels))
2017-10-16 13:57:33 +00:00
@metrics << Metric.new(EVENT_SERIES, { count: 1 }, tags.merge(event: event_name), :event)
end
# Returns a MethodCall object for the given name.
def method_call_for(name, module_name, method_name)
unless method = @methods[name]
@methods[name] = method = MethodCall.new(name, module_name, method_name, self)
end
method
end
def increment(name, value, use_prometheus = true)
2018-01-16 07:50:42 +00:00
self.class.transaction_metric(name, :counter).increment(labels, value) if use_prometheus
2017-10-16 13:57:33 +00:00
@values[name] += value
end
def set(name, value, use_prometheus = true)
2018-01-16 07:50:42 +00:00
self.class.transaction_metric(name, :gauge).set(labels, value) if use_prometheus
2017-10-16 13:57:33 +00:00
@values[name] = value
end
def finish
track_self
submit
end
def track_self
values = { duration: duration_milliseconds, allocated_memory: allocated_memory }
2017-10-16 13:57:33 +00:00
@values.each do |name, value|
values[name] = value
end
add_metric('transactions', values, @tags)
end
def submit
submit = @metrics.dup
@methods.each do |name, method|
submit << method.to_metric if method.above_threshold?
end
submit_hashes = submit.map do |metric|
hash = metric.to_hash
hash[:tags][:action] ||= action if action && !metric.event?
hash
end
Metrics.submit_metrics(submit_hashes)
end
def labels
BASE_LABELS
end
# returns string describing the action performed, usually the class plus method name.
def action
"#{labels[:controller]}##{labels[:action]}" if labels && !labels.empty?
end
2018-01-16 07:50:42 +00:00
histogram :gitlab_transaction_duration_seconds, 'Transaction duration',
base_labels: BASE_LABELS,
buckets: [0.001, 0.01, 0.1, 0.5, 10.0],
with_feature: :prometheus_metrics_method_instrumentation
2018-01-16 07:50:42 +00:00
histogram :gitlab_transaction_allocated_memory_bytes, 'Transaction allocated memory bytes',
base_labels: BASE_LABELS,
buckets: [100, 1000, 10000, 100000, 1000000, 10000000]
2017-10-16 13:57:33 +00:00
2018-01-16 07:50:42 +00:00
def self.transaction_metric(name, type, prefix: nil, tags: {})
return @transaction_metric[name] if @transaction_metric[name]&.has_key?(name)
METRICS_MUTEX.synchronize do
2018-01-16 07:50:42 +00:00
@transaction_metric ||= {}
@transaction_metric[name] ||= if type == :counter
Gitlab::Metrics.counter("gitlab_transaction_#{prefix}#{name}_total".to_sym,
"Transaction #{prefix}#{name} counter", tags.merge(BASE_LABELS))
else
Gitlab::Metrics.gauge("gitlab_transaction_#{name}".to_sym,
"Transaction gauge #{name} ", tags.merge(BASE_LABELS), :livesum)
end
end
2017-10-16 13:57:33 +00:00
end
end
end
end