Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
)

func TestStartTimeMetricMatch(t *testing.T) {
t.Skip("Skipping test since it is flaky; see https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/42684.")
const startTime = pcommon.Timestamp(123 * 1e9)
const currentTime = pcommon.Timestamp(126 * 1e9)
const matchBuilderStartTime = 124
Expand Down
1 change: 1 addition & 0 deletions receiver/prometheusreceiver/metrics_receiver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1585,6 +1585,7 @@ example_process_start_time_seconds 400.8

// TestStartTimeMetricRegex validates that timeseries have start time regex set to 'process_start_time_seconds'
func TestStartTimeMetricRegex(t *testing.T) {
t.Skip("Skipping test since it is flaky, see https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/42684.")
targets := []*testData{
{
name: "target1",
Expand Down
Loading