mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
215 lines
7.1 KiB
Go
215 lines
7.1 KiB
Go
// Code generated by qtc from "util.qtpl". DO NOT EDIT.
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:1
|
|
package prometheus
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:1
|
|
import (
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
|
)
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:7
|
|
import (
|
|
qtio422016 "io"
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
)
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:7
|
|
var (
|
|
_ = qtio422016.Copy
|
|
_ = qt422016.AcquireByteBuffer
|
|
)
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:7
|
|
func streammetricNameObject(qw422016 *qt422016.Writer, mn *storage.MetricName) {
|
|
//line app/vmselect/prometheus/util.qtpl:7
|
|
qw422016.N().S(`{`)
|
|
//line app/vmselect/prometheus/util.qtpl:9
|
|
if len(mn.MetricGroup) > 0 {
|
|
//line app/vmselect/prometheus/util.qtpl:9
|
|
qw422016.N().S(`"__name__":`)
|
|
//line app/vmselect/prometheus/util.qtpl:10
|
|
qw422016.N().QZ(mn.MetricGroup)
|
|
//line app/vmselect/prometheus/util.qtpl:10
|
|
if len(mn.Tags) > 0 {
|
|
//line app/vmselect/prometheus/util.qtpl:10
|
|
qw422016.N().S(`,`)
|
|
//line app/vmselect/prometheus/util.qtpl:10
|
|
}
|
|
//line app/vmselect/prometheus/util.qtpl:11
|
|
}
|
|
//line app/vmselect/prometheus/util.qtpl:12
|
|
for j := range mn.Tags {
|
|
//line app/vmselect/prometheus/util.qtpl:13
|
|
tag := &mn.Tags[j]
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:14
|
|
qw422016.N().QZ(tag.Key)
|
|
//line app/vmselect/prometheus/util.qtpl:14
|
|
qw422016.N().S(`:`)
|
|
//line app/vmselect/prometheus/util.qtpl:14
|
|
qw422016.N().QZ(tag.Value)
|
|
//line app/vmselect/prometheus/util.qtpl:14
|
|
if j+1 < len(mn.Tags) {
|
|
//line app/vmselect/prometheus/util.qtpl:14
|
|
qw422016.N().S(`,`)
|
|
//line app/vmselect/prometheus/util.qtpl:14
|
|
}
|
|
//line app/vmselect/prometheus/util.qtpl:15
|
|
}
|
|
//line app/vmselect/prometheus/util.qtpl:15
|
|
qw422016.N().S(`}`)
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
func writemetricNameObject(qq422016 qtio422016.Writer, mn *storage.MetricName) {
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
streammetricNameObject(qw422016, mn)
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
func metricNameObject(mn *storage.MetricName) string {
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
writemetricNameObject(qb422016, mn)
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
return qs422016
|
|
//line app/vmselect/prometheus/util.qtpl:17
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:19
|
|
func streammetricRow(qw422016 *qt422016.Writer, timestamp int64, value float64) {
|
|
//line app/vmselect/prometheus/util.qtpl:19
|
|
qw422016.N().S(`[`)
|
|
//line app/vmselect/prometheus/util.qtpl:20
|
|
qw422016.N().F(float64(timestamp) / 1e3)
|
|
//line app/vmselect/prometheus/util.qtpl:20
|
|
qw422016.N().S(`,"`)
|
|
//line app/vmselect/prometheus/util.qtpl:20
|
|
qw422016.N().F(value)
|
|
//line app/vmselect/prometheus/util.qtpl:20
|
|
qw422016.N().S(`"]`)
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
func writemetricRow(qq422016 qtio422016.Writer, timestamp int64, value float64) {
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
streammetricRow(qw422016, timestamp, value)
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
func metricRow(timestamp int64, value float64) string {
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
writemetricRow(qb422016, timestamp, value)
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
return qs422016
|
|
//line app/vmselect/prometheus/util.qtpl:21
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:23
|
|
func streamvaluesWithTimestamps(qw422016 *qt422016.Writer, values []float64, timestamps []int64) {
|
|
//line app/vmselect/prometheus/util.qtpl:23
|
|
qw422016.N().S(`[`)
|
|
//line app/vmselect/prometheus/util.qtpl:25
|
|
if len(values) == 0 {
|
|
//line app/vmselect/prometheus/util.qtpl:26
|
|
return
|
|
//line app/vmselect/prometheus/util.qtpl:27
|
|
}
|
|
//line app/vmselect/prometheus/util.qtpl:28
|
|
/* inline metricRow call here for the sake of performance optimization */
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:28
|
|
qw422016.N().S(`[`)
|
|
//line app/vmselect/prometheus/util.qtpl:29
|
|
qw422016.N().F(float64(timestamps[0]) / 1e3)
|
|
//line app/vmselect/prometheus/util.qtpl:29
|
|
qw422016.N().S(`,"`)
|
|
//line app/vmselect/prometheus/util.qtpl:29
|
|
qw422016.N().F(values[0])
|
|
//line app/vmselect/prometheus/util.qtpl:29
|
|
qw422016.N().S(`"]`)
|
|
//line app/vmselect/prometheus/util.qtpl:31
|
|
timestamps = timestamps[1:]
|
|
values = values[1:]
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:34
|
|
if len(values) > 0 {
|
|
//line app/vmselect/prometheus/util.qtpl:36
|
|
// Remove bounds check inside the loop below
|
|
_ = timestamps[len(values)-1]
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:39
|
|
for i, v := range values {
|
|
//line app/vmselect/prometheus/util.qtpl:40
|
|
/* inline metricRow call here for the sake of performance optimization */
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:40
|
|
qw422016.N().S(`,[`)
|
|
//line app/vmselect/prometheus/util.qtpl:41
|
|
qw422016.N().F(float64(timestamps[i]) / 1e3)
|
|
//line app/vmselect/prometheus/util.qtpl:41
|
|
qw422016.N().S(`,"`)
|
|
//line app/vmselect/prometheus/util.qtpl:41
|
|
qw422016.N().F(v)
|
|
//line app/vmselect/prometheus/util.qtpl:41
|
|
qw422016.N().S(`"]`)
|
|
//line app/vmselect/prometheus/util.qtpl:42
|
|
}
|
|
//line app/vmselect/prometheus/util.qtpl:43
|
|
}
|
|
//line app/vmselect/prometheus/util.qtpl:43
|
|
qw422016.N().S(`]`)
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
func writevaluesWithTimestamps(qq422016 qtio422016.Writer, values []float64, timestamps []int64) {
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
streamvaluesWithTimestamps(qw422016, values, timestamps)
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
}
|
|
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
func valuesWithTimestamps(values []float64, timestamps []int64) string {
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
writevaluesWithTimestamps(qb422016, values, timestamps)
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
return qs422016
|
|
//line app/vmselect/prometheus/util.qtpl:45
|
|
}
|