2023-10-05 12:39:51 +00:00
|
|
|
package newrelic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/common"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/relabel"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
|
|
|
parserCommon "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/newrelic"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/newrelic/stream"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
rowsInserted = metrics.NewCounter(`vm_rows_inserted_total{type="newrelic"}`)
|
|
|
|
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="newrelic"}`)
|
|
|
|
)
|
|
|
|
|
2023-10-15 22:25:23 +00:00
|
|
|
// InsertHandlerForHTTP processes remote write for request to /newrelic/infra/v2/metrics/events/bulk request.
|
2023-10-05 12:39:51 +00:00
|
|
|
func InsertHandlerForHTTP(req *http.Request) error {
|
|
|
|
extraLabels, err := parserCommon.GetExtraLabels(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ce := req.Header.Get("Content-Encoding")
|
|
|
|
isGzip := ce == "gzip"
|
2023-10-15 22:25:23 +00:00
|
|
|
return stream.Parse(req.Body, isGzip, func(rows []newrelic.Row) error {
|
|
|
|
return insertRows(rows, extraLabels)
|
2023-10-05 12:39:51 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-10-15 22:25:23 +00:00
|
|
|
func insertRows(rows []newrelic.Row, extraLabels []prompbmarshal.Label) error {
|
2023-10-05 12:39:51 +00:00
|
|
|
ctx := common.GetInsertCtx()
|
|
|
|
defer common.PutInsertCtx(ctx)
|
|
|
|
|
2023-10-15 22:25:23 +00:00
|
|
|
samplesCount := 0
|
|
|
|
for i := range rows {
|
|
|
|
samplesCount += len(rows[i].Samples)
|
|
|
|
}
|
|
|
|
ctx.Reset(samplesCount)
|
|
|
|
|
2023-10-05 12:39:51 +00:00
|
|
|
hasRelabeling := relabel.HasRelabeling()
|
|
|
|
for i := range rows {
|
|
|
|
r := &rows[i]
|
2023-10-15 22:25:23 +00:00
|
|
|
samples := r.Samples
|
|
|
|
for j := range samples {
|
|
|
|
s := &samples[j]
|
|
|
|
|
|
|
|
ctx.Labels = ctx.Labels[:0]
|
|
|
|
ctx.AddLabelBytes(nil, s.Name)
|
|
|
|
for k := range r.Tags {
|
|
|
|
t := &r.Tags[k]
|
|
|
|
ctx.AddLabelBytes(t.Key, t.Value)
|
|
|
|
}
|
|
|
|
for k := range extraLabels {
|
|
|
|
label := &extraLabels[k]
|
|
|
|
ctx.AddLabel(label.Name, label.Value)
|
|
|
|
}
|
|
|
|
if hasRelabeling {
|
|
|
|
ctx.ApplyRelabeling()
|
|
|
|
}
|
|
|
|
if len(ctx.Labels) == 0 {
|
|
|
|
// Skip metric without labels.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ctx.SortLabelsIfNeeded()
|
|
|
|
if err := ctx.WriteDataPoint(nil, ctx.Labels, r.Timestamp, s.Value); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-05 12:39:51 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-15 22:25:23 +00:00
|
|
|
rowsInserted.Add(samplesCount)
|
|
|
|
rowsPerInsert.Update(float64(samplesCount))
|
2023-10-05 12:39:51 +00:00
|
|
|
return ctx.FlushBufs()
|
|
|
|
}
|