mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
a9ea3fee38
The context message can be extended by calling Donef. If there is no need to extend the message, then just call Done.
92 lines
3.4 KiB
Go
92 lines
3.4 KiB
Go
// Code generated by qtc from "labels_response.qtpl". DO NOT EDIT.
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:3
|
|
package prometheus
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:3
|
|
import (
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/querytracer"
|
|
)
|
|
|
|
// LabelsResponse generates response for /api/v1/labels .See https://prometheus.io/docs/prometheus/latest/querying/api/#getting-label-names
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:9
|
|
import (
|
|
qtio422016 "io"
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
)
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:9
|
|
var (
|
|
_ = qtio422016.Copy
|
|
_ = qt422016.AcquireByteBuffer
|
|
)
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:9
|
|
func StreamLabelsResponse(qw422016 *qt422016.Writer, isPartial bool, labels []string, qt *querytracer.Tracer) {
|
|
//line app/vmselect/prometheus/labels_response.qtpl:9
|
|
qw422016.N().S(`{"status":"success","isPartial":`)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:12
|
|
if isPartial {
|
|
//line app/vmselect/prometheus/labels_response.qtpl:12
|
|
qw422016.N().S(`true`)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:12
|
|
} else {
|
|
//line app/vmselect/prometheus/labels_response.qtpl:12
|
|
qw422016.N().S(`false`)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:12
|
|
}
|
|
//line app/vmselect/prometheus/labels_response.qtpl:12
|
|
qw422016.N().S(`,"data":[`)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:14
|
|
for i, label := range labels {
|
|
//line app/vmselect/prometheus/labels_response.qtpl:15
|
|
qw422016.N().Q(label)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:16
|
|
if i+1 < len(labels) {
|
|
//line app/vmselect/prometheus/labels_response.qtpl:16
|
|
qw422016.N().S(`,`)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:16
|
|
}
|
|
//line app/vmselect/prometheus/labels_response.qtpl:17
|
|
}
|
|
//line app/vmselect/prometheus/labels_response.qtpl:17
|
|
qw422016.N().S(`]`)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:20
|
|
qt.Printf("generate response for %d labels", len(labels))
|
|
qt.Done()
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:23
|
|
streamdumpQueryTrace(qw422016, qt)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:23
|
|
qw422016.N().S(`}`)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
}
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
func WriteLabelsResponse(qq422016 qtio422016.Writer, isPartial bool, labels []string, qt *querytracer.Tracer) {
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
StreamLabelsResponse(qw422016, isPartial, labels, qt)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
}
|
|
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
func LabelsResponse(isPartial bool, labels []string, qt *querytracer.Tracer) string {
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
WriteLabelsResponse(qb422016, isPartial, labels, qt)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
return qs422016
|
|
//line app/vmselect/prometheus/labels_response.qtpl:25
|
|
}
|