go-test-trace icon indicating copy to clipboard operation
go-test-trace copied to clipboard

Go test with tracing.

Results 4 go-test-trace issues
Sort by recently updated
recently updated
newest added

When run as `go-test-trace ...` without `-stdin`, we now create spans for each package and the test spans have been moved to be children of them. Subtests are similarly attached...

The `55860` legacy port was removed in `v0.35.0` of the upstream collector and `v0.13.0` of the ADOT collector. https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.35.0 https://github.com/aws-observability/aws-otel-collector/releases/tag/v0.13.0

Currently, go-test-trace propagates the global context to go test via TRACE_CONTEXT environmental variable, but this feature is not documented and it's not clear what the limitations are.

Currently, go-test-trace requires a standalone collector running to export spans. We can also link the collector into the go-test-trace binary to optionally allow users to run the collector as a...