Tyler Yahn
Tyler Yahn
Go mod proxies we could run BTW: - https://github.com/gomods/athens - https://pkg.go.dev/github.com/goproxy/goproxy - JFrog -- https://gavincampbell.dev/post/golang-proxy-artifactory/
It looks like using Git LFS will mean all modules that take this one as a dependency will need to have it installed and configured in their development environments: https://stackoverflow.com/questions/58280942/import-a-golang-module-with-lfs-objects
SIG notes: - Each `*.o` file is ~50KB. Every change would mean another 50KB to the git history. - Custom probes would help alleviate "a single version for everything" issue...
SIG meeting notes: - Ask the go tooling team if they have options or are willing to look into solutions.
Currently the Mongo DB instrumentation has no owner. The new owner needs to assume this task or we should close this along with https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 if we do not land on...
cc @prestonvasquez
Ideally, something like this: ```go package main import ( "fmt" "time" ) var Flag bool func main() { for { fmt.Printf("Flag: %t", Flag) time.Sleep(time.Second) } // Output: Flag: false //...
We may also need to look into having the global package call something like: ```go func (t *tracer) start(eBPFFlag *bool, ctx context.Context, name string, opts ...trace.SpanStartOption) (context.Context, trace.Span) { /*...
Awesome! Let me see about getting an issue created in https://github.com/open-telemetry/opentelemetry-go to make the proposal based on these findings.
opentelemetry-go proposal: https://github.com/open-telemetry/opentelemetry-go/issues/5702 @RonFed PTAL