2020-03-10 19:35:58 +02:00
|
|
|
package csvimport
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/common"
|
2020-07-23 13:33:10 +03:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/relabel"
|
2025-07-29 14:48:55 +03:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompb"
|
2025-03-18 16:24:48 +01:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/csvimport"
|
2023-02-13 10:25:37 -08:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/csvimport/stream"
|
2025-03-18 16:24:48 +01:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/protoparserutil"
|
2020-03-10 19:35:58 +02:00
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
rowsInserted = metrics.NewCounter(`vm_rows_inserted_total{type="csvimport"}`)
|
|
|
|
|
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="csvimport"}`)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// InsertHandler processes /api/v1/import/csv requests.
|
|
|
|
|
func InsertHandler(req *http.Request) error {
|
2025-03-18 16:24:48 +01:00
|
|
|
extraLabels, err := protoparserutil.GetExtraLabels(req)
|
2020-09-02 19:41:12 +03:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2025-03-18 16:24:48 +01:00
|
|
|
return stream.Parse(req, func(rows []csvimport.Row) error {
|
2023-01-06 18:59:39 -08:00
|
|
|
return insertRows(rows, extraLabels)
|
2020-03-10 19:35:58 +02:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-29 14:48:55 +03:00
|
|
|
func insertRows(rows []csvimport.Row, extraLabels []prompb.Label) error {
|
2020-03-10 19:35:58 +02:00
|
|
|
ctx := common.GetInsertCtx()
|
|
|
|
|
defer common.PutInsertCtx(ctx)
|
|
|
|
|
|
|
|
|
|
ctx.Reset(len(rows))
|
2020-07-23 13:33:10 +03:00
|
|
|
hasRelabeling := relabel.HasRelabeling()
|
2020-03-10 19:35:58 +02:00
|
|
|
for i := range rows {
|
|
|
|
|
r := &rows[i]
|
|
|
|
|
ctx.Labels = ctx.Labels[:0]
|
|
|
|
|
ctx.AddLabel("", r.Metric)
|
|
|
|
|
for j := range r.Tags {
|
|
|
|
|
tag := &r.Tags[j]
|
|
|
|
|
ctx.AddLabel(tag.Key, tag.Value)
|
|
|
|
|
}
|
2020-09-02 19:41:12 +03:00
|
|
|
for j := range extraLabels {
|
|
|
|
|
label := &extraLabels[j]
|
|
|
|
|
ctx.AddLabel(label.Name, label.Value)
|
|
|
|
|
}
|
2024-12-18 22:27:51 +01:00
|
|
|
if !ctx.TryPrepareLabels(hasRelabeling) {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if err := ctx.WriteDataPoint(nil, ctx.Labels, r.Timestamp, r.Value); err != nil {
|
2020-07-24 23:19:49 +03:00
|
|
|
return err
|
|
|
|
|
}
|
2020-03-10 19:35:58 +02:00
|
|
|
}
|
|
|
|
|
rowsInserted.Add(len(rows))
|
|
|
|
|
rowsPerInsert.Update(float64(len(rows)))
|
|
|
|
|
return ctx.FlushBufs()
|
|
|
|
|
}
|