// 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 ( "net/http" "path" "sort" "time" "github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/notifier" "github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/tpl" ) //line app/vmalert/web.qtpl:14 import ( qtio422016 "io" qt422016 "github.com/valyala/quicktemplate" ) //line app/vmalert/web.qtpl:14 var ( _ = qtio422016.Copy _ = qt422016.AcquireByteBuffer ) //line app/vmalert/web.qtpl:14 func StreamWelcome(qw422016 *qt422016.Writer, r *http.Request) { //line app/vmalert/web.qtpl:14 qw422016.N().S(` `) //line app/vmalert/web.qtpl:15 tpl.StreamHeader(qw422016, r, navItems, "vmalert") //line app/vmalert/web.qtpl:15 qw422016.N().S(`

API:
`) //line app/vmalert/web.qtpl:18 for _, p := range apiLinks { //line app/vmalert/web.qtpl:18 qw422016.N().S(` `) //line app/vmalert/web.qtpl:20 p, doc := p[0], p[1] //line app/vmalert/web.qtpl:21 qw422016.N().S(` `) //line app/vmalert/web.qtpl:22 qw422016.E().S(p) //line app/vmalert/web.qtpl:22 qw422016.N().S(` - `) //line app/vmalert/web.qtpl:22 qw422016.E().S(doc) //line app/vmalert/web.qtpl:22 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:23 } //line app/vmalert/web.qtpl:23 qw422016.N().S(`

`) //line app/vmalert/web.qtpl:25 tpl.StreamFooter(qw422016, r) //line app/vmalert/web.qtpl:25 qw422016.N().S(` `) //line app/vmalert/web.qtpl:26 } //line app/vmalert/web.qtpl:26 func WriteWelcome(qq422016 qtio422016.Writer, r *http.Request) { //line app/vmalert/web.qtpl:26 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/web.qtpl:26 StreamWelcome(qw422016, r) //line app/vmalert/web.qtpl:26 qt422016.ReleaseWriter(qw422016) //line app/vmalert/web.qtpl:26 } //line app/vmalert/web.qtpl:26 func Welcome(r *http.Request) string { //line app/vmalert/web.qtpl:26 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/web.qtpl:26 WriteWelcome(qb422016, r) //line app/vmalert/web.qtpl:26 qs422016 := string(qb422016.B) //line app/vmalert/web.qtpl:26 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/web.qtpl:26 return qs422016 //line app/vmalert/web.qtpl:26 } //line app/vmalert/web.qtpl:28 func StreamListGroups(qw422016 *qt422016.Writer, r *http.Request, groups []APIGroup) { //line app/vmalert/web.qtpl:28 qw422016.N().S(` `) //line app/vmalert/web.qtpl:29 tpl.StreamHeader(qw422016, r, navItems, "Groups") //line app/vmalert/web.qtpl:29 qw422016.N().S(` `) //line app/vmalert/web.qtpl:30 if len(groups) > 0 { //line app/vmalert/web.qtpl:30 qw422016.N().S(` `) //line app/vmalert/web.qtpl:32 rOk := make(map[string]int) rNotOk := make(map[string]int) for _, g := range groups { for _, r := range g.Rules { if r.LastError != "" { rNotOk[g.Name]++ } else { rOk[g.Name]++ } } } //line app/vmalert/web.qtpl:43 qw422016.N().S(` Collapse All Expand All `) //line app/vmalert/web.qtpl:46 for _, g := range groups { //line app/vmalert/web.qtpl:46 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:49 qw422016.E().S(g.Name) //line app/vmalert/web.qtpl:49 if g.Type != "prometheus" { //line app/vmalert/web.qtpl:49 qw422016.N().S(` (`) //line app/vmalert/web.qtpl:49 qw422016.E().S(g.Type) //line app/vmalert/web.qtpl:49 qw422016.N().S(`)`) //line app/vmalert/web.qtpl:49 } //line app/vmalert/web.qtpl:49 qw422016.N().S(` (every `) //line app/vmalert/web.qtpl:49 qw422016.N().FPrec(g.Interval, 0) //line app/vmalert/web.qtpl:49 qw422016.N().S(`s) `) //line app/vmalert/web.qtpl:50 if rNotOk[g.Name] > 0 { //line app/vmalert/web.qtpl:50 qw422016.N().S(``) //line app/vmalert/web.qtpl:50 qw422016.N().D(rNotOk[g.Name]) //line app/vmalert/web.qtpl:50 qw422016.N().S(` `) //line app/vmalert/web.qtpl:50 } //line app/vmalert/web.qtpl:50 qw422016.N().S(` `) //line app/vmalert/web.qtpl:51 qw422016.N().D(rOk[g.Name]) //line app/vmalert/web.qtpl:51 qw422016.N().S(`

