{{ define "main" }}
{{ $length := len .Monitors }} {{ if eq $length 0 }}

There are no monitors yet.

Create a monitor to monitor your services and get notified when they are down.

{{ else }} {{ if or (eq .Status "UNKNOWN") (eq .Status "SUCCESS") }}

All services are online

Last updated on {{ Now.UTC.Format "Jan 02 at 15:04 MST" }}

{{ else }}

Degraded performance

Last updated on {{ Now.UTC.Format "Jan 02 at 15:04 MST" }}

{{ end }}
{{ range $group, $monitorsAndStatus := .Monitors }}
{{ if eq $monitorsAndStatus.Status "SUCCESS" }} {{ else if eq $monitorsAndStatus.Status "FAILURE" }} {{ else }} {{ end }}

{{ $group }}

{{ range $monitorsAndStatus.Monitors }}
{{ if eq .Status "SUCCESS" }} {{ else if eq .Status "FAILURE" }} {{ else }} {{ end }}

{{ .Name }}

{{ .History.Uptime }}% uptime
{{ range .History.List }}
{{ if eq .Status "SUCCESS" }}
{{ else if eq .Status "FAILURE" }}
{{ else }}
{{ end }}
{{ end }}
{{ if eq $.TimeRange "90days" }} 90 days ago {{ else if eq $.TimeRange "48hours" }} 48 hours ago {{ else if eq $.TimeRange "90minutes" }} 90 minutes ago {{ end }}
Now
{{ end }}
{{ end }}
{{ end }}
{{ end }}