Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[exporter/signalfxexporter] Data race detected in unit test #31111

Closed
crobert-1 opened this issue Feb 7, 2024 · 4 comments
Closed

[exporter/signalfxexporter] Data race detected in unit test #31111

crobert-1 opened this issue Feb 7, 2024 · 4 comments
Labels
bug Something isn't working ci-cd CI, CD, testing, build issues exporter/signalfx priority:p1 High

Comments

@crobert-1
Copy link
Member

Component(s)

exporter/signalfx

Describe the issue you're reporting

CI/CD link: https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862

Unit test failing: TestConsumeMetrics/response_bad_request

Failure output:

Running target 'test' in module 'exporter/signalfxexporter' as part of group 'exporter-1'
make -C exporter/signalfxexporter test
make[2]: Entering directory '/home/runner/work/opentelemetry-collector-contrib/opentelemetry-collector-contrib/exporter/signalfxexporter'
go test -race -timeout 300s -parallel 4 --tags="" ./...
?   	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter/internal/apm/log	[no test files]
?   	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter/internal/apm/requests	[no test files]
?   	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter/internal/metadata	[no test files]
==================
WARNING: DATA RACE
Write at 0x00c000486a98 by goroutine 80:
  go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp.(*bodyWrapper).Read()
      /home/runner/go/pkg/mod/go.opentelemetry.io/contrib/instrumentation/net/http/[email protected]/wrap.go:40 +0xa4
  io.discard.ReadFrom()
      /opt/hostedtoolcache/go/1.21.6/x64/src/io/io.go:658 +0x91
  io.(*discard).ReadFrom()
      <autogenerated>:1 +0x4c
  io.copyBuffer()
      /opt/hostedtoolcache/go/1.21.6/x64/src/io/io.go:416 +0x1be
  io.Copy()
      /opt/hostedtoolcache/go/1.21.6/x64/src/io/io.go:389 +0x5c
  net/http.(*transferWriter).doBodyCopy()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/transfer.go:412 +0x38
  net/http.(*transferWriter).writeBody()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/transfer.go:375 +0x82f
  net/http.(*Request).write()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/request.go:738 +0x1393
  net/http.(*persistConn).writeLoop()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/transport.go:2424 +0x372
  net/http.(*Transport).dialConn.func6()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/transport.go:1777 +0x33

Previous read at 0x00c000486a98 by goroutine 73:
  go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp.(*Transport).RoundTrip()
      /home/runner/go/pkg/mod/go.opentelemetry.io/contrib/instrumentation/net/http/[email protected]/transport.go:185 +0xec8
  net/http.send()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/client.go:260 +0x9c6
  net/http.(*Client).send()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/client.go:181 +0x14e
  net/http.(*Client).do()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/client.go:724 +0x11a8
  net/http.(*Client).Do()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/client.go:590 +0x7ad
  github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter.(*sfxDPClient).pushMetricsDataForToken()
      /home/runner/work/opentelemetry-collector-contrib/opentelemetry-collector-contrib/exporter/signalfxexporter/dpclient.go:123 +0x781
  github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter.(*sfxDPClient).pushMetricsData()
      /home/runner/work/opentelemetry-collector-contrib/opentelemetry-collector-contrib/exporter/signalfxexporter/dpclient.go:90 +0x49b
  github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter.TestConsumeMetrics.func1()
      /home/runner/work/opentelemetry-collector-contrib/opentelemetry-collector-contrib/exporter/signalfxexporter/exporter_test.go:207 +0xa49
  testing.tRunner()
      /opt/hostedtoolcache/go/1.21.6/x64/src/testing/testing.go:1595 +0x261
  testing.(*T).Run.func1()
      /opt/hostedtoolcache/go/1.21.6/x64/src/testing/testing.go:1648 +0x44

Goroutine 80 (running) created at:
  net/http.(*Transport).dialConn()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/transport.go:1777 +0x266a
  net/http.(*Transport).dialConnFor()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/transport.go:1467 +0x129
  net/http.(*Transport).queueForDial.func1()
      /opt/hostedtoolcache/go/1.21.6/x64/src/net/http/transport.go:1436 +0x44

Goroutine 73 (running) created at:
  testing.(*T).Run()
      /opt/hostedtoolcache/go/1.21.6/x64/src/testing/testing.go:1648 +0x845
  github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter.TestConsumeMetrics()
      /home/runner/work/opentelemetry-collector-contrib/opentelemetry-collector-contrib/exporter/signalfxexporter/exporter_test.go:167 +0xd0e
  testing.tRunner()
      /opt/hostedtoolcache/go/1.21.6/x64/src/testing/testing.go:1595 +0x261
  testing.(*T).Run.func1()
      /opt/hostedtoolcache/go/1.21.6/x64/src/testing/testing.go:1648 +0x44
