Yuri Grinshteyn
Yuri Grinshteyn
+1, I was looking for instructions on how to configure Zipkin to send traces to Cloud Trace and hit the same issues.
At the risk of shameless self-promotion - you can see working examples of context propagation here, albeit in Golang: https://github.com/yuriatgoogle/opencensus-demo/tree/master/go/http
Here is the output I see: ```bash $ go run main.go go: downloading cloud.google.com/go v0.47.0 go: downloading go.opentelemetry.io/otel v0.2.1 go: downloading google.golang.org/grpc v1.27.0 go: downloading github.com/gorilla/mux v1.7.3 go: downloading go.opentelemetry.io/otel/exporter/trace/stackdriver...
OK - I'm not able to reproduce the error you're seeing. Try manually installing the packages using `go get` ? On Tue, Sep 22, 2020 at 10:29 AM Vamsee Lakamsani...
That's really strange - "go get" should download the packages if you don't have them installed. I THINK you need to set $GOPATH and add it to $PATH. *Yuri Grinshteyn*...