Example demonstrating OpenCensus tracing with Gorilla mux routing.
This demo uses Zipkin as the tracing backend as it is very easy to set-up. See the Zipkin quickstart
A typical way to see the example in action:
# run Zipkin from official docker image
docker run -d -p 9411:9411 openzipkin/zipkin
# build the client and server applications
go generate
# start the server
build/server &
# run the client
build/clientIf all is well you should be able to see some generated spans at http://localhost:9411