mirror of
https://github.com/prometheus/prometheus.git
synced 2026-02-03 20:39:32 -05:00
Some checks are pending
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Build Prometheus for common architectures (push) Waiting to run
CI / Build Prometheus for all architectures (push) Waiting to run
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
* refactor: switch OTLP handler to AppendableV2 Signed-off-by: bwplotka <bwplotka@gmail.com> * addressed comments Signed-off-by: bwplotka <bwplotka@gmail.com> --------- Signed-off-by: bwplotka <bwplotka@gmail.com>
122 lines
3.2 KiB
Go
122 lines
3.2 KiB
Go
// Copyright The Prometheus Authors
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
// Provenance-includes-location: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/95e8f8fdc2a9dc87230406c9a3cf02be4fd68bea/pkg/translator/prometheusremotewrite/number_data_points.go
|
|
// Provenance-includes-license: Apache-2.0
|
|
// Provenance-includes-copyright: Copyright The OpenTelemetry Authors.
|
|
|
|
package prometheusremotewrite
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
|
|
"github.com/prometheus/common/model"
|
|
"go.opentelemetry.io/collector/pdata/pmetric"
|
|
|
|
"github.com/prometheus/prometheus/model/value"
|
|
"github.com/prometheus/prometheus/storage"
|
|
)
|
|
|
|
func (c *PrometheusConverter) addGaugeNumberDataPoints(
|
|
ctx context.Context,
|
|
dataPoints pmetric.NumberDataPointSlice,
|
|
settings Settings,
|
|
appOpts storage.AOptions,
|
|
) error {
|
|
for x := 0; x < dataPoints.Len(); x++ {
|
|
if err := c.everyN.checkContext(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
pt := dataPoints.At(x)
|
|
labels, err := c.createAttributes(
|
|
pt.Attributes(),
|
|
settings,
|
|
reservedLabelNames,
|
|
true,
|
|
appOpts.Metadata,
|
|
model.MetricNameLabel,
|
|
appOpts.MetricFamilyName,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var val float64
|
|
switch pt.ValueType() {
|
|
case pmetric.NumberDataPointValueTypeInt:
|
|
val = float64(pt.IntValue())
|
|
case pmetric.NumberDataPointValueTypeDouble:
|
|
val = pt.DoubleValue()
|
|
}
|
|
if pt.Flags().NoRecordedValue() {
|
|
val = math.Float64frombits(value.StaleNaN)
|
|
}
|
|
ts := convertTimeStamp(pt.Timestamp())
|
|
st := convertTimeStamp(pt.StartTimestamp())
|
|
if _, err = c.appender.Append(0, labels, st, ts, val, nil, nil, appOpts); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *PrometheusConverter) addSumNumberDataPoints(
|
|
ctx context.Context,
|
|
dataPoints pmetric.NumberDataPointSlice,
|
|
settings Settings,
|
|
appOpts storage.AOptions,
|
|
) error {
|
|
for x := 0; x < dataPoints.Len(); x++ {
|
|
if err := c.everyN.checkContext(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
pt := dataPoints.At(x)
|
|
lbls, err := c.createAttributes(
|
|
pt.Attributes(),
|
|
settings,
|
|
reservedLabelNames,
|
|
true,
|
|
appOpts.Metadata,
|
|
model.MetricNameLabel,
|
|
appOpts.MetricFamilyName,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var val float64
|
|
switch pt.ValueType() {
|
|
case pmetric.NumberDataPointValueTypeInt:
|
|
val = float64(pt.IntValue())
|
|
case pmetric.NumberDataPointValueTypeDouble:
|
|
val = pt.DoubleValue()
|
|
}
|
|
if pt.Flags().NoRecordedValue() {
|
|
val = math.Float64frombits(value.StaleNaN)
|
|
}
|
|
ts := convertTimeStamp(pt.Timestamp())
|
|
st := convertTimeStamp(pt.StartTimestamp())
|
|
exemplars, err := c.getPromExemplars(ctx, pt.Exemplars())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
appOpts.Exemplars = exemplars
|
|
if _, err = c.appender.Append(0, lbls, st, ts, val, nil, nil, appOpts); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|