mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.1 KiB
55 lines
2.1 KiB
// Copyright 2024 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/247a9f996e09a83cdc25addf70c05e42b8b30186/pkg/translator/prometheusremotewrite/testutil_test.go |
|
// Provenance-includes-license: Apache-2.0 |
|
// Provenance-includes-copyright: Copyright The OpenTelemetry Authors. |
|
|
|
package prometheusremotewrite |
|
|
|
import ( |
|
"strings" |
|
|
|
"go.opentelemetry.io/collector/pdata/pcommon" |
|
"go.opentelemetry.io/collector/pdata/pmetric" |
|
) |
|
|
|
func getIntGaugeMetric(name string, attributes pcommon.Map, value int64, ts uint64) pmetric.Metric { |
|
metric := pmetric.NewMetric() |
|
metric.SetName(name) |
|
dp := metric.SetEmptyGauge().DataPoints().AppendEmpty() |
|
if strings.HasPrefix(name, "staleNaN") { |
|
dp.SetFlags(pmetric.DefaultDataPointFlags.WithNoRecordedValue(true)) |
|
} |
|
dp.SetIntValue(value) |
|
attributes.CopyTo(dp.Attributes()) |
|
|
|
dp.SetStartTimestamp(pcommon.Timestamp(0)) |
|
dp.SetTimestamp(pcommon.Timestamp(ts)) |
|
return metric |
|
} |
|
|
|
func getIntSumMetric(name string, attributes pcommon.Map, value int64, ts uint64) pmetric.Metric { |
|
metric := pmetric.NewMetric() |
|
metric.SetName(name) |
|
metric.SetEmptySum().SetAggregationTemporality(pmetric.AggregationTemporalityCumulative) |
|
dp := metric.Sum().DataPoints().AppendEmpty() |
|
if strings.HasPrefix(name, "staleNaN") { |
|
dp.SetFlags(pmetric.DefaultDataPointFlags.WithNoRecordedValue(true)) |
|
} |
|
dp.SetIntValue(value) |
|
attributes.CopyTo(dp.Attributes()) |
|
|
|
dp.SetStartTimestamp(pcommon.Timestamp(0)) |
|
dp.SetTimestamp(pcommon.Timestamp(ts)) |
|
return metric |
|
}
|
|
|