mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
2ac5f00d98
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/891 This commit also adds `"isPartial":{true|false}` field to `/api/v1/*` responses. `"isPartial":true` is set when the response is based on a partial data because some of vmstorage nodes weren't available during query processing.
95 lines
3.4 KiB
Go
95 lines
3.4 KiB
Go
// Code generated by qtc from "series_response.qtpl". DO NOT EDIT.
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:1
|
|
package prometheus
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:1
|
|
import (
|
|
"github.com/valyala/quicktemplate"
|
|
)
|
|
|
|
// SeriesResponse generates response for /api/v1/series.See https://prometheus.io/docs/prometheus/latest/querying/api/#finding-series-by-label-matchers
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:8
|
|
import (
|
|
qtio422016 "io"
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
)
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:8
|
|
var (
|
|
_ = qtio422016.Copy
|
|
_ = qt422016.AcquireByteBuffer
|
|
)
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:8
|
|
func StreamSeriesResponse(qw422016 *qt422016.Writer, isPartial bool, resultsCh <-chan *quicktemplate.ByteBuffer) {
|
|
//line app/vmselect/prometheus/series_response.qtpl:8
|
|
qw422016.N().S(`{"status":"success","isPartial":`)
|
|
//line app/vmselect/prometheus/series_response.qtpl:11
|
|
if isPartial {
|
|
//line app/vmselect/prometheus/series_response.qtpl:11
|
|
qw422016.N().S(`true`)
|
|
//line app/vmselect/prometheus/series_response.qtpl:11
|
|
} else {
|
|
//line app/vmselect/prometheus/series_response.qtpl:11
|
|
qw422016.N().S(`false`)
|
|
//line app/vmselect/prometheus/series_response.qtpl:11
|
|
}
|
|
//line app/vmselect/prometheus/series_response.qtpl:11
|
|
qw422016.N().S(`,"data":[`)
|
|
//line app/vmselect/prometheus/series_response.qtpl:13
|
|
bb, ok := <-resultsCh
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:14
|
|
if ok {
|
|
//line app/vmselect/prometheus/series_response.qtpl:15
|
|
qw422016.N().Z(bb.B)
|
|
//line app/vmselect/prometheus/series_response.qtpl:16
|
|
quicktemplate.ReleaseByteBuffer(bb)
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:17
|
|
for bb := range resultsCh {
|
|
//line app/vmselect/prometheus/series_response.qtpl:17
|
|
qw422016.N().S(`,`)
|
|
//line app/vmselect/prometheus/series_response.qtpl:18
|
|
qw422016.N().Z(bb.B)
|
|
//line app/vmselect/prometheus/series_response.qtpl:19
|
|
quicktemplate.ReleaseByteBuffer(bb)
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:20
|
|
}
|
|
//line app/vmselect/prometheus/series_response.qtpl:21
|
|
}
|
|
//line app/vmselect/prometheus/series_response.qtpl:21
|
|
qw422016.N().S(`]}`)
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
}
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
func WriteSeriesResponse(qq422016 qtio422016.Writer, isPartial bool, resultsCh <-chan *quicktemplate.ByteBuffer) {
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
StreamSeriesResponse(qw422016, isPartial, resultsCh)
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
}
|
|
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
func SeriesResponse(isPartial bool, resultsCh <-chan *quicktemplate.ByteBuffer) string {
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
WriteSeriesResponse(qb422016, isPartial, resultsCh)
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
return qs422016
|
|
//line app/vmselect/prometheus/series_response.qtpl:24
|
|
}
|