intercity/intercity-next

View on GitHub
app/jobs/health_check_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HealthCheckJob < ApplicationJob
  queue_as :health_checks

  def perform(server)
    return unless server.up? || server.down?
    version = SshExecution.new(server).execute(command: "dokku version")
    server.update(dokku_version: format_version(version), status: "up")

    ServerResourceGatherer.new(server).execute
  rescue Net::SSH::ConnectionTimeout, Net::SSH::AuthenticationFailed, Errno::EHOSTUNREACH,
         Errno::ECONNREFUSED, Errno::EHOSTDOWN
    server.update(status: "down")
  end

  private

  def format_version(version)
    "v#{version.strip}"
  end
end