2020-03-10 19:35:58 +02:00
|
|
|
package csvimport
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/netstorage"
|
2020-07-23 13:33:10 +03:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/relabel"
|
2020-03-10 19:35:58 +02:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
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"
|
2021-03-30 00:06:56 +03:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/tenantmetrics"
|
2020-03-10 19:35:58 +02:00
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
2021-03-30 00:06:56 +03:00
|
|
|
rowsInserted = metrics.NewCounter(`vm_rows_inserted_total{type="csvimport"}`)
|
|
|
|
|
rowsTenantInserted = tenantmetrics.NewCounterMap(`vm_tenant_inserted_rows_total{type="csvimport"}`)
|
|
|
|
|
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="csvimport"}`)
|
2020-03-10 19:35:58 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// InsertHandler processes /api/v1/import/csv requests.
|
|
|
|
|
func InsertHandler(at *auth.Token, 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(at, rows, extraLabels)
|
2020-03-10 19:35:58 +02:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-29 14:48:55 +03:00
|
|
|
func insertRows(at *auth.Token, rows []csvimport.Row, extraLabels []prompb.Label) error {
|
2020-03-10 19:35:58 +02:00
|
|
|
ctx := netstorage.GetInsertCtx()
|
|
|
|
|
defer netstorage.PutInsertCtx(ctx)
|
|
|
|
|
|
|
|
|
|
ctx.Reset() // This line is required for initializing ctx internals.
|
2022-09-30 16:28:35 +02:00
|
|
|
perTenantRows := make(map[auth.Token]int)
|
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-10 22:15:38 +01:00
|
|
|
if !ctx.TryPrepareLabels(hasRelabeling) {
|
2020-07-02 19:42:12 +03:00
|
|
|
continue
|
|
|
|
|
}
|
2022-09-30 16:28:35 +02:00
|
|
|
atLocal := ctx.GetLocalAuthToken(at)
|
|
|
|
|
if err := ctx.WriteDataPoint(atLocal, ctx.Labels, r.Timestamp, r.Value); err != nil {
|
2020-03-10 19:35:58 +02:00
|
|
|
return err
|
|
|
|
|
}
|
2022-09-30 16:28:35 +02:00
|
|
|
perTenantRows[*atLocal]++
|
2020-03-10 19:35:58 +02:00
|
|
|
}
|
2021-03-29 11:59:04 +03:00
|
|
|
rowsInserted.Add(len(rows))
|
2022-09-30 16:28:35 +02:00
|
|
|
rowsTenantInserted.MultiAdd(perTenantRows)
|
2020-03-10 19:35:58 +02:00
|
|
|
rowsPerInsert.Update(float64(len(rows)))
|
|
|
|
|
return ctx.FlushBufs()
|
|
|
|
|
}
|