2020-03-10 17:35:58 +00:00
|
|
|
package csvimport
|
|
|
|
|
|
|
|
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-09-02 16:41:12 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
|
|
|
parserCommon "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
|
2020-03-10 17:35:58 +00:00
|
|
|
parser "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/csvimport"
|
2023-02-13 18:25:37 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/csvimport/stream"
|
2020-03-10 17:35:58 +00: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 {
|
2020-09-02 16:41:12 +00:00
|
|
|
extraLabels, err := parserCommon.GetExtraLabels(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-02-13 18:25:37 +00:00
|
|
|
return stream.Parse(req, func(rows []parser.Row) error {
|
2023-01-07 02:59:39 +00:00
|
|
|
return insertRows(rows, extraLabels)
|
2020-03-10 17:35:58 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-09-02 16:41:12 +00:00
|
|
|
func insertRows(rows []parser.Row, extraLabels []prompbmarshal.Label) error {
|
2020-03-10 17:35:58 +00:00
|
|
|
ctx := common.GetInsertCtx()
|
|
|
|
defer common.PutInsertCtx(ctx)
|
|
|
|
|
|
|
|
ctx.Reset(len(rows))
|
2020-07-23 10:33:10 +00:00
|
|
|
hasRelabeling := relabel.HasRelabeling()
|
2020-03-10 17:35:58 +00: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 16:41:12 +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-07-24 20:19:49 +00:00
|
|
|
if err := ctx.WriteDataPoint(nil, ctx.Labels, r.Timestamp, r.Value); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-03-10 17:35:58 +00:00
|
|
|
}
|
|
|
|
rowsInserted.Add(len(rows))
|
|
|
|
rowsPerInsert.Update(float64(len(rows)))
|
|
|
|
return ctx.FlushBufs()
|
|
|
|
}
|