2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module Gitlab
module SidekiqMiddleware
2021-02-22 17:27:13 +05:30
class ServerMetrics
include :: Gitlab :: SidekiqMiddleware :: MetricsHelper
2020-03-13 15:44:24 +05:30
# SIDEKIQ_LATENCY_BUCKETS are latency histogram buckets better suited to Sidekiq
# timeframes than the DEFAULT_BUCKET definition. Defined in seconds.
2022-05-07 20:08:51 +05:30
# This information is better viewed in logs, but these buckets cover
# most of the durations for cpu, gitaly, db and elasticsearch
SIDEKIQ_LATENCY_BUCKETS = [ 0 . 1 , 0 . 5 , 1 , 2 . 5 ] . freeze
# These are the buckets we currently use for alerting, we will likely
# replace these histograms with Application SLIs
# https://gitlab.com/gitlab-com/gl-infra/scalability/-/issues/1313
SIDEKIQ_JOB_DURATION_BUCKETS = [ 10 , 300 ] . freeze
SIDEKIQ_QUEUE_DURATION_BUCKETS = [ 10 , 60 ] . freeze
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
class << self
include :: Gitlab :: SidekiqMiddleware :: MetricsHelper
def metrics
{
2022-05-07 20:08:51 +05:30
sidekiq_jobs_cpu_seconds : :: Gitlab :: Metrics . histogram ( :sidekiq_jobs_cpu_seconds , 'Seconds this Sidekiq job spent on the CPU' , { } , SIDEKIQ_LATENCY_BUCKETS ) ,
sidekiq_jobs_completion_seconds : :: Gitlab :: Metrics . histogram ( :sidekiq_jobs_completion_seconds , 'Seconds to complete Sidekiq job' , { } , SIDEKIQ_JOB_DURATION_BUCKETS ) ,
2021-09-30 23:02:18 +05:30
sidekiq_jobs_db_seconds : :: Gitlab :: Metrics . histogram ( :sidekiq_jobs_db_seconds , 'Seconds of database time to run Sidekiq job' , { } , SIDEKIQ_LATENCY_BUCKETS ) ,
sidekiq_jobs_gitaly_seconds : :: Gitlab :: Metrics . histogram ( :sidekiq_jobs_gitaly_seconds , 'Seconds of Gitaly time to run Sidekiq job' , { } , SIDEKIQ_LATENCY_BUCKETS ) ,
2022-05-07 20:08:51 +05:30
sidekiq_jobs_queue_duration_seconds : :: Gitlab :: Metrics . histogram ( :sidekiq_jobs_queue_duration_seconds , 'Duration in seconds that a Sidekiq job was queued before being executed' , { } , SIDEKIQ_QUEUE_DURATION_BUCKETS ) ,
2021-09-30 23:02:18 +05:30
sidekiq_redis_requests_duration_seconds : :: Gitlab :: Metrics . histogram ( :sidekiq_redis_requests_duration_seconds , 'Duration in seconds that a Sidekiq job spent requests a Redis server' , { } , Gitlab :: Instrumentation :: Redis :: QUERY_TIME_BUCKETS ) ,
sidekiq_elasticsearch_requests_duration_seconds : :: Gitlab :: Metrics . histogram ( :sidekiq_elasticsearch_requests_duration_seconds , 'Duration in seconds that a Sidekiq job spent in requests to an Elasticsearch server' , { } , SIDEKIQ_LATENCY_BUCKETS ) ,
sidekiq_jobs_failed_total : :: Gitlab :: Metrics . counter ( :sidekiq_jobs_failed_total , 'Sidekiq jobs failed' ) ,
sidekiq_jobs_retried_total : :: Gitlab :: Metrics . counter ( :sidekiq_jobs_retried_total , 'Sidekiq jobs retried' ) ,
sidekiq_redis_requests_total : :: Gitlab :: Metrics . counter ( :sidekiq_redis_requests_total , 'Redis requests during a Sidekiq job execution' ) ,
sidekiq_elasticsearch_requests_total : :: Gitlab :: Metrics . counter ( :sidekiq_elasticsearch_requests_total , 'Elasticsearch requests during a Sidekiq job execution' ) ,
sidekiq_running_jobs : :: Gitlab :: Metrics . gauge ( :sidekiq_running_jobs , 'Number of Sidekiq jobs running' , { } , :all ) ,
sidekiq_concurrency : :: Gitlab :: Metrics . gauge ( :sidekiq_concurrency , 'Maximum number of Sidekiq jobs' , { } , :all )
}
end
def initialize_process_metrics
metrics = self . metrics
metrics [ :sidekiq_concurrency ] . set ( { } , Sidekiq . options [ :concurrency ] . to_i )
return unless :: Feature . enabled? ( :sidekiq_job_completion_metric_initialize , default_enabled : :yaml )
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
:: Gitlab :: SidekiqConfig . current_worker_queue_mappings . each do | worker , queue |
worker_class = worker . safe_constantize
next unless worker_class
base_labels = create_labels ( worker_class , queue , { } )
%w[ done fail ] . each do | status |
metrics [ :sidekiq_jobs_completion_seconds ] . get ( base_labels . merge ( job_status : status ) )
end
end
end
end
def initialize
@metrics = self . class . metrics
2021-11-18 22:05:49 +05:30
@metrics [ :sidekiq_load_balancing_count ] = :: Gitlab :: Metrics . counter ( :sidekiq_load_balancing_count , 'Sidekiq jobs with load balancing' )
2020-03-13 15:44:24 +05:30
end
def call ( worker , job , queue )
2020-10-24 23:57:45 +05:30
# This gives all the sidekiq worker threads a name, so we can recognize them
# in metrics and can use them in the `ThreadsSampler` for setting a label
Thread . current . name || = Gitlab :: Metrics :: Samplers :: ThreadsSampler :: SIDEKIQ_WORKER_THREAD_NAME
2021-03-11 19:13:27 +05:30
labels = create_labels ( worker . class , queue , job )
2021-04-29 21:17:54 +05:30
instrument ( job , labels ) do
yield
end
end
protected
attr_reader :metrics
def instrument ( job , labels )
2020-03-13 15:44:24 +05:30
queue_duration = :: Gitlab :: InstrumentationHelper . queue_duration_for_job ( job )
@metrics [ :sidekiq_jobs_queue_duration_seconds ] . observe ( labels , queue_duration ) if queue_duration
@metrics [ :sidekiq_running_jobs ] . increment ( labels , 1 )
if job [ 'retry_count' ] . present?
@metrics [ :sidekiq_jobs_retried_total ] . increment ( labels , 1 )
end
job_succeeded = false
monotonic_time_start = Gitlab :: Metrics :: System . monotonic_time
job_thread_cputime_start = get_thread_cputime
begin
2021-04-17 20:07:23 +05:30
transaction = Gitlab :: Metrics :: BackgroundTransaction . new
transaction . run { yield }
2020-03-13 15:44:24 +05:30
job_succeeded = true
ensure
monotonic_time_end = Gitlab :: Metrics :: System . monotonic_time
job_thread_cputime_end = get_thread_cputime
monotonic_time = monotonic_time_end - monotonic_time_start
job_thread_cputime = job_thread_cputime_end - job_thread_cputime_start
# sidekiq_running_jobs, sidekiq_jobs_failed_total should not include the job_status label
@metrics [ :sidekiq_running_jobs ] . increment ( labels , - 1 )
@metrics [ :sidekiq_jobs_failed_total ] . increment ( labels , 1 ) unless job_succeeded
# job_status: done, fail match the job_status attribute in structured logging
labels [ :job_status ] = job_succeeded ? " done " : " fail "
2021-04-29 21:17:54 +05:30
instrumentation = job [ :instrumentation ] || { }
2020-03-13 15:44:24 +05:30
@metrics [ :sidekiq_jobs_cpu_seconds ] . observe ( labels , job_thread_cputime )
@metrics [ :sidekiq_jobs_completion_seconds ] . observe ( labels , monotonic_time )
2020-04-08 14:13:33 +05:30
@metrics [ :sidekiq_jobs_db_seconds ] . observe ( labels , ActiveRecord :: LogSubscriber . runtime / 1000 )
2021-04-29 21:17:54 +05:30
@metrics [ :sidekiq_jobs_gitaly_seconds ] . observe ( labels , get_gitaly_time ( instrumentation ) )
@metrics [ :sidekiq_redis_requests_total ] . increment ( labels , get_redis_calls ( instrumentation ) )
@metrics [ :sidekiq_redis_requests_duration_seconds ] . observe ( labels , get_redis_time ( instrumentation ) )
@metrics [ :sidekiq_elasticsearch_requests_total ] . increment ( labels , get_elasticsearch_calls ( instrumentation ) )
@metrics [ :sidekiq_elasticsearch_requests_duration_seconds ] . observe ( labels , get_elasticsearch_time ( instrumentation ) )
2021-09-04 01:27:46 +05:30
2021-09-30 23:02:18 +05:30
with_load_balancing_settings ( job ) do | settings |
2021-09-04 01:27:46 +05:30
load_balancing_labels = {
2021-09-30 23:02:18 +05:30
load_balancing_strategy : settings [ 'load_balancing_strategy' ] ,
data_consistency : settings [ 'worker_data_consistency' ]
2021-09-04 01:27:46 +05:30
}
@metrics [ :sidekiq_load_balancing_count ] . increment ( labels . merge ( load_balancing_labels ) , 1 )
end
2020-03-13 15:44:24 +05:30
end
end
2021-04-29 21:17:54 +05:30
private
2021-09-30 23:02:18 +05:30
def with_load_balancing_settings ( job )
keys = %w[ load_balancing_strategy worker_data_consistency ]
return unless keys . all? { | k | job . key? ( k ) }
yield job . slice ( * keys )
end
2020-03-13 15:44:24 +05:30
def get_thread_cputime
defined? ( Process :: CLOCK_THREAD_CPUTIME_ID ) ? Process . clock_gettime ( Process :: CLOCK_THREAD_CPUTIME_ID ) : 0
end
2020-04-08 14:13:33 +05:30
2021-04-29 21:17:54 +05:30
def get_redis_time ( payload )
payload . fetch ( :redis_duration_s , 0 )
2020-06-23 00:09:42 +05:30
end
2021-04-29 21:17:54 +05:30
def get_redis_calls ( payload )
payload . fetch ( :redis_calls , 0 )
2020-06-23 00:09:42 +05:30
end
2021-04-29 21:17:54 +05:30
def get_elasticsearch_time ( payload )
payload . fetch ( :elasticsearch_duration_s , 0 )
2020-06-23 00:09:42 +05:30
end
2021-04-29 21:17:54 +05:30
def get_elasticsearch_calls ( payload )
payload . fetch ( :elasticsearch_calls , 0 )
2020-06-23 00:09:42 +05:30
end
2021-04-29 21:17:54 +05:30
def get_gitaly_time ( payload )
payload . fetch ( :gitaly_duration_s , 0 )
2020-04-08 14:13:33 +05:30
end
2020-03-13 15:44:24 +05:30
end
end
end
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
Gitlab :: SidekiqMiddleware :: ServerMetrics . prepend_mod_with ( 'Gitlab::SidekiqMiddleware::ServerMetrics' )