Skip to content

Commit f5f22e7

Browse files
authored
Remove golangci-lint exclusions for OTLP code (prometheus#16250)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
1 parent c90b387 commit f5f22e7

File tree

8 files changed

+60
-57
lines changed

8 files changed

+60
-57
lines changed

.golangci.yml

-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ issues:
4040
exclude-files:
4141
# Skip autogenerated files.
4242
- ^.*\.(pb|y)\.go$
43-
exclude-dirs:
44-
# Copied it from a different source.
45-
- storage/remote/otlptranslator/prometheusremotewrite
46-
- storage/remote/otlptranslator/prometheus
4743
exclude-rules:
4844
- linters:
4945
- errcheck

storage/remote/otlptranslator/prometheusremotewrite/helper.go

+9-7
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ var seps = []byte{'\xff'}
116116
// if logOnOverwrite is true, the overwrite is logged. Resulting label names are sanitized.
117117
// If settings.PromoteResourceAttributes is not empty, it's a set of resource attributes that should be promoted to labels.
118118
func createAttributes(resource pcommon.Resource, attributes pcommon.Map, settings Settings,
119-
ignoreAttrs []string, logOnOverwrite bool, extras ...string) []prompb.Label {
119+
ignoreAttrs []string, logOnOverwrite bool, extras ...string,
120+
) []prompb.Label {
120121
resourceAttrs := resource.Attributes()
121122
serviceName, haveServiceName := resourceAttrs.Get(conventions.AttributeServiceName)
122123
instance, haveInstanceID := resourceAttrs.Get(conventions.AttributeServiceInstanceID)
@@ -248,7 +249,8 @@ func isValidAggregationTemporality(metric pmetric.Metric) bool {
248249
// However, work is under way to resolve this shortcoming through a feature called native histograms custom buckets:
249250
// https://github.com/prometheus/prometheus/issues/13485.
250251
func (c *PrometheusConverter) addHistogramDataPoints(ctx context.Context, dataPoints pmetric.HistogramDataPointSlice,
251-
resource pcommon.Resource, settings Settings, baseName string) error {
252+
resource pcommon.Resource, settings Settings, baseName string,
253+
) error {
252254
for x := 0; x < dataPoints.Len(); x++ {
253255
if err := c.everyN.checkContext(ctx); err != nil {
254256
return err
@@ -272,7 +274,6 @@ func (c *PrometheusConverter) addHistogramDataPoints(ctx context.Context, dataPo
272274

273275
sumlabels := createLabels(baseName+sumStr, baseLabels)
274276
c.addSample(sum, sumlabels)
275-
276277
}
277278

278279
// treat count as a sample in an individual TimeSeries
@@ -412,7 +413,7 @@ func getPromExemplars[T exemplarType](ctx context.Context, everyN *everyNTimes,
412413
return promExemplars, nil
413414
}
414415

415-
// mostRecentTimestampInMetric returns the latest timestamp in a batch of metrics
416+
// mostRecentTimestampInMetric returns the latest timestamp in a batch of metrics.
416417
func mostRecentTimestampInMetric(metric pmetric.Metric) pcommon.Timestamp {
417418
var ts pcommon.Timestamp
418419
// handle individual metric based on type
@@ -448,7 +449,8 @@ func mostRecentTimestampInMetric(metric pmetric.Metric) pcommon.Timestamp {
448449
}
449450

450451
func (c *PrometheusConverter) addSummaryDataPoints(ctx context.Context, dataPoints pmetric.SummaryDataPointSlice, resource pcommon.Resource,
451-
settings Settings, baseName string) error {
452+
settings Settings, baseName string,
453+
) error {
452454
for x := 0; x < dataPoints.Len(); x++ {
453455
if err := c.everyN.checkContext(ctx); err != nil {
454456
return err
@@ -562,7 +564,7 @@ func (c *PrometheusConverter) getOrCreateTimeSeries(lbls []prompb.Label) (*promp
562564
// addTimeSeriesIfNeeded adds a corresponding time series if it doesn't already exist.
563565
// If the time series doesn't already exist, it gets added with startTimestamp for its value and timestamp for its timestamp,
564566
// both converted to milliseconds.
565-
func (c *PrometheusConverter) addTimeSeriesIfNeeded(lbls []prompb.Label, startTimestamp pcommon.Timestamp, timestamp pcommon.Timestamp) {
567+
func (c *PrometheusConverter) addTimeSeriesIfNeeded(lbls []prompb.Label, startTimestamp, timestamp pcommon.Timestamp) {
566568
ts, created := c.getOrCreateTimeSeries(lbls)
567569
if created {
568570
ts.Samples = []prompb.Sample{
@@ -631,7 +633,7 @@ func addResourceTargetInfo(resource pcommon.Resource, settings Settings, timesta
631633
converter.addSample(sample, labels)
632634
}
633635

634-
// convertTimeStamp converts OTLP timestamp in ns to timestamp in ms
636+
// convertTimeStamp converts OTLP timestamp in ns to timestamp in ms.
635637
func convertTimeStamp(timestamp pcommon.Timestamp) int64 {
636638
return int64(timestamp) / 1_000_000
637639
}

storage/remote/otlptranslator/prometheusremotewrite/helper_test.go

+14-14
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ import (
2121
"testing"
2222
"time"
2323

24-
"github.com/stretchr/testify/assert"
2524
"go.opentelemetry.io/collector/pdata/pcommon"
2625
"go.opentelemetry.io/collector/pdata/pmetric"
2726

2827
"github.com/prometheus/common/model"
28+
"github.com/stretchr/testify/require"
2929

3030
"github.com/prometheus/prometheus/prompb"
3131
)
@@ -204,7 +204,7 @@ func TestCreateAttributes(t *testing.T) {
204204
}
205205
lbls := createAttributes(resource, attrs, settings, tc.ignoreAttrs, false, model.MetricNameLabel, "test_metric")
206206

207-
assert.ElementsMatch(t, lbls, tc.expectedLabels)
207+
require.ElementsMatch(t, lbls, tc.expectedLabels)
208208
})
209209
}
210210
}
@@ -222,7 +222,7 @@ func Test_convertTimeStamp(t *testing.T) {
222222
for _, tt := range tests {
223223
t.Run(tt.name, func(t *testing.T) {
224224
got := convertTimeStamp(tt.arg)
225-
assert.Equal(t, tt.want, got)
225+
require.Equal(t, tt.want, got)
226226
})
227227
}
228228
}
@@ -330,8 +330,8 @@ func TestPrometheusConverter_AddSummaryDataPoints(t *testing.T) {
330330
metric.Name(),
331331
)
332332

333-
assert.Equal(t, tt.want(), converter.unique)
334-
assert.Empty(t, converter.conflicts)
333+
require.Equal(t, tt.want(), converter.unique)
334+
require.Empty(t, converter.conflicts)
335335
})
336336
}
337337
}
@@ -441,8 +441,8 @@ func TestPrometheusConverter_AddHistogramDataPoints(t *testing.T) {
441441
metric.Name(),
442442
)
443443

444-
assert.Equal(t, tt.want(), converter.unique)
445-
assert.Empty(t, converter.conflicts)
444+
require.Equal(t, tt.want(), converter.unique)
445+
require.Empty(t, converter.conflicts)
446446
})
447447
}
448448
}
@@ -457,9 +457,9 @@ func TestGetPromExemplars(t *testing.T) {
457457
exemplar.SetTimestamp(pcommon.Timestamp(time.Now().UnixNano()))
458458
exemplar.SetIntValue(42)
459459
exemplars, err := getPromExemplars(ctx, everyN, pt)
460-
assert.NoError(t, err)
461-
assert.Len(t, exemplars, 1)
462-
assert.Equal(t, float64(42), exemplars[0].Value)
460+
require.NoError(t, err)
461+
require.Len(t, exemplars, 1)
462+
require.Equal(t, float64(42), exemplars[0].Value)
463463
})
464464

465465
t.Run("Exemplars with double value", func(t *testing.T) {
@@ -468,16 +468,16 @@ func TestGetPromExemplars(t *testing.T) {
468468
exemplar.SetTimestamp(pcommon.Timestamp(time.Now().UnixNano()))
469469
exemplar.SetDoubleValue(69.420)
470470
exemplars, err := getPromExemplars(ctx, everyN, pt)
471-
assert.NoError(t, err)
472-
assert.Len(t, exemplars, 1)
473-
assert.Equal(t, 69.420, exemplars[0].Value)
471+
require.NoError(t, err)
472+
require.Len(t, exemplars, 1)
473+
require.Equal(t, 69.420, exemplars[0].Value)
474474
})
475475

476476
t.Run("Exemplars with unsupported value type", func(t *testing.T) {
477477
pt := pmetric.NewNumberDataPoint()
478478
exemplar := pt.Exemplars().AppendEmpty()
479479
exemplar.SetTimestamp(pcommon.Timestamp(time.Now().UnixNano()))
480480
_, err := getPromExemplars(ctx, everyN, pt)
481-
assert.Error(t, err)
481+
require.Error(t, err)
482482
})
483483
}

storage/remote/otlptranslator/prometheusremotewrite/histograms.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ package prometheusremotewrite
1919
import (
2020
"context"
2121
"fmt"
22-
"github.com/prometheus/prometheus/model/histogram"
2322
"math"
2423

2524
"github.com/prometheus/common/model"
2625
"go.opentelemetry.io/collector/pdata/pcommon"
2726
"go.opentelemetry.io/collector/pdata/pmetric"
2827

28+
"github.com/prometheus/prometheus/model/histogram"
2929
"github.com/prometheus/prometheus/model/value"
3030
"github.com/prometheus/prometheus/prompb"
3131
"github.com/prometheus/prometheus/util/annotations"
@@ -36,7 +36,8 @@ const defaultZeroThreshold = 1e-128
3636
// addExponentialHistogramDataPoints adds OTel exponential histogram data points to the corresponding time series
3737
// as native histogram samples.
3838
func (c *PrometheusConverter) addExponentialHistogramDataPoints(ctx context.Context, dataPoints pmetric.ExponentialHistogramDataPointSlice,
39-
resource pcommon.Resource, settings Settings, promName string) (annotations.Annotations, error) {
39+
resource pcommon.Resource, settings Settings, promName string,
40+
) (annotations.Annotations, error) {
4041
var annots annotations.Annotations
4142
for x := 0; x < dataPoints.Len(); x++ {
4243
if err := c.everyN.checkContext(ctx); err != nil {
@@ -151,7 +152,7 @@ func exponentialToNativeHistogram(p pmetric.ExponentialHistogramDataPoint) (prom
151152
//
152153
// When converting from OTel Explicit Histograms to Native Histograms with Custom Buckets,
153154
// the bucket indexes are not scaled, and the indices are not adjusted by 1.
154-
func convertBucketsLayout(bucketCounts []uint64, offset int32, scaleDown int32, adjustOffset bool) ([]prompb.BucketSpan, []int64) {
155+
func convertBucketsLayout(bucketCounts []uint64, offset, scaleDown int32, adjustOffset bool) ([]prompb.BucketSpan, []int64) {
155156
if len(bucketCounts) == 0 {
156157
return nil, nil
157158
}
@@ -240,7 +241,8 @@ func convertBucketsLayout(bucketCounts []uint64, offset int32, scaleDown int32,
240241
}
241242

242243
func (c *PrometheusConverter) addCustomBucketsHistogramDataPoints(ctx context.Context, dataPoints pmetric.HistogramDataPointSlice,
243-
resource pcommon.Resource, settings Settings, promName string) (annotations.Annotations, error) {
244+
resource pcommon.Resource, settings Settings, promName string,
245+
) (annotations.Annotations, error) {
244246
var annots annotations.Annotations
245247

246248
for x := 0; x < dataPoints.Len(); x++ {

storage/remote/otlptranslator/prometheusremotewrite/histograms_test.go

+14-15
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import (
2424

2525
"github.com/prometheus/common/model"
2626
"github.com/prometheus/otlptranslator"
27-
"github.com/stretchr/testify/assert"
2827
"github.com/stretchr/testify/require"
2928
"go.opentelemetry.io/collector/pdata/pcommon"
3029
"go.opentelemetry.io/collector/pdata/pmetric"
@@ -380,8 +379,8 @@ func TestConvertBucketsLayout(t *testing.T) {
380379
for scaleDown, wantLayout := range tt.wantLayout {
381380
t.Run(fmt.Sprintf("%s-scaleby-%d", tt.name, scaleDown), func(t *testing.T) {
382381
gotSpans, gotDeltas := convertBucketsLayout(tt.buckets().BucketCounts().AsRaw(), tt.buckets().Offset(), scaleDown, true)
383-
assert.Equal(t, wantLayout.wantSpans, gotSpans)
384-
assert.Equal(t, wantLayout.wantDeltas, gotDeltas)
382+
require.Equal(t, wantLayout.wantSpans, gotSpans)
383+
require.Equal(t, wantLayout.wantDeltas, gotDeltas)
385384
})
386385
}
387386
}
@@ -569,13 +568,13 @@ func TestExponentialToNativeHistogram(t *testing.T) {
569568
validateExponentialHistogramCount(t, tt.exponentialHist()) // Sanity check.
570569
got, annots, err := exponentialToNativeHistogram(tt.exponentialHist())
571570
if tt.wantErrMessage != "" {
572-
assert.ErrorContains(t, err, tt.wantErrMessage)
571+
require.ErrorContains(t, err, tt.wantErrMessage)
573572
return
574573
}
575574

576575
require.NoError(t, err)
577576
require.Empty(t, annots)
578-
assert.Equal(t, tt.wantNativeHist(), got)
577+
require.Equal(t, tt.wantNativeHist(), got)
579578
validateNativeHistogramCount(t, got)
580579
})
581580
}
@@ -617,7 +616,7 @@ func validateNativeHistogramCount(t *testing.T, h prompb.Histogram) {
617616
prevBucket += delta
618617
actualCount += uint64(prevBucket)
619618
}
620-
assert.Equal(t, want, actualCount, "native histogram count mismatch")
619+
require.Equal(t, want, actualCount, "native histogram count mismatch")
621620
}
622621

623622
func TestPrometheusConverter_addExponentialHistogramDataPoints(t *testing.T) {
@@ -774,8 +773,8 @@ func TestPrometheusConverter_addExponentialHistogramDataPoints(t *testing.T) {
774773
require.NoError(t, err)
775774
require.Empty(t, annots)
776775

777-
assert.Equal(t, tt.wantSeries(), converter.unique)
778-
assert.Empty(t, converter.conflicts)
776+
require.Equal(t, tt.wantSeries(), converter.unique)
777+
require.Empty(t, converter.conflicts)
779778
})
780779
}
781780
}
@@ -814,7 +813,7 @@ func TestConvertExplicitHistogramBucketsToNHCBLayout(t *testing.T) {
814813
},
815814
{
816815
name: "trailing empty buckets",
817-
buckets: []uint64{0, 0, 1, 1, 2, 3, 0, 0}, //TODO: add tests for 3 trailing buckets
816+
buckets: []uint64{0, 0, 1, 1, 2, 3, 0, 0}, // TODO: add tests for 3 trailing buckets
818817
wantLayout: expectedBucketLayout{
819818
wantSpans: []prompb.BucketSpan{
820819
{
@@ -880,8 +879,8 @@ func TestConvertExplicitHistogramBucketsToNHCBLayout(t *testing.T) {
880879
bucketCounts := buckets[offset:]
881880

882881
gotSpans, gotDeltas := convertBucketsLayout(bucketCounts, int32(offset), 0, false)
883-
assert.Equal(t, tt.wantLayout.wantSpans, gotSpans)
884-
assert.Equal(t, tt.wantLayout.wantDeltas, gotDeltas)
882+
require.Equal(t, tt.wantLayout.wantSpans, gotSpans)
883+
require.Equal(t, tt.wantLayout.wantDeltas, gotDeltas)
885884
})
886885
}
887886
}
@@ -975,13 +974,13 @@ func TestHistogramToCustomBucketsHistogram(t *testing.T) {
975974
validateHistogramCount(t, tt.hist())
976975
got, annots, err := explicitHistogramToCustomBucketsHistogram(tt.hist())
977976
if tt.wantErrMessage != "" {
978-
assert.ErrorContains(t, err, tt.wantErrMessage)
977+
require.ErrorContains(t, err, tt.wantErrMessage)
979978
return
980979
}
981980

982981
require.NoError(t, err)
983982
require.Empty(t, annots)
984-
assert.Equal(t, tt.wantNativeHist(), got)
983+
require.Equal(t, tt.wantNativeHist(), got)
985984
validateNativeHistogramCount(t, got)
986985
})
987986
}
@@ -1143,8 +1142,8 @@ func TestPrometheusConverter_addCustomBucketsHistogramDataPoints(t *testing.T) {
11431142
require.NoError(t, err)
11441143
require.Empty(t, annots)
11451144

1146-
assert.Equal(t, tt.wantSeries(), converter.unique)
1147-
assert.Empty(t, converter.conflicts)
1145+
require.Equal(t, tt.wantSeries(), converter.unique)
1146+
require.Empty(t, converter.conflicts)
11481147
})
11491148
}
11501149
}

storage/remote/otlptranslator/prometheusremotewrite/metrics_to_prw_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ func TestFromMetrics(t *testing.T) {
7272
ts := converter.TimeSeries()
7373
require.Len(t, ts, 1408+1) // +1 for the target_info.
7474

75-
target_info_count := 0
75+
tgtInfoCount := 0
7676
for _, s := range ts {
7777
b := labels.NewScratchBuilder(2)
7878
lbls := s.ToLabels(&b, nil)
7979
if lbls.Get(labels.MetricName) == "target_info" {
80-
target_info_count++
80+
tgtInfoCount++
8181
require.Equal(t, "test-namespace/test-service", lbls.Get("job"))
8282
require.Equal(t, "id1234", lbls.Get("instance"))
8383
if keepIdentifyingResourceAttributes {
@@ -91,7 +91,7 @@ func TestFromMetrics(t *testing.T) {
9191
}
9292
}
9393
}
94-
require.Equal(t, 1, target_info_count)
94+
require.Equal(t, 1, tgtInfoCount)
9595
})
9696
}
9797

@@ -129,7 +129,7 @@ func TestFromMetrics(t *testing.T) {
129129

130130
if convertHistogramsToNHCB {
131131
require.Len(t, series[0].Histograms, 1)
132-
require.Len(t, series[0].Samples, 0)
132+
require.Empty(t, series[0].Samples)
133133
} else {
134134
require.Len(t, series, 3)
135135
for i := range series {

storage/remote/otlptranslator/prometheusremotewrite/number_data_points.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ import (
2929
)
3030

3131
func (c *PrometheusConverter) addGaugeNumberDataPoints(ctx context.Context, dataPoints pmetric.NumberDataPointSlice,
32-
resource pcommon.Resource, settings Settings, name string) error {
32+
resource pcommon.Resource, settings Settings, name string,
33+
) error {
3334
for x := 0; x < dataPoints.Len(); x++ {
3435
if err := c.everyN.checkContext(ctx); err != nil {
3536
return err
@@ -65,7 +66,8 @@ func (c *PrometheusConverter) addGaugeNumberDataPoints(ctx context.Context, data
6566
}
6667

6768
func (c *PrometheusConverter) addSumNumberDataPoints(ctx context.Context, dataPoints pmetric.NumberDataPointSlice,
68-
resource pcommon.Resource, metric pmetric.Metric, settings Settings, name string) error {
69+
resource pcommon.Resource, metric pmetric.Metric, settings Settings, name string,
70+
) error {
6971
for x := 0; x < dataPoints.Len(); x++ {
7072
if err := c.everyN.checkContext(ctx); err != nil {
7173
return err

0 commit comments

Comments
 (0)