mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
101 lines
3.9 KiB
Go
101 lines
3.9 KiB
Go
// Code generated by qtc from "alert_manager_request.qtpl". DO NOT EDIT.
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:1
|
|
package provider
|
|
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:1
|
|
import (
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/config"
|
|
"time"
|
|
)
|
|
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:7
|
|
import (
|
|
qtio422016 "io"
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
)
|
|
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:7
|
|
var (
|
|
_ = qtio422016.Copy
|
|
_ = qt422016.AcquireByteBuffer
|
|
)
|
|
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:7
|
|
func streamamRequest(qw422016 *qt422016.Writer, alert *config.Alert, generatorURL string) {
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:7
|
|
qw422016.N().S(`{"startsAt":`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:9
|
|
qw422016.N().Q(alert.Start.Format(time.RFC3339Nano))
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:9
|
|
qw422016.N().S(`,"generatorURL":`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:10
|
|
qw422016.N().Q(generatorURL)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:10
|
|
qw422016.N().S(`,`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:11
|
|
if !alert.End.IsZero() {
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:11
|
|
qw422016.N().S(`"endsAt":`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:12
|
|
qw422016.N().Q(alert.End.Format(time.RFC3339Nano))
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:12
|
|
qw422016.N().S(`,`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:13
|
|
}
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:13
|
|
qw422016.N().S(`"labels": {"alertname":`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:15
|
|
qw422016.N().Q(alert.Name)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:16
|
|
for k, v := range alert.Labels {
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:16
|
|
qw422016.N().S(`,`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:17
|
|
qw422016.N().Q(k)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:17
|
|
qw422016.N().S(`:`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:17
|
|
qw422016.N().Q(v)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:18
|
|
}
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:18
|
|
qw422016.N().S(`},"annotations": {"summary":`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:21
|
|
qw422016.N().Q(alert.Annotations.Summary)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:21
|
|
qw422016.N().S(`,"description":`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:22
|
|
qw422016.N().Q(alert.Annotations.Description)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:22
|
|
qw422016.N().S(`}}`)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
}
|
|
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
func writeamRequest(qq422016 qtio422016.Writer, alert *config.Alert, generatorURL string) {
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
streamamRequest(qw422016, alert, generatorURL)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
}
|
|
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
func amRequest(alert *config.Alert, generatorURL string) string {
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
writeamRequest(qb422016, alert, generatorURL)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
return qs422016
|
|
//line app/vmalert/provider/alert_manager_request.qtpl:25
|
|
}
|