{{ define "settings" }} {{ $description := "Checks are constantly determining if targets are healthy or not." }} {{ $length := len .Checks }} {{ if eq $length 0 }}

There are no checks yet.

{{ $description }}

Create First Check
{{ else }}
{{ range $checks := .Checks }} {{ end }}
List of Checks

{{ $description }}

Create New
Name Targets Worker Groups State Schedule Action
{{ .Name }} 3 {{ range .WorkerGroups }} {{ . }} {{ end }} {{ if eq .State "ACTIVE" }} ACTIVE {{ else if eq .State "PAUSED" }} PAUSED {{ else }} UNKNOWN {{ end }} {{ .Schedule }} Details
{{ end }} {{ end }}