2020-04-06 11:44:03 +00:00
|
|
|
// Code generated by qtc from "alertmanager_request.qtpl". DO NOT EDIT.
|
|
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:1
|
2020-04-06 11:44:03 +00:00
|
|
|
package notifier
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:1
|
2020-04-06 11:44:03 +00:00
|
|
|
import (
|
|
|
|
"time"
|
2022-04-09 06:21:16 +00:00
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promrelabel"
|
2020-04-06 11:44:03 +00:00
|
|
|
)
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:8
|
2020-04-06 11:44:03 +00:00
|
|
|
import (
|
|
|
|
qtio422016 "io"
|
|
|
|
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
|
|
)
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:8
|
2020-04-06 11:44:03 +00:00
|
|
|
var (
|
|
|
|
_ = qtio422016.Copy
|
|
|
|
_ = qt422016.AcquireByteBuffer
|
|
|
|
)
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:8
|
2022-04-09 06:21:16 +00:00
|
|
|
func streamamRequest(qw422016 *qt422016.Writer, alerts []Alert, generatorURL func(Alert) string, relabelCfg *promrelabel.ParsedConfigs) {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:8
|
2022-04-09 06:21:16 +00:00
|
|
|
qw422016.N().S(`[`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:10
|
2022-04-09 06:21:16 +00:00
|
|
|
for i, alert := range alerts {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:10
|
2022-04-09 06:21:16 +00:00
|
|
|
qw422016.N().S(`{"startsAt":`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:12
|
2022-04-09 06:21:16 +00:00
|
|
|
qw422016.N().Q(alert.Start.Format(time.RFC3339Nano))
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:12
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`,"generatorURL":`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:13
|
2020-06-21 10:32:46 +00:00
|
|
|
qw422016.N().Q(generatorURL(alert))
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:13
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`,`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:14
|
2020-04-06 11:44:03 +00:00
|
|
|
if !alert.End.IsZero() {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:14
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`"endsAt":`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:15
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().Q(alert.End.Format(time.RFC3339Nano))
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:15
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`,`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:16
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:16
|
|
|
|
qw422016.N().S(`"labels": {`)
|
|
|
|
//line alertmanager_request.qtpl:18
|
2022-04-09 06:21:16 +00:00
|
|
|
lbls := alert.toPromLabels(relabelCfg)
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:19
|
|
|
|
ll := len(lbls)
|
|
|
|
|
|
|
|
//line alertmanager_request.qtpl:20
|
|
|
|
for idx, l := range lbls {
|
|
|
|
//line alertmanager_request.qtpl:21
|
2022-04-09 06:21:16 +00:00
|
|
|
qw422016.N().Q(l.Name)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:21
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`:`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:21
|
2022-04-09 06:21:16 +00:00
|
|
|
qw422016.N().Q(l.Value)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:21
|
|
|
|
if idx != ll-1 {
|
|
|
|
//line alertmanager_request.qtpl:21
|
|
|
|
qw422016.N().S(`,`)
|
|
|
|
//line alertmanager_request.qtpl:21
|
|
|
|
}
|
|
|
|
//line alertmanager_request.qtpl:22
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:22
|
2022-04-09 06:21:16 +00:00
|
|
|
qw422016.N().S(`},"annotations": {`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:25
|
2020-04-06 11:44:03 +00:00
|
|
|
c := len(alert.Annotations)
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:26
|
2020-04-06 11:44:03 +00:00
|
|
|
for k, v := range alert.Annotations {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:27
|
2020-04-06 11:44:03 +00:00
|
|
|
c = c - 1
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:28
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().Q(k)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:28
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`:`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:28
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().Q(v)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:28
|
2020-04-06 11:44:03 +00:00
|
|
|
if c > 0 {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:28
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`,`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:28
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:29
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:29
|
2022-04-09 06:21:16 +00:00
|
|
|
qw422016.N().S(`}}`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:32
|
2020-04-06 11:44:03 +00:00
|
|
|
if i != len(alerts)-1 {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:32
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`,`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:32
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:33
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:33
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016.N().S(`]`)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2022-04-09 06:21:16 +00:00
|
|
|
func writeamRequest(qq422016 qtio422016.Writer, alerts []Alert, generatorURL func(Alert) string, relabelCfg *promrelabel.ParsedConfigs) {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2022-04-09 06:21:16 +00:00
|
|
|
streamamRequest(qw422016, alerts, generatorURL, relabelCfg)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2022-04-09 06:21:16 +00:00
|
|
|
func amRequest(alerts []Alert, generatorURL func(Alert) string, relabelCfg *promrelabel.ParsedConfigs) string {
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2022-04-09 06:21:16 +00:00
|
|
|
writeamRequest(qb422016, alerts, generatorURL, relabelCfg)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
return qs422016
|
2022-10-10 07:44:58 +00:00
|
|
|
//line alertmanager_request.qtpl:35
|
2020-04-06 11:44:03 +00:00
|
|
|
}
|