mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
62 lines
2.2 KiB
Ruby
62 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Metrics
|
|
module SidekiqSlis
|
|
EXECUTION_URGENCY_DURATIONS = {
|
|
"high" => 10,
|
|
"low" => 300,
|
|
"throttled" => 300
|
|
}.freeze
|
|
QUEUEING_URGENCY_DURATIONS = {
|
|
"high" => 10,
|
|
"low" => 60,
|
|
"throttled" => Float::INFINITY # no queueing target duration for throttled urgency
|
|
}.freeze
|
|
# workers without urgency attribute have "low" urgency by default in
|
|
# WorkerAttributes.get_urgency, just mirroring it here
|
|
DEFAULT_EXECUTION_URGENCY_DURATION = EXECUTION_URGENCY_DURATIONS["low"]
|
|
DEFAULT_QUEUEING_URGENCY_DURATION = QUEUEING_URGENCY_DURATIONS["low"]
|
|
|
|
class << self
|
|
def initialize_execution_slis!(possible_labels)
|
|
Gitlab::Metrics::Sli::Apdex.initialize_sli(:sidekiq_execution, possible_labels)
|
|
Gitlab::Metrics::Sli::ErrorRate.initialize_sli(:sidekiq_execution, possible_labels)
|
|
end
|
|
|
|
def initialize_queueing_slis!(possible_labels)
|
|
Gitlab::Metrics::Sli::Apdex.initialize_sli(:sidekiq_queueing, possible_labels)
|
|
end
|
|
|
|
def record_execution_apdex(labels, job_completion_duration)
|
|
urgency_requirement = execution_duration_for_urgency(labels[:urgency])
|
|
Gitlab::Metrics::Sli::Apdex[:sidekiq_execution].increment(
|
|
labels: labels,
|
|
success: job_completion_duration < urgency_requirement
|
|
)
|
|
end
|
|
|
|
def record_execution_error(labels, error)
|
|
Gitlab::Metrics::Sli::ErrorRate[:sidekiq_execution].increment(labels: labels, error: error)
|
|
end
|
|
|
|
def record_queueing_apdex(labels, queue_duration)
|
|
urgency_requirement = queueing_duration_for_urgency(labels[:urgency])
|
|
Gitlab::Metrics::Sli::Apdex[:sidekiq_queueing].increment(
|
|
labels: labels,
|
|
success: queue_duration < urgency_requirement
|
|
)
|
|
end
|
|
|
|
def execution_duration_for_urgency(urgency)
|
|
EXECUTION_URGENCY_DURATIONS.fetch(urgency, DEFAULT_EXECUTION_URGENCY_DURATION)
|
|
end
|
|
|
|
def queueing_duration_for_urgency(urgency)
|
|
QUEUEING_URGENCY_DURATIONS.fetch(urgency, DEFAULT_QUEUEING_URGENCY_DURATION)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|