`) //line app/vmalert/web.qtpl:52 qw422016.E().S(g.File) //line app/vmalert/web.qtpl:52 qw422016.N().S(`

`) //line app/vmalert/web.qtpl:53 if len(g.Params) > 0 { //line app/vmalert/web.qtpl:53 qw422016.N().S(`
Extra params `) //line app/vmalert/web.qtpl:55 for _, param := range g.Params { //line app/vmalert/web.qtpl:55 qw422016.N().S(` `) //line app/vmalert/web.qtpl:56 qw422016.E().S(param) //line app/vmalert/web.qtpl:56 qw422016.N().S(` `) //line app/vmalert/web.qtpl:57 } //line app/vmalert/web.qtpl:57 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:59 } //line app/vmalert/web.qtpl:59 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:71 for _, r := range g.Rules { //line app/vmalert/web.qtpl:71 qw422016.N().S(` `) //line app/vmalert/web.qtpl:104 } //line app/vmalert/web.qtpl:104 qw422016.N().S(`
Rule Samples Updated
`) //line app/vmalert/web.qtpl:76 if r.Type == "alerting" { //line app/vmalert/web.qtpl:76 qw422016.N().S(` alert: `) //line app/vmalert/web.qtpl:77 qw422016.E().S(r.Name) //line app/vmalert/web.qtpl:77 qw422016.N().S(` (for: `) //line app/vmalert/web.qtpl:77 qw422016.E().V(r.Duration) //line app/vmalert/web.qtpl:77 qw422016.N().S(` seconds) `) //line app/vmalert/web.qtpl:78 } else { //line app/vmalert/web.qtpl:78 qw422016.N().S(` record: `) //line app/vmalert/web.qtpl:79 qw422016.E().S(r.Name) //line app/vmalert/web.qtpl:79 qw422016.N().S(` `) //line app/vmalert/web.qtpl:80 } //line app/vmalert/web.qtpl:80 qw422016.N().S(`
`)
//line app/vmalert/web.qtpl:83
				qw422016.E().S(r.Query)
//line app/vmalert/web.qtpl:83
				qw422016.N().S(`
`) //line app/vmalert/web.qtpl:86 if len(r.Labels) > 0 { //line app/vmalert/web.qtpl:86 qw422016.N().S(` Labels:`) //line app/vmalert/web.qtpl:86 } //line app/vmalert/web.qtpl:86 qw422016.N().S(` `) //line app/vmalert/web.qtpl:87 for k, v := range r.Labels { //line app/vmalert/web.qtpl:87 qw422016.N().S(` `) //line app/vmalert/web.qtpl:88 qw422016.E().S(k) //line app/vmalert/web.qtpl:88 qw422016.N().S(`=`) //line app/vmalert/web.qtpl:88 qw422016.E().S(v) //line app/vmalert/web.qtpl:88 qw422016.N().S(` `) //line app/vmalert/web.qtpl:89 } //line app/vmalert/web.qtpl:89 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:91 if r.LastError != "" { //line app/vmalert/web.qtpl:91 qw422016.N().S(`
Error:
`) //line app/vmalert/web.qtpl:95 qw422016.E().S(r.LastError) //line app/vmalert/web.qtpl:95 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:98 } //line app/vmalert/web.qtpl:98 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:101 qw422016.N().D(r.LastSamples) //line app/vmalert/web.qtpl:101 qw422016.N().S(` `) //line app/vmalert/web.qtpl:102 qw422016.N().FPrec(time.Since(r.LastEvaluation).Seconds(), 3) //line app/vmalert/web.qtpl:102 qw422016.N().S(`s ago
`) //line app/vmalert/web.qtpl:108 } //line app/vmalert/web.qtpl:108 qw422016.N().S(` `) //line app/vmalert/web.qtpl:110 } else { //line app/vmalert/web.qtpl:110 qw422016.N().S(`

