2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Gitlab
|
|
|
|
module HealthChecks
|
|
|
|
class GitalyCheck
|
|
|
|
extend BaseAbstractCheck
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
METRIC_PREFIX = 'gitaly_health_check'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
class << self
|
|
|
|
def readiness
|
|
|
|
repository_storages.map do |storage_name|
|
|
|
|
check(storage_name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def metrics
|
2018-11-08 19:23:39 +05:30
|
|
|
Gitaly::Server.all.flat_map do |server|
|
|
|
|
result, elapsed = with_timing { server.read_writeable? }
|
|
|
|
labels = { shard: server.storage }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
[
|
2018-11-08 19:23:39 +05:30
|
|
|
metric("#{metric_prefix}_success", result ? 1 : 0, **labels),
|
2018-03-17 18:26:18 +05:30
|
|
|
metric("#{metric_prefix}_latency_seconds", elapsed, **labels)
|
2018-11-08 19:23:39 +05:30
|
|
|
]
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def check(storage_name)
|
2023-03-04 22:38:38 +05:30
|
|
|
serv = Gitlab::GitalyClient::HealthCheckService.new(storage_name)
|
|
|
|
result = serv.check
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
HealthChecks::Result.new(
|
|
|
|
name,
|
2023-03-04 22:38:38 +05:30
|
|
|
result[:success],
|
|
|
|
result[:message],
|
2019-12-21 20:55:43 +05:30
|
|
|
shard: storage_name
|
|
|
|
)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def metric_prefix
|
|
|
|
METRIC_PREFIX
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository_storages
|
|
|
|
storages.keys
|
|
|
|
end
|
|
|
|
|
|
|
|
def storages
|
|
|
|
Gitlab.config.repositories.storages
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|