nejtr0n / opentracing-tutorial

A collection of tutorials for the OpenTracing API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenTracing Tutorials

A collection of tutorials for the OpenTracing API (https://opentracing.io).

Prerequisites

The tutorials are using CNCF Jaeger (https://jaegertracing.io) as the tracing backend. For this tutorial, we'll start Jaeger via Docker with the default in-memory storage, exposing only the required ports. We'll also enable "debug" level logging:

docker run \
  --rm \
  -p 6831:6831/udp \
  -p 6832:6832/udp \
  -p 16686:16686 \
  jaegertracing/all-in-one:1.7 \
  --log-level=debug

Alternatively, Jaeger can be downloaded as a binary called all-in-one for different platforms from https://jaegertracing.io/download/.

Once the backend starts, the Jaeger UI will be accessible at http://localhost:16686.

Tutorials by Language

About

A collection of tutorials for the OpenTracing API

License:Apache License 2.0


Languages

Language:Java 33.6%Language:C# 23.7%Language:Go 15.6%Language:JavaScript 15.3%Language:Python 11.1%Language:Shell 0.6%Language:Makefile 0.1%