No items...

`) //line app/vmalert/web.qtpl:114 } //line app/vmalert/web.qtpl:114 qw422016.N().S(` `) //line app/vmalert/web.qtpl:116 tpl.StreamFooter(qw422016, r) //line app/vmalert/web.qtpl:116 qw422016.N().S(` `) //line app/vmalert/web.qtpl:118 } //line app/vmalert/web.qtpl:118 func WriteListGroups(qq422016 qtio422016.Writer, r *http.Request, groups []APIGroup) { //line app/vmalert/web.qtpl:118 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/web.qtpl:118 StreamListGroups(qw422016, r, groups) //line app/vmalert/web.qtpl:118 qt422016.ReleaseWriter(qw422016) //line app/vmalert/web.qtpl:118 } //line app/vmalert/web.qtpl:118 func ListGroups(r *http.Request, groups []APIGroup) string { //line app/vmalert/web.qtpl:118 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/web.qtpl:118 WriteListGroups(qb422016, r, groups) //line app/vmalert/web.qtpl:118 qs422016 := string(qb422016.B) //line app/vmalert/web.qtpl:118 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/web.qtpl:118 return qs422016 //line app/vmalert/web.qtpl:118 } //line app/vmalert/web.qtpl:121 func StreamListAlerts(qw422016 *qt422016.Writer, r *http.Request, groupAlerts []GroupAlerts) { //line app/vmalert/web.qtpl:121 qw422016.N().S(` `) //line app/vmalert/web.qtpl:122 tpl.StreamHeader(qw422016, r, navItems, "Alerts") //line app/vmalert/web.qtpl:122 qw422016.N().S(` `) //line app/vmalert/web.qtpl:123 if len(groupAlerts) > 0 { //line app/vmalert/web.qtpl:123 qw422016.N().S(` Collapse All Expand All `) //line app/vmalert/web.qtpl:126 for _, ga := range groupAlerts { //line app/vmalert/web.qtpl:126 qw422016.N().S(` `) //line app/vmalert/web.qtpl:127 g := ga.Group //line app/vmalert/web.qtpl:127 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:130 qw422016.E().S(g.Name) //line app/vmalert/web.qtpl:130 if g.Type != "prometheus" { //line app/vmalert/web.qtpl:130 qw422016.N().S(` (`) //line app/vmalert/web.qtpl:130 qw422016.E().S(g.Type) //line app/vmalert/web.qtpl:130 qw422016.N().S(`)`) //line app/vmalert/web.qtpl:130 } //line app/vmalert/web.qtpl:130 qw422016.N().S(` `) //line app/vmalert/web.qtpl:131 qw422016.N().D(len(ga.Alerts)) //line app/vmalert/web.qtpl:131 qw422016.N().S(`

`) //line app/vmalert/web.qtpl:133 qw422016.E().S(g.File) //line app/vmalert/web.qtpl:133 qw422016.N().S(`

`) //line app/vmalert/web.qtpl:136 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:145 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:147 for _, ruleID := range keys { //line app/vmalert/web.qtpl:147 qw422016.N().S(` `) //line app/vmalert/web.qtpl:149 defaultAR := alertsByRule[ruleID][0] var labelKeys []string for k := range defaultAR.Labels { labelKeys = append(labelKeys, k) } sort.Strings(labelKeys) //line app/vmalert/web.qtpl:155 qw422016.N().S(`
alert: `) //line app/vmalert/web.qtpl:157 qw422016.E().S(defaultAR.Name) //line app/vmalert/web.qtpl:157 qw422016.N().S(` (`) //line app/vmalert/web.qtpl:157 qw422016.N().D(len(alertsByRule[ruleID])) //line app/vmalert/web.qtpl:157 qw422016.N().S(`) | Source
expr:
`)
//line app/vmalert/web.qtpl:160
				qw422016.E().S(defaultAR.Expression)
//line app/vmalert/web.qtpl:160
				qw422016.N().S(`
