File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
exporter/datadogexporter/integrationtest Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import (
11
11
"fmt"
12
12
"io"
13
13
"net/http"
14
+ "runtime"
14
15
"strings"
15
16
"sync"
16
17
"testing"
@@ -529,6 +530,10 @@ func sendLogs(t *testing.T, numLogs int) {
529
530
}
530
531
531
532
func TestIntegrationInternalMetrics (t * testing.T ) {
533
+ if runtime .GOOS == "windows" {
534
+ t .Skip ("flaky test on windows https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/34836" )
535
+ }
536
+
532
537
// 1. Set up mock Datadog server
533
538
seriesRec := & testutil.HTTPRequestRecorderWithChan {Pattern : testutil .MetricV2Endpoint , ReqChan : make (chan []byte , 100 )}
534
539
tracesRec := & testutil.HTTPRequestRecorderWithChan {Pattern : testutil .TraceEndpoint , ReqChan : make (chan []byte , 100 )}
You can’t perform that action at this time.
0 commit comments