This is a simple jaeger tracing middleware for Django applications.
I read Jaeger - Distributed Tracing System on github and make it plus.
$ pip install django-jaeger-middleware
Then add django-jaeger-middleware.middleware.JaegerMiddleWare
to the end your MIDDLEWARE
in settings.py
.
For example:
MIDDLEWARE = [
...
'django_jaeger_middleware.middleware.JaegerMiddleWare'
]
Email me with any questions: [email protected].