Sha256: a83816cf01c384ed5b4bd783cf942cea0d26bfcc6ca3615ee615154e0d843a90
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
module GovukHealthcheck STATUSES = [ OK = :ok, WARNING = :warning, CRITICAL = :critical, ].freeze class Checkup # @param checks [Array] Array of objects/classes that respond to `run` def initialize(checks) @checks = checks end def run { status: worst_status, checks: component_statuses, } end private attr_reader :checks def component_statuses @component_statuses ||= checks.map(&:new).each_with_object({}) do |check, hash| hash[check.name] = build_component_status(check) end end def worst_status if status?(CRITICAL) CRITICAL elsif status?(WARNING) WARNING else OK end end def status?(status) component_statuses.values.any? {|s| s[:status] == status } end def build_component_status(check) if check.respond_to?(:enabled?) && !check.enabled? { status: :ok, message: "currently disabled" } else component_status = details(check).merge(status: check.status) component_status[:message] = check.message if check.respond_to?(:message) component_status end end def details(check) check.respond_to?(:details) ? check.details : {} end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
govuk_app_config-1.7.0 | lib/govuk_app_config/govuk_healthcheck/checkup.rb |