`) //line app/vmalert/web.qtpl:172 for _, ar := range alertsByRule[ruleID] { //line app/vmalert/web.qtpl:172 qw422016.N().S(` `) //line app/vmalert/web.qtpl:189 } //line app/vmalert/web.qtpl:189 qw422016.N().S(`
Labels State Active at Value Link
`) //line app/vmalert/web.qtpl:175 for _, k := range labelKeys { //line app/vmalert/web.qtpl:175 qw422016.N().S(` `) //line app/vmalert/web.qtpl:176 qw422016.E().S(k) //line app/vmalert/web.qtpl:176 qw422016.N().S(`=`) //line app/vmalert/web.qtpl:176 qw422016.E().S(ar.Labels[k]) //line app/vmalert/web.qtpl:176 qw422016.N().S(` `) //line app/vmalert/web.qtpl:177 } //line app/vmalert/web.qtpl:177 qw422016.N().S(` `) //line app/vmalert/web.qtpl:179 streambadgeState(qw422016, ar.State) //line app/vmalert/web.qtpl:179 qw422016.N().S(` `) //line app/vmalert/web.qtpl:181 qw422016.E().S(ar.ActiveAt.Format("2006-01-02T15:04:05Z07:00")) //line app/vmalert/web.qtpl:181 qw422016.N().S(` `) //line app/vmalert/web.qtpl:182 if ar.Restored { //line app/vmalert/web.qtpl:182 streambadgeRestored(qw422016) //line app/vmalert/web.qtpl:182 } //line app/vmalert/web.qtpl:182 qw422016.N().S(` `) //line app/vmalert/web.qtpl:184 qw422016.E().S(ar.Value) //line app/vmalert/web.qtpl:184 qw422016.N().S(` Details
`) //line app/vmalert/web.qtpl:192 } //line app/vmalert/web.qtpl:192 qw422016.N().S(`

`) //line app/vmalert/web.qtpl:195 } //line app/vmalert/web.qtpl:195 qw422016.N().S(` `) //line app/vmalert/web.qtpl:197 } else { //line app/vmalert/web.qtpl:197 qw422016.N().S(`

No items...

`) //line app/vmalert/web.qtpl:201 } //line app/vmalert/web.qtpl:201 qw422016.N().S(` `) //line app/vmalert/web.qtpl:203 tpl.StreamFooter(qw422016, r) //line app/vmalert/web.qtpl:203 qw422016.N().S(` `) //line app/vmalert/web.qtpl:205 } //line app/vmalert/web.qtpl:205 func WriteListAlerts(qq422016 qtio422016.Writer, r *http.Request, groupAlerts []GroupAlerts) { //line app/vmalert/web.qtpl:205 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/web.qtpl:205 StreamListAlerts(qw422016, r, groupAlerts) //line app/vmalert/web.qtpl:205 qt422016.ReleaseWriter(qw422016) //line app/vmalert/web.qtpl:205 } //line app/vmalert/web.qtpl:205 func ListAlerts(r *http.Request, groupAlerts []GroupAlerts) string { //line app/vmalert/web.qtpl:205 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/web.qtpl:205 WriteListAlerts(qb422016, r, groupAlerts) //line app/vmalert/web.qtpl:205 qs422016 := string(qb422016.B) //line app/vmalert/web.qtpl:205 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/web.qtpl:205 return qs422016 //line app/vmalert/web.qtpl:205 } //line app/vmalert/web.qtpl:207 func StreamListTargets(qw422016 *qt422016.Writer, r *http.Request, targets map[notifier.TargetType][]notifier.Target) { //line app/vmalert/web.qtpl:207 qw422016.N().S(` `) //line app/vmalert/web.qtpl:208 tpl.StreamHeader(qw422016, r, navItems, "Notifiers") //line app/vmalert/web.qtpl:208 qw422016.N().S(` `) //line app/vmalert/web.qtpl:209 if len(targets) > 0 { //line app/vmalert/web.qtpl:209 qw422016.N().S(` Collapse All Expand All `) //line app/vmalert/web.qtpl:214 var keys []string for key := range targets { keys = append(keys, string(key)) } sort.Strings(keys) //line app/vmalert/web.qtpl:219 qw422016.N().S(` `) //line app/vmalert/web.qtpl:221 for i := range keys { //line app/vmalert/web.qtpl:221 qw422016.N().S(` `) //line app/vmalert/web.qtpl:222 typeK, ns := keys[i], targets[notifier.TargetType(keys[i])] count := len(ns) //line app/vmalert/web.qtpl:224 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:227 qw422016.E().S(typeK) //line app/vmalert/web.qtpl:227 qw422016.N().S(` (`) //line app/vmalert/web.qtpl:227 qw422016.N().D(count) //line app/vmalert/web.qtpl:227 qw422016.N().S(`)
`) //line app/vmalert/web.qtpl:238 for _, n := range ns { //line app/vmalert/web.qtpl:238 qw422016.N().S(` `) //line app/vmalert/web.qtpl:247 } //line app/vmalert/web.qtpl:247 qw422016.N().S(`
Labels Address
`) //line app/vmalert/web.qtpl:241 for _, l := range n.Labels { //line app/vmalert/web.qtpl:241 qw422016.N().S(` `) //line app/vmalert/web.qtpl:242 qw422016.E().S(l.Name) //line app/vmalert/web.qtpl:242 qw422016.N().S(`=`) //line app/vmalert/web.qtpl:242 qw422016.E().S(l.Value) //line app/vmalert/web.qtpl:242 qw422016.N().S(` `) //line app/vmalert/web.qtpl:243 } //line app/vmalert/web.qtpl:243 qw422016.N().S(` `) //line app/vmalert/web.qtpl:245 qw422016.E().S(n.Notifier.Addr()) //line app/vmalert/web.qtpl:245 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:251 } //line app/vmalert/web.qtpl:251 qw422016.N().S(` `) //line app/vmalert/web.qtpl:253 } else { //line app/vmalert/web.qtpl:253 qw422016.N().S(`

