2020-02-23 11:35:47 +00:00
|
|
|
package promremotewrite
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/common"
|
2020-07-23 10:33:10 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/relabel"
|
2020-02-23 11:35:47 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompb"
|
2021-01-12 22:52:50 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
|
|
|
parserCommon "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
|
2023-02-13 18:46:50 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/promremotewrite/stream"
|
2020-02-23 11:35:47 +00:00
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
rowsInserted = metrics.NewCounter(`vm_rows_inserted_total{type="promremotewrite"}`)
|
|
|
|
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="promremotewrite"}`)
|
|
|
|
)
|
|
|
|
|
|
|
|
// InsertHandler processes remote write for prometheus.
|
|
|
|
func InsertHandler(req *http.Request) error {
|
2021-01-12 22:52:50 +00:00
|
|
|
extraLabels, err := parserCommon.GetExtraLabels(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-02-21 02:38:49 +00:00
|
|
|
isVMRemoteWrite := req.Header.Get("Content-Encoding") == "zstd"
|
|
|
|
return stream.Parse(req.Body, isVMRemoteWrite, func(tss []prompb.TimeSeries) error {
|
2023-01-07 02:59:39 +00:00
|
|
|
return insertRows(tss, extraLabels)
|
2020-02-23 11:35:47 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-01-12 22:52:50 +00:00
|
|
|
func insertRows(timeseries []prompb.TimeSeries, extraLabels []prompbmarshal.Label) error {
|
2020-02-23 11:35:47 +00:00
|
|
|
ctx := common.GetInsertCtx()
|
|
|
|
defer common.PutInsertCtx(ctx)
|
|
|
|
|
|
|
|
rowsLen := 0
|
|
|
|
for i := range timeseries {
|
|
|
|
rowsLen += len(timeseries[i].Samples)
|
|
|
|
}
|
|
|
|
ctx.Reset(rowsLen)
|
|
|
|
rowsTotal := 0
|
2020-07-23 10:33:10 +00:00
|
|
|
hasRelabeling := relabel.HasRelabeling()
|
2020-02-23 11:35:47 +00:00
|
|
|
for i := range timeseries {
|
|
|
|
ts := ×eries[i]
|
2020-10-09 10:29:27 +00:00
|
|
|
rowsTotal += len(ts.Samples)
|
2020-07-23 09:50:41 +00:00
|
|
|
ctx.Labels = ctx.Labels[:0]
|
|
|
|
srcLabels := ts.Labels
|
|
|
|
for _, srcLabel := range srcLabels {
|
2024-01-14 20:33:19 +00:00
|
|
|
ctx.AddLabel(srcLabel.Name, srcLabel.Value)
|
2020-07-23 09:50:41 +00:00
|
|
|
}
|
2021-01-12 22:52:50 +00:00
|
|
|
for j := range extraLabels {
|
|
|
|
label := &extraLabels[j]
|
|
|
|
ctx.AddLabel(label.Name, label.Value)
|
|
|
|
}
|
2020-07-23 10:33:10 +00:00
|
|
|
if hasRelabeling {
|
|
|
|
ctx.ApplyRelabeling()
|
|
|
|
}
|
2020-07-02 16:42:12 +00:00
|
|
|
if len(ctx.Labels) == 0 {
|
|
|
|
// Skip metric without labels.
|
|
|
|
continue
|
|
|
|
}
|
2021-03-31 20:12:56 +00:00
|
|
|
ctx.SortLabelsIfNeeded()
|
2020-02-23 11:35:47 +00:00
|
|
|
var metricNameRaw []byte
|
2020-07-24 20:19:49 +00:00
|
|
|
var err error
|
2020-09-26 01:13:10 +00:00
|
|
|
samples := ts.Samples
|
|
|
|
for i := range samples {
|
|
|
|
r := &samples[i]
|
2020-07-24 20:19:49 +00:00
|
|
|
metricNameRaw, err = ctx.WriteDataPointExt(metricNameRaw, ctx.Labels, r.Timestamp, r.Value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rowsInserted.Add(rowsTotal)
|
|
|
|
rowsPerInsert.Update(float64(rowsTotal))
|
|
|
|
return ctx.FlushBufs()
|
|
|
|
}
|