Jaana Dogan
Jaana Dogan
Either generate the SVG yourself or convert the visualization to a trace view (easier to implement from scratch and more useful to the user).
NewUnstartedExporter is yet another flavor of an exporter and not starting automatically can be an option. Consider having something like this instead: ``` func WithNoAutoStart() ExporterOption ```
Functional options are a considered disadvantageous due their complexity, read https://middlemost.com/object-lifecycle/ for more and consider about exporting some fields on the Exporter type instead. ```go type Exporter struct { Addr...
Is it possible to delete the repo since we don't maintain it and don't recommend anyone to use Martini? I contributed two plugins to dogfood the framework but they keep...
Unlike other languages, Go has a strong consensus on the HTTP APIs. The ecosystem and the framework space consistently relies on `http.Request`. Due to this unique situation, I wonder if...
### What are you trying to do? It's a common use case for LLM tool builders to wish they can rely on a local model rather than relying on a...
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...