2023-12-21 16:29:10 +00:00
|
|
|
package datadogv2
|
2021-09-28 19:47:45 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmagent/common"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmagent/remotewrite"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
|
|
|
parserCommon "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
|
2023-12-21 16:29:10 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/datadogutils"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/datadogv2"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/datadogv2/stream"
|
2021-09-28 19:47:45 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/tenantmetrics"
|
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2023-12-21 16:29:10 +00:00
|
|
|
rowsInserted = metrics.NewCounter(`vmagent_rows_inserted_total{type="datadogv2"}`)
|
|
|
|
rowsTenantInserted = tenantmetrics.NewCounterMap(`vmagent_tenant_inserted_rows_total{type="datadogv2"}`)
|
|
|
|
rowsPerInsert = metrics.NewHistogram(`vmagent_rows_per_insert{type="datadogv2"}`)
|
2021-09-28 19:47:45 +00:00
|
|
|
)
|
|
|
|
|
2023-12-21 16:29:10 +00:00
|
|
|
// InsertHandlerForHTTP processes remote write for DataDog POST /api/v2/series request.
|
2021-09-28 19:47:45 +00:00
|
|
|
//
|
|
|
|
// See https://docs.datadoghq.com/api/latest/metrics/#submit-metrics
|
|
|
|
func InsertHandlerForHTTP(at *auth.Token, req *http.Request) error {
|
|
|
|
extraLabels, err := parserCommon.GetExtraLabels(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-12-21 16:29:10 +00:00
|
|
|
ct := req.Header.Get("Content-Type")
|
2023-12-05 00:26:22 +00:00
|
|
|
ce := req.Header.Get("Content-Encoding")
|
2023-12-21 16:29:10 +00:00
|
|
|
return stream.Parse(req.Body, ce, ct, func(series []datadogv2.Series) error {
|
2023-12-05 00:26:22 +00:00
|
|
|
return insertRows(at, series, extraLabels)
|
|
|
|
})
|
2021-09-28 19:47:45 +00:00
|
|
|
}
|
|
|
|
|
2023-12-21 16:29:10 +00:00
|
|
|
func insertRows(at *auth.Token, series []datadogv2.Series, extraLabels []prompbmarshal.Label) error {
|
2021-09-28 19:47:45 +00:00
|
|
|
ctx := common.GetPushCtx()
|
|
|
|
defer common.PutPushCtx(ctx)
|
|
|
|
|
2023-12-05 00:26:22 +00:00
|
|
|
rowsTotal := 0
|
|
|
|
tssDst := ctx.WriteRequest.Timeseries[:0]
|
|
|
|
labels := ctx.Labels[:0]
|
|
|
|
samples := ctx.Samples[:0]
|
|
|
|
for i := range series {
|
|
|
|
ss := &series[i]
|
|
|
|
rowsTotal += len(ss.Points)
|
|
|
|
labelsLen := len(labels)
|
|
|
|
labels = append(labels, prompbmarshal.Label{
|
|
|
|
Name: "__name__",
|
|
|
|
Value: ss.Metric,
|
|
|
|
})
|
2023-12-21 16:29:10 +00:00
|
|
|
for _, rs := range ss.Resources {
|
2023-12-05 00:26:22 +00:00
|
|
|
labels = append(labels, prompbmarshal.Label{
|
2023-12-21 16:29:10 +00:00
|
|
|
Name: rs.Type,
|
|
|
|
Value: rs.Name,
|
2023-12-05 00:26:22 +00:00
|
|
|
})
|
|
|
|
}
|
2023-12-21 21:05:41 +00:00
|
|
|
if ss.SourceTypeName != "" {
|
|
|
|
labels = append(labels, prompbmarshal.Label{
|
|
|
|
Name: "source_type_name",
|
|
|
|
Value: ss.SourceTypeName,
|
|
|
|
})
|
|
|
|
}
|
2023-12-05 00:26:22 +00:00
|
|
|
for _, tag := range ss.Tags {
|
2023-12-21 16:29:10 +00:00
|
|
|
name, value := datadogutils.SplitTag(tag)
|
2023-12-05 00:26:22 +00:00
|
|
|
if name == "host" {
|
|
|
|
name = "exported_host"
|
|
|
|
}
|
|
|
|
labels = append(labels, prompbmarshal.Label{
|
|
|
|
Name: name,
|
|
|
|
Value: value,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
labels = append(labels, extraLabels...)
|
|
|
|
samplesLen := len(samples)
|
|
|
|
for _, pt := range ss.Points {
|
|
|
|
samples = append(samples, prompbmarshal.Sample{
|
2023-12-21 16:29:10 +00:00
|
|
|
Timestamp: pt.Timestamp * 1000,
|
|
|
|
Value: pt.Value,
|
2023-12-05 00:26:22 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
tssDst = append(tssDst, prompbmarshal.TimeSeries{
|
|
|
|
Labels: labels[labelsLen:],
|
|
|
|
Samples: samples[samplesLen:],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
ctx.WriteRequest.Timeseries = tssDst
|
|
|
|
ctx.Labels = labels
|
|
|
|
ctx.Samples = samples
|
2023-11-25 09:31:30 +00:00
|
|
|
if !remotewrite.TryPush(at, &ctx.WriteRequest) {
|
2023-11-24 12:42:11 +00:00
|
|
|
return remotewrite.ErrQueueFullHTTPRetry
|
|
|
|
}
|
2021-09-28 19:47:45 +00:00
|
|
|
rowsInserted.Add(rowsTotal)
|
|
|
|
if at != nil {
|
|
|
|
rowsTenantInserted.Get(at).Add(rowsTotal)
|
|
|
|
}
|
|
|
|
rowsPerInsert.Update(float64(rowsTotal))
|
|
|
|
return nil
|
|
|
|
}
|