1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-03 22:52:30 +02:00
opentelemetry-go/example
dependabot[bot] 693fa3d990
Bump google.golang.org/grpc from 1.27.1 to 1.29.1 in /exporters/trace/jaeger (#831)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ET <evantorrie@users.noreply.github.com>
Co-authored-by: Liz Fong-Jones <lizf@honeycomb.io>
2020-06-22 13:58:02 -04:00
..
basic Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#836) 2020-06-22 13:31:15 -04:00
grpc Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#836) 2020-06-22 13:31:15 -04:00
http Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#836) 2020-06-22 13:31:15 -04:00
jaeger Bump google.golang.org/grpc from 1.27.1 to 1.29.1 in /exporters/trace/jaeger (#831) 2020-06-22 13:58:02 -04:00
namedtracer Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#836) 2020-06-22 13:31:15 -04:00
otel-collector Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 in /exporters/otlp (#839) 2020-06-22 12:54:07 -04:00
otlp Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#836) 2020-06-22 13:31:15 -04:00
prometheus Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#836) 2020-06-22 13:31:15 -04:00
zipkin Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#836) 2020-06-22 13:31:15 -04:00
README.md Split OTLP README to own directory 2020-06-01 13:27:23 -05:00

Example

HTTP

This is a simple example that demonstrates tracing http request from client to server. The example shows key aspects of tracing such as:

  • Root Span (on Client)
  • Child Span (on Client)
  • Child Span from a Remote Parent (on Server)
  • SpanContext Propagation (from Client to Server)
  • Span Events
  • Span Attributes

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

How to run?

Prequisites

  • go 1.13 installed
  • GOPATH is configured.

1 Download git repo

GO111MODULE="" go get -d go.opentelemetry.io/otel

2 Start Server

cd $GOPATH/src/go.opentelemetry.io/otel/example/http/
go run ./server/server.go

3 Start Client

cd $GOPATH/src/go.opentelemetry.io/otel/example/http/
go run ./client/client.go

4 Check traces in stdout

The spans should be visible in stdout in the order that they were exported.