{{ define "main" }} {{ $outcomeText := "All services are online." }} {{ $outcomeIcon := "check" }} {{ $outcomeColor := "bg-green-300" }} {{ if eq .Outcome "DOWN" }} {{ $outcomeText = "Some services are down." }} {{ $outcomeIcon = "alert-circle" }} {{ $outcomeColor = "bg-red-300" }} {{ else if eq .Outcome "DEGRADED" }} {{ $outcomeText = "Some services are degraded." }} {{ $outcomeIcon = "alert-triangle" }} {{ $outcomeColor = "bg-orange-300" }} {{ else if eq .Outcome "UNKNOWN" }} {{ $outcomeText = "We are unable to determine current status." }} {{ $outcomeIcon = "help-circle" }} {{ $outcomeColor = "bg-gray-300" }} {{ end }}
Create a target to target your services and get notified when they are down.
Last updated on {{ Now.UTC.Format "Jan 02 at 15:04 MST" }}