2019-05-22 21:16:55 +00:00
|
|
|
// Code generated by qtc from "label_values_response.qtpl". DO NOT EDIT.
|
|
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
|
|
|
|
// LabelValuesResponse generates response for /api/v1/label/<labelName>/values .See https://prometheus.io/docs/prometheus/latest/querying/api/#querying-label-values
|
|
|
|
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:4
|
|
|
|
package prometheus
|
|
|
|
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:4
|
|
|
|
import (
|
|
|
|
qtio422016 "io"
|
|
|
|
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
|
|
)
|
|
|
|
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:4
|
|
|
|
var (
|
|
|
|
_ = qtio422016.Copy
|
|
|
|
_ = qt422016.AcquireByteBuffer
|
|
|
|
)
|
|
|
|
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:4
|
2020-11-14 10:36:21 +00:00
|
|
|
func StreamLabelValuesResponse(qw422016 *qt422016.Writer, isPartial bool, labelValues []string) {
|
2019-05-22 21:16:55 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:4
|
2020-11-14 10:36:21 +00:00
|
|
|
qw422016.N().S(`{"status":"success","isPartial":`)
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:7
|
|
|
|
if isPartial {
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:7
|
|
|
|
qw422016.N().S(`true`)
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:7
|
|
|
|
} else {
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:7
|
|
|
|
qw422016.N().S(`false`)
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:7
|
|
|
|
}
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:7
|
|
|
|
qw422016.N().S(`,"data":[`)
|
2019-05-22 21:16:55 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:9
|
2020-11-14 10:36:21 +00:00
|
|
|
for i, labelValue := range labelValues {
|
2019-05-22 21:16:55 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:10
|
2020-11-14 10:36:21 +00:00
|
|
|
qw422016.N().Q(labelValue)
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:11
|
2019-05-22 21:16:55 +00:00
|
|
|
if i+1 < len(labelValues) {
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:11
|
2019-05-22 21:16:55 +00:00
|
|
|
qw422016.N().S(`,`)
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:11
|
2020-11-14 10:36:21 +00:00
|
|
|
}
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:12
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:12
|
2019-05-22 21:16:55 +00:00
|
|
|
qw422016.N().S(`]}`)
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
|
|
|
func WriteLabelValuesResponse(qq422016 qtio422016.Writer, isPartial bool, labelValues []string) {
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
|
|
|
StreamLabelValuesResponse(qw422016, isPartial, labelValues)
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
|
|
|
func LabelValuesResponse(isPartial bool, labelValues []string) string {
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
|
|
|
WriteLabelValuesResponse(qb422016, isPartial, labelValues)
|
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
return qs422016
|
2020-11-14 10:36:21 +00:00
|
|
|
//line app/vmselect/prometheus/label_values_response.qtpl:15
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|