2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Gitlab
|
|
|
|
module GitalyClient
|
|
|
|
# Meant for extraction of server data, and later maybe to perform misc task
|
|
|
|
#
|
|
|
|
# Not meant for connection logic, look in Gitlab::GitalyClient
|
|
|
|
class ServerService
|
|
|
|
def initialize(storage)
|
|
|
|
@storage = storage
|
|
|
|
end
|
|
|
|
|
|
|
|
def info
|
2018-11-08 19:23:39 +05:30
|
|
|
GitalyClient.call(@storage, :server_service, :server_info, Gitaly::ServerInfoRequest.new, timeout: GitalyClient.fast_timeout)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
def disk_statistics
|
|
|
|
GitalyClient.call(@storage, :server_service, :disk_statistics, Gitaly::DiskStatisticsRequest.new, timeout: GitalyClient.fast_timeout)
|
|
|
|
end
|
|
|
|
|
|
|
|
def storage_info
|
|
|
|
storage_specific(info)
|
|
|
|
end
|
|
|
|
|
|
|
|
def storage_disk_statistics
|
|
|
|
storage_specific(disk_statistics)
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
def readiness_check
|
|
|
|
request = Gitaly::ReadinessCheckRequest.new(timeout: GitalyClient.medium_timeout)
|
|
|
|
response = GitalyClient.call(@storage, :server_service, :readiness_check, request, timeout: GitalyClient.default_timeout)
|
|
|
|
|
|
|
|
return { success: true } if response.ok_response
|
|
|
|
|
|
|
|
failed_checks = response.failure_response.failed_checks.map do |failed_check|
|
|
|
|
["#{failed_check.name}: #{failed_check.error_message}"]
|
|
|
|
end
|
|
|
|
|
|
|
|
{ success: false, message: failed_checks.join("\n") }
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def storage_specific(response)
|
|
|
|
response.storage_statuses.find { |status| status.storage_name == @storage }
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|