Skip to content

Commit 47f403a

Browse files
committed
fix service_test
Signed-off-by: Alex Boten <[email protected]>
1 parent 51e2410 commit 47f403a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

service/service_test.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ func TestServiceInvalidTelemetryConfiguration(t *testing.T) {
491491
},
492492
},
493493
},
494-
wantErr: errors.New("unsupported protocol \"\""),
494+
wantErr: errors.New("no valid log exporter"),
495495
},
496496
}
497497
for _, tt := range tests {
@@ -550,12 +550,16 @@ func assertMetrics(t *testing.T, metricsAddr string, expectedLabels map[string]l
550550
"otelcol_process_runtime_heap_alloc_bytes": false,
551551
"otelcol_process_runtime_total_alloc_bytes": false,
552552
"otelcol_process_uptime": false,
553+
"promhttp_metric_handler_errors_total": false,
553554
}
554555
for metricName, metricFamily := range parsed {
555556
if _, ok := expectedMetrics[metricName]; !ok {
556557
require.True(t, ok, "unexpected metric: %s", metricName)
557558
}
558559
expectedMetrics[metricName] = true
560+
if metricName == "promhttp_metric_handler_errors_total" {
561+
continue
562+
}
559563
if metricName != "target_info" {
560564
// require is used here so test fails with a single message.
561565
require.True(

0 commit comments

Comments
 (0)