==================
--- FAIL: TestConsumeMetrics (0.21s)
    --- FAIL: TestConsumeMetrics/response_bad_request (0.00s)
        testing.go:1465: race detected during execution of test
    testing.go:1465: race detected during execution of test
2024/02/07 16:32:11 http: TLS handshake error from 127.0.0.1:49108: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43558: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43560: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43574: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43578: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43580: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43588: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43596: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43606: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43612: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43616: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43630: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43638: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43642: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43644: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43650: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43660: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43676: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43680: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43682: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43698: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43712: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43724: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43728: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43738: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43748: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43752: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43760: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43772: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43780: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43792: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43800: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43810: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43824: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43834: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43842: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43850: remote error: tls: bad certificate
2024/02/07 16:32:14 http: TLS handshake error from 127.0.0.1:43854: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43858: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43872: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43884: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43898: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43904: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43918: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43930: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43938: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43950: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43952: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43968: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43982: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:43992: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44000: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44008: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44020: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44036: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44038: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44048: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44064: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44072: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44076: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44084: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44090: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44094: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44108: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44124: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44132: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44134: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44148: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44152: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44168: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44[180](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:181): remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44188: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44190: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44192: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44194: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44196: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44198: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44212: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44220: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44236: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44244: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44256: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44262: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44276: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44282: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44288: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44300: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44310: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44326: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44338: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44342: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44348: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44358: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44370: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44374: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44384: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44396: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44404: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44412: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44414: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44418: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44420: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44430: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44436: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44452: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44466: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44468: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44472: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44476: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44482: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44486: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44502: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44518: remote error: tls: bad certificate
2024/02/07 16:32:15 http: TLS handshake error from 127.0.0.1:44534: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44542: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44550: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44558: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44560: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44562: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44574: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44580: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44588: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44598: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44602: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44614: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44618: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44632: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44638: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44644: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44652: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44662: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44666: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44680: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44696: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44712: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44714: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44720: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44726: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44730: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44746: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44760: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44770: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44772: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44786: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44788: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44792: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44800: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44802: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44804: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44816: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44832: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44836: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44846: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44850: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44864: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44870: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44884: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44894: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44896: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44906: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44922: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44926: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44930: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44946: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44962: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44978: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44988: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:44994: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45006: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45020: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45024: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45040: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45050: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45054: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45058: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45066: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45074: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45082: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45092: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45098: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45114: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45120: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45128: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45138: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45152: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45166: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45176: remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45[182](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:183): remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45[188](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:189): remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45[200](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:201): remote error: tls: bad certificate
[202](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:203)4/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45[208](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:209): remote error: tls: bad certificate
2024/02/07 16:32:16 http: TLS handshake error from 127.0.0.1:45[222](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:223): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[226](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:227): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[232](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:233): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[234](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:235): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[240](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:241): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[244](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:245): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[258](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:259): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[268](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:269): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45[278](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:279): remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45288: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45294: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45304: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45310: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45314: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45330: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45336: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45338: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45350: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45358: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45370: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45382: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45392: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45402: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45414: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45416: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45422: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45426: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45436: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45438: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45440: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45446: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45462: remote error: tls: bad certificate
2024/02/07 16:32:17 http: TLS handshake error from 127.0.0.1:45470: write tcp 127.0.0.1:4[283](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:284)1->127.0.0.1:[454](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/7817953305/job/21327098862#step:8:455)70: use of closed network connection
FAIL
FAIL	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter	8.582s
@crobert-1 crobert-1 added needs triage New item requiring triage bug Something isn't working ci-cd CI, CD, testing, build issues labels Feb 7, 2024
@crobert-1
Copy link
Member Author

This looks like an issue with underlying opentelemetry-go-contrib repo, removing needs triage but leaving open as this will likely continue failing until the dependency is fixed.

@crobert-1 crobert-1 added exporter/signalfx and removed needs triage New item requiring triage labels Feb 7, 2024
Copy link
Contributor

github-actions bot commented Feb 7, 2024

Pinging code owners for exporter/signalfx: @dmitryax @crobert-1. See Adding Labels via Comments if you do not have permissions to add labels yourself.

@djaglowski
Copy link
Member

I'm seeing this in many CI runs. Here for example.

@djaglowski djaglowski added the priority:p1 High label Feb 8, 2024
@crobert-1
Copy link
Member Author

Fixed by #31141

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working ci-cd CI, CD, testing, build issues exporter/signalfx priority:p1 High
Projects
None yet
Development

No branches or pull requests

2 participants