{{define "hx_monitoring_group"}}

{{.Group.Title}}

{{if .Group.Errors}}

Warnings:

    {{range .Group.Errors}}
  • {{.}}
  • {{end}}

{{end}}
{{range .Group.Metrics}}
{{.Name}}
{{.Timestamp.Format "15:04:05"}}
{{.Value}} {{if eq .Status "error"}} ⚠️ {{else if eq .Status "warning"}} {{else}} {{end}}
{{else}}
No metrics available
{{end}}
{{end}}