jaeger-client-python
π This library is DEPRECATED!
File Explorer
Download Latest Version (.zip)- ci-crossdock.yml
- ci-unit-tests.yml
- CODEOWNERS.md
- dependabot.yml
- __init__.py
- constants.py
- endtoend.py
- serializer.py
- server.py
- thriftrw_serializer.py
- __init__.py
- constants.py
- TracedService.py
- ttypes.py
- __init__.py
- __init__.py
- docker-compose.yml
- Dockerfile
- rules.mk
- setup_crossdock.py
- __init__.py
- metrics.py
- prometheus.py
- __init__.py
- Agent.py
- constants.py
- ttypes.py
- __init__.py
- Collector.py
- constants.py
- ttypes.py
- __init__.py
- constants.py
- SamplingManager.py
- ttypes.py
- __init__.py
- constants.py
- ttypes.py
- ZipkinCollector.py
- __init__.py
- __init__.py
- codecs.py
- config.py
- constants.py
- ioloop_util.py
- local_agent_net.py
- py.typed
- rate_limiter.py
- reporter.py
- sampler.py
- span.py
- span_context.py
- thrift.py
- throttler.py
- tracer.py
- TUDPTransport.py
- utils.py
- build-crossdock.sh
- check-license.sh
- updateLicense.py
- __init__.py
- conftest.py
- test_api.py
- test_codecs.py
- test_config.py
- test_crossdock.py
- test_local_agent_net.py
- test_metrics.py
- test_noop_tracer.py
- test_prometheus.py
- test_rate_limiter.py
- test_reporter.py
- test_sampler.py
- test_span.py
- test_span_context.py
- test_thrift.py
- test_throttler.py
- test_traceback_log.py
- test_tracer.py
- test_tracer_benchmark.py
- test_TUDPTransport.py
- test_utils.py
- .coveragerc
- .gitignore
- .gitmodules
- CHANGELOG.rst
- CONTRIBUTING.md
- DCO
- idl
- LICENSE
- Makefile
- MANIFEST.in
- README.md
- RELEASE.md
- requirements-dev.txt
- requirements-tests.txt
- requirements.txt
- setup.cfg
- setup.py
- thrift-gen-fix.awk
# Installation Guide
1. Get the code
git clone https://github.com/jaegertracing/jaeger-client-python
Downloads the entire project code from GitHub to your computer.
cd jaeger-client-python
Moves into the project folder you just downloaded.
2. Official Install Script
Easy RecommendedPrerequisites
- Python 3 Python is required to use pip.
pip install jaeger-client
Installs the package published on PyPI directly β no need to clone the source.
After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.
Pulled directly from this repo's README.
3. Docker
EasyPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f crossdock/docker-compose.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
4. Python
EasyPrerequisites
pip install jaeger-client
Installs the package published on PyPI directly β no need to clone the source.
If it runs without errors and prints output in the terminal, it worked.
Pulled directly from this repo's README.
5. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
