debian-mirror-gitlab/lib/gitlab/metrics/samplers/ruby_sampler.rb

97 lines
3.2 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'prometheus/client/support/unicorn'
module Gitlab
module Metrics
module Samplers
class RubySampler < BaseSampler
2019-12-04 20:38:33 +05:30
GC_REPORT_BUCKETS = [0.005, 0.01, 0.02, 0.04, 0.07, 0.1, 0.5].freeze
2019-10-12 21:52:04 +05:30
2019-09-30 21:07:59 +05:30
def initialize(interval)
2019-10-12 21:52:04 +05:30
GC::Profiler.clear
metrics[:process_start_time_seconds].set(labels, Time.now.to_i)
2019-09-30 21:07:59 +05:30
super
end
2018-03-17 18:26:18 +05:30
def metrics
@metrics ||= init_metrics
end
def with_prefix(prefix, name)
"ruby_#{prefix}_#{name}".to_sym
end
def to_doc_string(name)
name.to_s.humanize
end
def labels
{}
end
def init_metrics
2019-09-04 21:01:54 +05:30
metrics = {
2019-10-12 21:52:04 +05:30
file_descriptors: ::Gitlab::Metrics.gauge(with_prefix(:file, :descriptors), 'File descriptors used', labels),
memory_bytes: ::Gitlab::Metrics.gauge(with_prefix(:memory, :bytes), 'Memory used', labels),
2019-09-04 21:01:54 +05:30
process_cpu_seconds_total: ::Gitlab::Metrics.gauge(with_prefix(:process, :cpu_seconds_total), 'Process CPU seconds total'),
process_max_fds: ::Gitlab::Metrics.gauge(with_prefix(:process, :max_fds), 'Process max fds'),
2019-10-12 21:52:04 +05:30
process_resident_memory_bytes: ::Gitlab::Metrics.gauge(with_prefix(:process, :resident_memory_bytes), 'Memory used', labels),
2019-09-04 21:01:54 +05:30
process_start_time_seconds: ::Gitlab::Metrics.gauge(with_prefix(:process, :start_time_seconds), 'Process start time seconds'),
sampler_duration: ::Gitlab::Metrics.counter(with_prefix(:sampler, :duration_seconds_total), 'Sampler time', labels),
2019-10-12 21:52:04 +05:30
gc_duration_seconds: ::Gitlab::Metrics.histogram(with_prefix(:gc, :duration_seconds), 'GC time', labels, GC_REPORT_BUCKETS)
2019-09-04 21:01:54 +05:30
}
2018-03-17 18:26:18 +05:30
GC.stat.keys.each do |key|
2019-10-12 21:52:04 +05:30
metrics[key] = ::Gitlab::Metrics.gauge(with_prefix(:gc_stat, key), to_doc_string(key), labels)
2018-03-17 18:26:18 +05:30
end
metrics
end
def sample
start_time = System.monotonic_time
2019-10-12 21:52:04 +05:30
metrics[:file_descriptors].set(labels, System.file_descriptor_count)
metrics[:process_cpu_seconds_total].set(labels, ::Gitlab::Metrics::System.cpu_time)
metrics[:process_max_fds].set(labels, ::Gitlab::Metrics::System.max_open_file_descriptors)
2019-09-04 21:01:54 +05:30
set_memory_usage_metrics
2018-11-08 19:23:39 +05:30
sample_gc
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
metrics[:sampler_duration].increment(labels, System.monotonic_time - start_time)
2018-03-17 18:26:18 +05:30
end
private
def sample_gc
2019-10-12 21:52:04 +05:30
# Observe all GC samples
sample_gc_reports.each do |report|
metrics[:gc_duration_seconds].observe(labels, report[:GC_TIME])
end
# Collect generic GC stats
2018-03-17 18:26:18 +05:30
GC.stat.each do |key, value|
metrics[key].set(labels, value)
end
2019-10-12 21:52:04 +05:30
end
2018-11-08 19:23:39 +05:30
2019-10-12 21:52:04 +05:30
def sample_gc_reports
GC::Profiler.enable
GC::Profiler.raw_data
ensure
GC::Profiler.clear
2018-03-17 18:26:18 +05:30
end
2019-09-04 21:01:54 +05:30
def set_memory_usage_metrics
memory_usage = System.memory_usage
2019-10-12 21:52:04 +05:30
metrics[:memory_bytes].set(labels, memory_usage)
metrics[:process_resident_memory_bytes].set(labels, memory_usage)
2018-03-17 18:26:18 +05:30
end
end
end
end
end