{{ 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 .CheckGroups }} {{ $currentGroup := . }} {{ range $group, $checks := $.Checks }} {{ if eq $group $currentGroup }} {{ range $checks }} {{ end }} {{ end }} {{ end }} {{ end }}
List of Checks

{{ $description }}

Create New
Check Group Name Visibility Worker Groups Status Schedule Action
{{ . }}
└─ {{ .Name }} Public Private {{ range .WorkerGroups }} {{ . }} {{ end }} {{ if eq .Status "ACTIVE" }} ACTIVE {{ else if eq .Status "PAUSED" }} PAUSED {{ else }} UNKNOWN {{ end }} {{ .Schedule }} Details
{{ end }} {{ end }}