No items...

`) //line app/vmalert/web.qtpl:257 } //line app/vmalert/web.qtpl:257 qw422016.N().S(` `) //line app/vmalert/web.qtpl:259 tpl.StreamFooter(qw422016, r) //line app/vmalert/web.qtpl:259 qw422016.N().S(` `) //line app/vmalert/web.qtpl:261 } //line app/vmalert/web.qtpl:261 func WriteListTargets(qq422016 qtio422016.Writer, r *http.Request, targets map[notifier.TargetType][]notifier.Target) { //line app/vmalert/web.qtpl:261 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/web.qtpl:261 StreamListTargets(qw422016, r, targets) //line app/vmalert/web.qtpl:261 qt422016.ReleaseWriter(qw422016) //line app/vmalert/web.qtpl:261 } //line app/vmalert/web.qtpl:261 func ListTargets(r *http.Request, targets map[notifier.TargetType][]notifier.Target) string { //line app/vmalert/web.qtpl:261 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/web.qtpl:261 WriteListTargets(qb422016, r, targets) //line app/vmalert/web.qtpl:261 qs422016 := string(qb422016.B) //line app/vmalert/web.qtpl:261 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/web.qtpl:261 return qs422016 //line app/vmalert/web.qtpl:261 } //line app/vmalert/web.qtpl:263 func StreamAlert(qw422016 *qt422016.Writer, r *http.Request, alert *APIAlert) { //line app/vmalert/web.qtpl:263 qw422016.N().S(` `) //line app/vmalert/web.qtpl:264 tpl.StreamHeader(qw422016, r, navItems, "") //line app/vmalert/web.qtpl:264 qw422016.N().S(` `) //line app/vmalert/web.qtpl:266 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:277 qw422016.N().S(`
`) //line app/vmalert/web.qtpl:278 qw422016.E().S(alert.Name) //line app/vmalert/web.qtpl:278 qw422016.N().S(``) //line app/vmalert/web.qtpl:278 qw422016.E().S(alert.State) //line app/vmalert/web.qtpl:278 qw422016.N().S(`
Active at
`) //line app/vmalert/web.qtpl:285 qw422016.E().S(alert.ActiveAt.Format("2006-01-02T15:04:05Z07:00")) //line app/vmalert/web.qtpl:285 qw422016.N().S(`
Expr
`)
//line app/vmalert/web.qtpl:295
	qw422016.E().S(alert.Expression)
//line app/vmalert/web.qtpl:295
	qw422016.N().S(`
