Skip to content

Latest commit

 

History

History
 
 

python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

OpenTracing Tutorial - Python

Installing

The tutorials are using CNCF Jaeger (https://github.com/jaegertracing/jaeger) as the tracing backend, see here how to install it in a Docker image.

Jaeger Python client currently only supports Python 2.7.

This repository uses virtualenv and pip to manage dependencies. To install all dependencies, run:

cd opentracing-tutorial/python
virtualenv env
source env/bin/activate
pip install -r requirements.txt

All subsequent commands in the tutorials should be executed relative to this python directory.

Lessons