mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
49a0011837
This should reduce CPU usage a bit when `-relabelConfig` isn't set
68 lines
2.2 KiB
Go
68 lines
2.2 KiB
Go
package promremotewrite
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/netstorage"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/relabel"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompb"
|
|
parser "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/promremotewrite"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/tenantmetrics"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/writeconcurrencylimiter"
|
|
"github.com/VictoriaMetrics/metrics"
|
|
)
|
|
|
|
var (
|
|
rowsInserted = tenantmetrics.NewCounterMap(`vm_rows_inserted_total{type="promremotewrite"}`)
|
|
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="promremotewrite"}`)
|
|
)
|
|
|
|
// InsertHandler processes remote write for prometheus.
|
|
func InsertHandler(at *auth.Token, req *http.Request) error {
|
|
return writeconcurrencylimiter.Do(func() error {
|
|
return parser.ParseStream(req, func(timeseries []prompb.TimeSeries) error {
|
|
return insertRows(at, timeseries)
|
|
})
|
|
})
|
|
}
|
|
|
|
func insertRows(at *auth.Token, timeseries []prompb.TimeSeries) error {
|
|
ctx := netstorage.GetInsertCtx()
|
|
defer netstorage.PutInsertCtx(ctx)
|
|
|
|
ctx.Reset() // This line is required for initializing ctx internals.
|
|
rowsTotal := 0
|
|
hasRelabeling := relabel.HasRelabeling()
|
|
for i := range timeseries {
|
|
ts := ×eries[i]
|
|
ctx.Labels = ctx.Labels[:0]
|
|
srcLabels := ts.Labels
|
|
for _, srcLabel := range srcLabels {
|
|
ctx.AddLabelBytes(srcLabel.Name, srcLabel.Value)
|
|
}
|
|
if hasRelabeling {
|
|
ctx.ApplyRelabeling()
|
|
}
|
|
if len(ctx.Labels) == 0 {
|
|
// Skip metric without labels.
|
|
continue
|
|
}
|
|
storageNodeIdx := ctx.GetStorageNodeIdx(at, ctx.Labels)
|
|
ctx.MetricNameBuf = ctx.MetricNameBuf[:0]
|
|
for i := range ts.Samples {
|
|
r := &ts.Samples[i]
|
|
if len(ctx.MetricNameBuf) == 0 {
|
|
ctx.MetricNameBuf = storage.MarshalMetricNameRaw(ctx.MetricNameBuf[:0], at.AccountID, at.ProjectID, ctx.Labels)
|
|
}
|
|
if err := ctx.WriteDataPointExt(at, storageNodeIdx, ctx.MetricNameBuf, r.Timestamp, r.Value); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
rowsTotal += len(ts.Samples)
|
|
}
|
|
rowsInserted.Get(at).Add(rowsTotal)
|
|
rowsPerInsert.Update(float64(rowsTotal))
|
|
return ctx.FlushBufs()
|
|
}
|