mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2026-07-28 03:22:38 +03:00
This commit adds four flags to allow managing label promotion for resource attributes and OTel scope metadata, while staying compatible with [Prometheus](https://prometheus.io/docs/prometheus/latest/configuration/configuration/): - `-opentelemetry.promoteScopeMetadata` - promote OTel scope metadata (i.e. name, version, schema URL, and attributes) to metric labels. - `opentelemetry.promoteAllResourceAttributes` - promote all resource attributes to labels, except for the ones configured with `-opentelemetry.ignoreResourceAttributes`. - `opentelemetry.promoteResourceAttributes` - promote specific list of resource attributes to labels. It cannot be configured simultaneously with `opentelemetry.promoteAllResourceAttributes`. - `opentelemetry.ignoreResourceAttributes` - which resource attributes to ignore, can only be set when `opentelemetry.promoteAllResourceAttributes` is true. `-opentelemetry.promoteScopeMetadata` and `opentelemetry.promoteAllResourceAttributes` are enabled by default in order to preserve the current behavior. fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/10931.
96 lines
2.9 KiB
Go
96 lines
2.9 KiB
Go
package opentelemetry
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/common"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/relabel"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prommetadata"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompb"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/opentelemetry/firehose"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/opentelemetry/stream"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/protoparserutil"
|
|
"github.com/VictoriaMetrics/metrics"
|
|
)
|
|
|
|
var (
|
|
rowsInserted = metrics.NewCounter(`vm_rows_inserted_total{type="opentelemetry"}`)
|
|
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="opentelemetry"}`)
|
|
metadataInserted = metrics.NewCounter(`vm_metadata_rows_inserted_total{type="opentelemetry"}`)
|
|
)
|
|
|
|
// Init must be called after flag.Parse and before using the opentelemetry package.
|
|
func Init() {
|
|
stream.InitDecodeOptions()
|
|
}
|
|
|
|
// InsertHandler processes opentelemetry metrics.
|
|
func InsertHandler(req *http.Request) error {
|
|
extraLabels, err := protoparserutil.GetExtraLabels(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
encoding := req.Header.Get("Content-Encoding")
|
|
var processBody func([]byte) ([]byte, error)
|
|
if req.Header.Get("Content-Type") == "application/json" {
|
|
if req.Header.Get("X-Amz-Firehose-Protocol-Version") != "" {
|
|
processBody = firehose.ProcessRequestBody
|
|
} else {
|
|
return fmt.Errorf("json encoding isn't supported for opentelemetry format. Use protobuf encoding")
|
|
}
|
|
}
|
|
return stream.ParseStream(req.Body, encoding, processBody, func(tss []prompb.TimeSeries, mms []prompb.MetricMetadata) error {
|
|
return insertRows(tss, mms, extraLabels)
|
|
})
|
|
}
|
|
|
|
func insertRows(tss []prompb.TimeSeries, mms []prompb.MetricMetadata, extraLabels []prompb.Label) error {
|
|
ctx := common.GetInsertCtx()
|
|
defer common.PutInsertCtx(ctx)
|
|
|
|
rowsLen := 0
|
|
for i := range tss {
|
|
rowsLen += len(tss[i].Samples)
|
|
}
|
|
ctx.Reset(rowsLen)
|
|
rowsTotal := 0
|
|
hasRelabeling := relabel.HasRelabeling()
|
|
for i := range tss {
|
|
ts := &tss[i]
|
|
rowsTotal += len(ts.Samples)
|
|
ctx.Labels = ctx.Labels[:0]
|
|
for _, label := range ts.Labels {
|
|
ctx.AddLabel(label.Name, label.Value)
|
|
}
|
|
for _, label := range extraLabels {
|
|
ctx.AddLabel(label.Name, label.Value)
|
|
}
|
|
if !ctx.TryPrepareLabels(hasRelabeling) {
|
|
continue
|
|
}
|
|
var metricNameRaw []byte
|
|
var err error
|
|
samples := ts.Samples
|
|
for i := range samples {
|
|
r := &samples[i]
|
|
metricNameRaw, err = ctx.WriteDataPointExt(metricNameRaw, ctx.Labels, r.Timestamp, r.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
rowsInserted.Add(rowsTotal)
|
|
rowsPerInsert.Update(float64(rowsTotal))
|
|
if err := ctx.FlushBufs(); err != nil {
|
|
return fmt.Errorf("cannot flush metric bufs: %w", err)
|
|
}
|
|
if prommetadata.IsEnabled() {
|
|
if err := ctx.WriteMetadata(mms); err != nil {
|
|
return err
|
|
}
|
|
metadataInserted.Add(len(mms))
|
|
}
|
|
return nil
|
|
}
|