This is a simple example that demonstrates tracing http request from client to server. The example shows key aspects of tracing such as:
Example uses - open-telemetry SDK as trace instrumentation provider, - httptrace plugin to facilitate tracing http request on client and server - http trace_context propagation to propagate SpanContext on the wire. - stdout exporter to print information about spans in the terminal
GO111MODULE="" go get -d go.opentelemetry.io/otel
cd $GOPATH/src/go.opentelemetry.io/otel/example/http/
go run ./server/server.go
cd $GOPATH/src/go.opentelemetry.io/otel/example/http/
go run ./client/client.go
The spans should be visible in stdout in the order that they were exported.