// Code generated by qtc from "web.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.
//line app/vmalert/web.qtpl:1
package main
//line app/vmalert/web.qtpl:3
import (
"sort"
"time"
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/tpl"
)
//line app/vmalert/web.qtpl:11
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
//line app/vmalert/web.qtpl:11
var (
_ = qtio422016.Copy
_ = qt422016.AcquireByteBuffer
)
//line app/vmalert/web.qtpl:12
var navItems = []tpl.NavItem{
{Name: "vmalert", Url: "/"},
{Name: "Groups", Url: "/groups"},
{Name: "Alerts", Url: "/alerts"},
{Name: "Docs", Url: "https://docs.victoriametrics.com/vmalert.html"},
}
//line app/vmalert/web.qtpl:20
func StreamWelcome(qw422016 *qt422016.Writer, pathList [][2]string) {
//line app/vmalert/web.qtpl:20
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:21
tpl.StreamHeader(qw422016, "vmalert", navItems)
//line app/vmalert/web.qtpl:21
qw422016.N().S(`
API:
`)
//line app/vmalert/web.qtpl:24
for _, p := range pathList {
//line app/vmalert/web.qtpl:24
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:26
p, doc := p[0], p[1]
//line app/vmalert/web.qtpl:27
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:28
qw422016.E().S(p)
//line app/vmalert/web.qtpl:28
qw422016.N().S(` - `)
//line app/vmalert/web.qtpl:28
qw422016.E().S(doc)
//line app/vmalert/web.qtpl:28
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:29
}
//line app/vmalert/web.qtpl:29
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:31
tpl.StreamFooter(qw422016)
//line app/vmalert/web.qtpl:31
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:32
}
//line app/vmalert/web.qtpl:32
func WriteWelcome(qq422016 qtio422016.Writer, pathList [][2]string) {
//line app/vmalert/web.qtpl:32
qw422016 := qt422016.AcquireWriter(qq422016)
//line app/vmalert/web.qtpl:32
StreamWelcome(qw422016, pathList)
//line app/vmalert/web.qtpl:32
qt422016.ReleaseWriter(qw422016)
//line app/vmalert/web.qtpl:32
}
//line app/vmalert/web.qtpl:32
func Welcome(pathList [][2]string) string {
//line app/vmalert/web.qtpl:32
qb422016 := qt422016.AcquireByteBuffer()
//line app/vmalert/web.qtpl:32
WriteWelcome(qb422016, pathList)
//line app/vmalert/web.qtpl:32
qs422016 := string(qb422016.B)
//line app/vmalert/web.qtpl:32
qt422016.ReleaseByteBuffer(qb422016)
//line app/vmalert/web.qtpl:32
return qs422016
//line app/vmalert/web.qtpl:32
}
//line app/vmalert/web.qtpl:34
func StreamListGroups(qw422016 *qt422016.Writer, groups []APIGroup) {
//line app/vmalert/web.qtpl:34
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:35
tpl.StreamHeader(qw422016, "Groups", navItems)
//line app/vmalert/web.qtpl:35
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:36
if len(groups) > 0 {
//line app/vmalert/web.qtpl:36
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:38
rOk := make(map[string]int)
rNotOk := make(map[string]int)
for _, g := range groups {
for _, r := range g.AlertingRules {
if r.LastError != "" {
rNotOk[g.Name]++
} else {
rOk[g.Name]++
}
}
for _, r := range g.RecordingRules {
if r.LastError != "" {
rNotOk[g.Name]++
} else {
rOk[g.Name]++
}
}
}
//line app/vmalert/web.qtpl:56
qw422016.N().S(`
Collapse All
Expand All
`)
//line app/vmalert/web.qtpl:59
for _, g := range groups {
//line app/vmalert/web.qtpl:59
qw422016.N().S(`
Rule |
Error |
Samples |
Updated |
`)
//line app/vmalert/web.qtpl:85
for _, ar := range g.AlertingRules {
//line app/vmalert/web.qtpl:85
qw422016.N().S(`
alert: `)
//line app/vmalert/web.qtpl:88
qw422016.E().S(ar.Name)
//line app/vmalert/web.qtpl:88
qw422016.N().S(` (for: `)
//line app/vmalert/web.qtpl:88
qw422016.E().V(ar.For)
//line app/vmalert/web.qtpl:88
qw422016.N().S(`)
`)
//line app/vmalert/web.qtpl:89
qw422016.E().S(ar.Expression)
//line app/vmalert/web.qtpl:89
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:90
if len(ar.Labels) > 0 {
//line app/vmalert/web.qtpl:90
qw422016.N().S(` Labels:`)
//line app/vmalert/web.qtpl:90
}
//line app/vmalert/web.qtpl:90
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:91
for k, v := range ar.Labels {
//line app/vmalert/web.qtpl:91
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:92
qw422016.E().S(k)
//line app/vmalert/web.qtpl:92
qw422016.N().S(`=`)
//line app/vmalert/web.qtpl:92
qw422016.E().S(v)
//line app/vmalert/web.qtpl:92
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:93
}
//line app/vmalert/web.qtpl:93
qw422016.N().S(`
|
`)
//line app/vmalert/web.qtpl:95
qw422016.E().S(ar.LastError)
//line app/vmalert/web.qtpl:95
qw422016.N().S(` |
`)
//line app/vmalert/web.qtpl:96
qw422016.N().D(ar.LastSamples)
//line app/vmalert/web.qtpl:96
qw422016.N().S(` |
`)
//line app/vmalert/web.qtpl:97
qw422016.N().FPrec(time.Since(ar.LastExec).Seconds(), 3)
//line app/vmalert/web.qtpl:97
qw422016.N().S(`s ago |
`)
//line app/vmalert/web.qtpl:99
}
//line app/vmalert/web.qtpl:99
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:100
for _, rr := range g.RecordingRules {
//line app/vmalert/web.qtpl:100
qw422016.N().S(`
record: `)
//line app/vmalert/web.qtpl:103
qw422016.E().S(rr.Name)
//line app/vmalert/web.qtpl:103
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:104
qw422016.E().S(rr.Expression)
//line app/vmalert/web.qtpl:104
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:105
if len(rr.Labels) > 0 {
//line app/vmalert/web.qtpl:105
qw422016.N().S(` Labels:`)
//line app/vmalert/web.qtpl:105
}
//line app/vmalert/web.qtpl:105
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:106
for k, v := range rr.Labels {
//line app/vmalert/web.qtpl:106
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:107
qw422016.E().S(k)
//line app/vmalert/web.qtpl:107
qw422016.N().S(`=`)
//line app/vmalert/web.qtpl:107
qw422016.E().S(v)
//line app/vmalert/web.qtpl:107
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:108
}
//line app/vmalert/web.qtpl:108
qw422016.N().S(`
|
`)
//line app/vmalert/web.qtpl:110
qw422016.E().S(rr.LastError)
//line app/vmalert/web.qtpl:110
qw422016.N().S(` |
`)
//line app/vmalert/web.qtpl:111
qw422016.N().D(rr.LastSamples)
//line app/vmalert/web.qtpl:111
qw422016.N().S(` |
`)
//line app/vmalert/web.qtpl:112
qw422016.N().FPrec(time.Since(rr.LastExec).Seconds(), 3)
//line app/vmalert/web.qtpl:112
qw422016.N().S(`s ago |
`)
//line app/vmalert/web.qtpl:114
}
//line app/vmalert/web.qtpl:114
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:118
}
//line app/vmalert/web.qtpl:118
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:120
} else {
//line app/vmalert/web.qtpl:120
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:124
}
//line app/vmalert/web.qtpl:124
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:126
tpl.StreamFooter(qw422016)
//line app/vmalert/web.qtpl:126
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:128
}
//line app/vmalert/web.qtpl:128
func WriteListGroups(qq422016 qtio422016.Writer, groups []APIGroup) {
//line app/vmalert/web.qtpl:128
qw422016 := qt422016.AcquireWriter(qq422016)
//line app/vmalert/web.qtpl:128
StreamListGroups(qw422016, groups)
//line app/vmalert/web.qtpl:128
qt422016.ReleaseWriter(qw422016)
//line app/vmalert/web.qtpl:128
}
//line app/vmalert/web.qtpl:128
func ListGroups(groups []APIGroup) string {
//line app/vmalert/web.qtpl:128
qb422016 := qt422016.AcquireByteBuffer()
//line app/vmalert/web.qtpl:128
WriteListGroups(qb422016, groups)
//line app/vmalert/web.qtpl:128
qs422016 := string(qb422016.B)
//line app/vmalert/web.qtpl:128
qt422016.ReleaseByteBuffer(qb422016)
//line app/vmalert/web.qtpl:128
return qs422016
//line app/vmalert/web.qtpl:128
}
//line app/vmalert/web.qtpl:131
func StreamListAlerts(qw422016 *qt422016.Writer, groupAlerts []GroupAlerts) {
//line app/vmalert/web.qtpl:131
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:132
tpl.StreamHeader(qw422016, "Alerts", navItems)
//line app/vmalert/web.qtpl:132
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:133
if len(groupAlerts) > 0 {
//line app/vmalert/web.qtpl:133
qw422016.N().S(`
Collapse All
Expand All
`)
//line app/vmalert/web.qtpl:136
for _, ga := range groupAlerts {
//line app/vmalert/web.qtpl:136
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:137
g := ga.Group
//line app/vmalert/web.qtpl:137
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:146
var keys []string
alertsByRule := make(map[string][]*APIAlert)
for _, alert := range ga.Alerts {
if len(alertsByRule[alert.RuleID]) < 1 {
keys = append(keys, alert.RuleID)
}
alertsByRule[alert.RuleID] = append(alertsByRule[alert.RuleID], alert)
}
sort.Strings(keys)
//line app/vmalert/web.qtpl:155
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:157
for _, ruleID := range keys {
//line app/vmalert/web.qtpl:157
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:159
defaultAR := alertsByRule[ruleID][0]
var labelKeys []string
for k := range defaultAR.Labels {
labelKeys = append(labelKeys, k)
}
sort.Strings(labelKeys)
//line app/vmalert/web.qtpl:165
qw422016.N().S(`
alert: `)
//line app/vmalert/web.qtpl:167
qw422016.E().S(defaultAR.Name)
//line app/vmalert/web.qtpl:167
qw422016.N().S(` (`)
//line app/vmalert/web.qtpl:167
qw422016.N().D(len(alertsByRule[ruleID]))
//line app/vmalert/web.qtpl:167
qw422016.N().S(`)
expr:`)
//line app/vmalert/web.qtpl:168
qw422016.E().S(defaultAR.Expression)
//line app/vmalert/web.qtpl:168
qw422016.N().S(`
Labels |
State |
Active at |
Value |
Link |
`)
//line app/vmalert/web.qtpl:180
for _, ar := range alertsByRule[ruleID] {
//line app/vmalert/web.qtpl:180
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:183
for _, k := range labelKeys {
//line app/vmalert/web.qtpl:183
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:184
qw422016.E().S(k)
//line app/vmalert/web.qtpl:184
qw422016.N().S(`=`)
//line app/vmalert/web.qtpl:184
qw422016.E().S(ar.Labels[k])
//line app/vmalert/web.qtpl:184
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:185
}
//line app/vmalert/web.qtpl:185
qw422016.N().S(`
|
`)
//line app/vmalert/web.qtpl:187
qw422016.E().S(ar.State)
//line app/vmalert/web.qtpl:187
qw422016.N().S(` |
`)
//line app/vmalert/web.qtpl:188
qw422016.E().S(ar.ActiveAt.Format("2006-01-02T15:04:05Z07:00"))
//line app/vmalert/web.qtpl:188
qw422016.N().S(` |
`)
//line app/vmalert/web.qtpl:189
qw422016.E().S(ar.Value)
//line app/vmalert/web.qtpl:189
qw422016.N().S(` |
Details
|
`)
//line app/vmalert/web.qtpl:194
}
//line app/vmalert/web.qtpl:194
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:197
}
//line app/vmalert/web.qtpl:197
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:200
}
//line app/vmalert/web.qtpl:200
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:202
} else {
//line app/vmalert/web.qtpl:202
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:206
}
//line app/vmalert/web.qtpl:206
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:208
tpl.StreamFooter(qw422016)
//line app/vmalert/web.qtpl:208
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:210
}
//line app/vmalert/web.qtpl:210
func WriteListAlerts(qq422016 qtio422016.Writer, groupAlerts []GroupAlerts) {
//line app/vmalert/web.qtpl:210
qw422016 := qt422016.AcquireWriter(qq422016)
//line app/vmalert/web.qtpl:210
StreamListAlerts(qw422016, groupAlerts)
//line app/vmalert/web.qtpl:210
qt422016.ReleaseWriter(qw422016)
//line app/vmalert/web.qtpl:210
}
//line app/vmalert/web.qtpl:210
func ListAlerts(groupAlerts []GroupAlerts) string {
//line app/vmalert/web.qtpl:210
qb422016 := qt422016.AcquireByteBuffer()
//line app/vmalert/web.qtpl:210
WriteListAlerts(qb422016, groupAlerts)
//line app/vmalert/web.qtpl:210
qs422016 := string(qb422016.B)
//line app/vmalert/web.qtpl:210
qt422016.ReleaseByteBuffer(qb422016)
//line app/vmalert/web.qtpl:210
return qs422016
//line app/vmalert/web.qtpl:210
}
//line app/vmalert/web.qtpl:212
func StreamAlert(qw422016 *qt422016.Writer, alert *APIAlert) {
//line app/vmalert/web.qtpl:212
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:213
tpl.StreamHeader(qw422016, "", navItems)
//line app/vmalert/web.qtpl:213
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:215
var labelKeys []string
for k := range alert.Labels {
labelKeys = append(labelKeys, k)
}
sort.Strings(labelKeys)
var annotationKeys []string
for k := range alert.Annotations {
annotationKeys = append(annotationKeys, k)
}
sort.Strings(annotationKeys)
//line app/vmalert/web.qtpl:226
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:227
qw422016.E().S(alert.Name)
//line app/vmalert/web.qtpl:227
qw422016.N().S(``)
//line app/vmalert/web.qtpl:227
qw422016.E().S(alert.State)
//line app/vmalert/web.qtpl:227
qw422016.N().S(`
Active at
`)
//line app/vmalert/web.qtpl:234
qw422016.E().S(alert.ActiveAt.Format("2006-01-02T15:04:05Z07:00"))
//line app/vmalert/web.qtpl:234
qw422016.N().S(`
Expr
`)
//line app/vmalert/web.qtpl:244
qw422016.E().S(alert.Expression)
//line app/vmalert/web.qtpl:244
qw422016.N().S(`
Labels
`)
//line app/vmalert/web.qtpl:254
for _, k := range labelKeys {
//line app/vmalert/web.qtpl:254
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:255
qw422016.E().S(k)
//line app/vmalert/web.qtpl:255
qw422016.N().S(`=`)
//line app/vmalert/web.qtpl:255
qw422016.E().S(alert.Labels[k])
//line app/vmalert/web.qtpl:255
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:256
}
//line app/vmalert/web.qtpl:256
qw422016.N().S(`
Annotations
`)
//line app/vmalert/web.qtpl:266
for _, k := range annotationKeys {
//line app/vmalert/web.qtpl:266
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:267
qw422016.E().S(k)
//line app/vmalert/web.qtpl:267
qw422016.N().S(`:
`)
//line app/vmalert/web.qtpl:268
qw422016.E().S(alert.Annotations[k])
//line app/vmalert/web.qtpl:268
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:269
}
//line app/vmalert/web.qtpl:269
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:283
tpl.StreamFooter(qw422016)
//line app/vmalert/web.qtpl:283
qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:285
}
//line app/vmalert/web.qtpl:285
func WriteAlert(qq422016 qtio422016.Writer, alert *APIAlert) {
//line app/vmalert/web.qtpl:285
qw422016 := qt422016.AcquireWriter(qq422016)
//line app/vmalert/web.qtpl:285
StreamAlert(qw422016, alert)
//line app/vmalert/web.qtpl:285
qt422016.ReleaseWriter(qw422016)
//line app/vmalert/web.qtpl:285
}
//line app/vmalert/web.qtpl:285
func Alert(alert *APIAlert) string {
//line app/vmalert/web.qtpl:285
qb422016 := qt422016.AcquireByteBuffer()
//line app/vmalert/web.qtpl:285
WriteAlert(qb422016, alert)
//line app/vmalert/web.qtpl:285
qs422016 := string(qb422016.B)
//line app/vmalert/web.qtpl:285
qt422016.ReleaseByteBuffer(qb422016)
//line app/vmalert/web.qtpl:285
return qs422016
//line app/vmalert/web.qtpl:285
}