Labels
`) //line app/vmalert/web.qtpl:305 for _, k := range labelKeys { //line app/vmalert/web.qtpl:305 qw422016.N().S(` `) //line app/vmalert/web.qtpl:306 qw422016.E().S(k) //line app/vmalert/web.qtpl:306 qw422016.N().S(`=`) //line app/vmalert/web.qtpl:306 qw422016.E().S(alert.Labels[k]) //line app/vmalert/web.qtpl:306 qw422016.N().S(` `) //line app/vmalert/web.qtpl:307 } //line app/vmalert/web.qtpl:307 qw422016.N().S(`
Annotations
`) //line app/vmalert/web.qtpl:317 for _, k := range annotationKeys { //line app/vmalert/web.qtpl:317 qw422016.N().S(` `) //line app/vmalert/web.qtpl:318 qw422016.E().S(k) //line app/vmalert/web.qtpl:318 qw422016.N().S(`:

`) //line app/vmalert/web.qtpl:319 qw422016.E().S(alert.Annotations[k]) //line app/vmalert/web.qtpl:319 qw422016.N().S(`

`) //line app/vmalert/web.qtpl:320 } //line app/vmalert/web.qtpl:320 qw422016.N().S(`
Group
Source link
`) //line app/vmalert/web.qtpl:344 tpl.StreamFooter(qw422016, r) //line app/vmalert/web.qtpl:344 qw422016.N().S(` `) //line app/vmalert/web.qtpl:346 } //line app/vmalert/web.qtpl:346 func WriteAlert(qq422016 qtio422016.Writer, r *http.Request, alert *APIAlert) { //line app/vmalert/web.qtpl:346 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/web.qtpl:346 StreamAlert(qw422016, r, alert) //line app/vmalert/web.qtpl:346 qt422016.ReleaseWriter(qw422016) //line app/vmalert/web.qtpl:346 } //line app/vmalert/web.qtpl:346 func Alert(r *http.Request, alert *APIAlert) string { //line app/vmalert/web.qtpl:346 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/web.qtpl:346 WriteAlert(qb422016, r, alert) //line app/vmalert/web.qtpl:346 qs422016 := string(qb422016.B) //line app/vmalert/web.qtpl:346 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/web.qtpl:346 return qs422016 //line app/vmalert/web.qtpl:346 } //line app/vmalert/web.qtpl:348 func streambadgeState(qw422016 *qt422016.Writer, state string) { //line app/vmalert/web.qtpl:348 qw422016.N().S(` `) //line app/vmalert/web.qtpl:350 badgeClass := "bg-warning text-dark" if state == "firing" { badgeClass = "bg-danger" } //line app/vmalert/web.qtpl:354 qw422016.N().S(` `) //line app/vmalert/web.qtpl:355 qw422016.E().S(state) //line app/vmalert/web.qtpl:355 qw422016.N().S(` `) //line app/vmalert/web.qtpl:356 } //line app/vmalert/web.qtpl:356 func writebadgeState(qq422016 qtio422016.Writer, state string) { //line app/vmalert/web.qtpl:356 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/web.qtpl:356 streambadgeState(qw422016, state) //line app/vmalert/web.qtpl:356 qt422016.ReleaseWriter(qw422016) //line app/vmalert/web.qtpl:356 } //line app/vmalert/web.qtpl:356 func badgeState(state string) string { //line app/vmalert/web.qtpl:356 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/web.qtpl:356 writebadgeState(qb422016, state) //line app/vmalert/web.qtpl:356 qs422016 := string(qb422016.B) //line app/vmalert/web.qtpl:356 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/web.qtpl:356 return qs422016 //line app/vmalert/web.qtpl:356 } //line app/vmalert/web.qtpl:358 func streambadgeRestored(qw422016 *qt422016.Writer) { //line app/vmalert/web.qtpl:358 qw422016.N().S(` restored `) //line app/vmalert/web.qtpl:360 } //line app/vmalert/web.qtpl:360 func writebadgeRestored(qq422016 qtio422016.Writer) { //line app/vmalert/web.qtpl:360 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/web.qtpl:360 streambadgeRestored(qw422016) //line app/vmalert/web.qtpl:360 qt422016.ReleaseWriter(qw422016) //line app/vmalert/web.qtpl:360 } //line app/vmalert/web.qtpl:360 func badgeRestored() string { //line app/vmalert/web.qtpl:360 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/web.qtpl:360 writebadgeRestored(qb422016) //line app/vmalert/web.qtpl:360 qs422016 := string(qb422016.B) //line app/vmalert/web.qtpl:360 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/web.qtpl:360 return qs422016 //line app/vmalert/web.qtpl:360 }