├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── .isort.cfg ├── .prettierrc.yml ├── .pylintrc ├── LICENSE ├── Makefile ├── README.md ├── dev-requirements.txt ├── example ├── basic │ ├── Makefile │ ├── README.md │ └── main.py ├── django-postgresql │ ├── Makefile │ ├── README.md │ ├── djangoex │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── docker-compose.yml │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── otel │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── hello.html │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── requirements.txt ├── django │ ├── Makefile │ ├── README.md │ ├── djangoex │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── otel │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── hello.html │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── requirements.txt ├── fastapi │ ├── Makefile │ ├── README.md │ ├── client.py │ ├── main.py │ └── requirements.txt ├── flask-auto-instrumentation │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt ├── flask-gunicorn │ ├── README.md │ ├── gunicorn.config.py │ ├── main.py │ └── requirements.txt ├── flask-uwsgi │ ├── README.md │ ├── main.py │ └── requirements.txt ├── flask │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt ├── metrics │ ├── Makefile │ ├── README.md │ └── main.py ├── otel-api │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt ├── otlp-logs │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt ├── otlp-metrics │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt ├── otlp-traces-http │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt ├── otlp-traces │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt └── pyramid │ ├── Makefile │ ├── README.md │ ├── main.py │ └── requirements.txt ├── noxfile.py ├── setup.cfg ├── setup.py ├── src └── uptrace │ ├── __init__.py │ ├── client.py │ ├── distro.py │ ├── dsn.py │ ├── id_generator.py │ ├── logs.py │ ├── metrics.py │ ├── traces.py │ ├── uptrace.py │ ├── util.py │ └── version.py └── test └── test_uptrace.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /example/basic/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | PYTHONPATH=../../src ./main.py 3 | -------------------------------------------------------------------------------- /example/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/basic/README.md -------------------------------------------------------------------------------- /example/basic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/basic/main.py -------------------------------------------------------------------------------- /example/django-postgresql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/Makefile -------------------------------------------------------------------------------- /example/django-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/README.md -------------------------------------------------------------------------------- /example/django-postgresql/djangoex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django-postgresql/djangoex/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/djangoex/asgi.py -------------------------------------------------------------------------------- /example/django-postgresql/djangoex/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/djangoex/docker-compose.yml -------------------------------------------------------------------------------- /example/django-postgresql/djangoex/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/djangoex/settings.py -------------------------------------------------------------------------------- /example/django-postgresql/djangoex/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/djangoex/urls.py -------------------------------------------------------------------------------- /example/django-postgresql/djangoex/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/djangoex/wsgi.py -------------------------------------------------------------------------------- /example/django-postgresql/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/manage.py -------------------------------------------------------------------------------- /example/django-postgresql/otel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django-postgresql/otel/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/admin.py -------------------------------------------------------------------------------- /example/django-postgresql/otel/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/apps.py -------------------------------------------------------------------------------- /example/django-postgresql/otel/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django-postgresql/otel/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/models.py -------------------------------------------------------------------------------- /example/django-postgresql/otel/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/templates/hello.html -------------------------------------------------------------------------------- /example/django-postgresql/otel/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/templates/index.html -------------------------------------------------------------------------------- /example/django-postgresql/otel/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/tests.py -------------------------------------------------------------------------------- /example/django-postgresql/otel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/urls.py -------------------------------------------------------------------------------- /example/django-postgresql/otel/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/otel/views.py -------------------------------------------------------------------------------- /example/django-postgresql/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django-postgresql/requirements.txt -------------------------------------------------------------------------------- /example/django/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/Makefile -------------------------------------------------------------------------------- /example/django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/README.md -------------------------------------------------------------------------------- /example/django/djangoex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django/djangoex/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/djangoex/asgi.py -------------------------------------------------------------------------------- /example/django/djangoex/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/djangoex/settings.py -------------------------------------------------------------------------------- /example/django/djangoex/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/djangoex/urls.py -------------------------------------------------------------------------------- /example/django/djangoex/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/djangoex/wsgi.py -------------------------------------------------------------------------------- /example/django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/manage.py -------------------------------------------------------------------------------- /example/django/otel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django/otel/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/admin.py -------------------------------------------------------------------------------- /example/django/otel/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/apps.py -------------------------------------------------------------------------------- /example/django/otel/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django/otel/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/models.py -------------------------------------------------------------------------------- /example/django/otel/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/templates/hello.html -------------------------------------------------------------------------------- /example/django/otel/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/templates/index.html -------------------------------------------------------------------------------- /example/django/otel/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/tests.py -------------------------------------------------------------------------------- /example/django/otel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/urls.py -------------------------------------------------------------------------------- /example/django/otel/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/otel/views.py -------------------------------------------------------------------------------- /example/django/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/django/requirements.txt -------------------------------------------------------------------------------- /example/fastapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/fastapi/Makefile -------------------------------------------------------------------------------- /example/fastapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/fastapi/README.md -------------------------------------------------------------------------------- /example/fastapi/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/fastapi/client.py -------------------------------------------------------------------------------- /example/fastapi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/fastapi/main.py -------------------------------------------------------------------------------- /example/fastapi/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/fastapi/requirements.txt -------------------------------------------------------------------------------- /example/flask-auto-instrumentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-auto-instrumentation/Makefile -------------------------------------------------------------------------------- /example/flask-auto-instrumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-auto-instrumentation/README.md -------------------------------------------------------------------------------- /example/flask-auto-instrumentation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-auto-instrumentation/main.py -------------------------------------------------------------------------------- /example/flask-auto-instrumentation/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-auto-instrumentation/requirements.txt -------------------------------------------------------------------------------- /example/flask-gunicorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-gunicorn/README.md -------------------------------------------------------------------------------- /example/flask-gunicorn/gunicorn.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-gunicorn/gunicorn.config.py -------------------------------------------------------------------------------- /example/flask-gunicorn/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-gunicorn/main.py -------------------------------------------------------------------------------- /example/flask-gunicorn/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-gunicorn/requirements.txt -------------------------------------------------------------------------------- /example/flask-uwsgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-uwsgi/README.md -------------------------------------------------------------------------------- /example/flask-uwsgi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-uwsgi/main.py -------------------------------------------------------------------------------- /example/flask-uwsgi/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask-uwsgi/requirements.txt -------------------------------------------------------------------------------- /example/flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask/Makefile -------------------------------------------------------------------------------- /example/flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask/README.md -------------------------------------------------------------------------------- /example/flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask/main.py -------------------------------------------------------------------------------- /example/flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/flask/requirements.txt -------------------------------------------------------------------------------- /example/metrics/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | PYTHONPATH=../../src ./main.py 3 | -------------------------------------------------------------------------------- /example/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/metrics/README.md -------------------------------------------------------------------------------- /example/metrics/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/metrics/main.py -------------------------------------------------------------------------------- /example/otel-api/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | PYTHONPATH=../../src ./main.py 3 | -------------------------------------------------------------------------------- /example/otel-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otel-api/README.md -------------------------------------------------------------------------------- /example/otel-api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otel-api/main.py -------------------------------------------------------------------------------- /example/otel-api/requirements.txt: -------------------------------------------------------------------------------- 1 | uptrace 2 | -------------------------------------------------------------------------------- /example/otlp-logs/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./main.py 3 | -------------------------------------------------------------------------------- /example/otlp-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-logs/README.md -------------------------------------------------------------------------------- /example/otlp-logs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-logs/main.py -------------------------------------------------------------------------------- /example/otlp-logs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-logs/requirements.txt -------------------------------------------------------------------------------- /example/otlp-metrics/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./main.py 3 | -------------------------------------------------------------------------------- /example/otlp-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-metrics/README.md -------------------------------------------------------------------------------- /example/otlp-metrics/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-metrics/main.py -------------------------------------------------------------------------------- /example/otlp-metrics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-metrics/requirements.txt -------------------------------------------------------------------------------- /example/otlp-traces-http/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./main.py 3 | -------------------------------------------------------------------------------- /example/otlp-traces-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-traces-http/README.md -------------------------------------------------------------------------------- /example/otlp-traces-http/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-traces-http/main.py -------------------------------------------------------------------------------- /example/otlp-traces-http/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-traces-http/requirements.txt -------------------------------------------------------------------------------- /example/otlp-traces/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./main.py 3 | -------------------------------------------------------------------------------- /example/otlp-traces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-traces/README.md -------------------------------------------------------------------------------- /example/otlp-traces/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-traces/main.py -------------------------------------------------------------------------------- /example/otlp-traces/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/otlp-traces/requirements.txt -------------------------------------------------------------------------------- /example/pyramid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/pyramid/Makefile -------------------------------------------------------------------------------- /example/pyramid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/pyramid/README.md -------------------------------------------------------------------------------- /example/pyramid/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/pyramid/main.py -------------------------------------------------------------------------------- /example/pyramid/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/example/pyramid/requirements.txt -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/noxfile.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/setup.py -------------------------------------------------------------------------------- /src/uptrace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/__init__.py -------------------------------------------------------------------------------- /src/uptrace/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/client.py -------------------------------------------------------------------------------- /src/uptrace/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/distro.py -------------------------------------------------------------------------------- /src/uptrace/dsn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/dsn.py -------------------------------------------------------------------------------- /src/uptrace/id_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/id_generator.py -------------------------------------------------------------------------------- /src/uptrace/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/logs.py -------------------------------------------------------------------------------- /src/uptrace/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/metrics.py -------------------------------------------------------------------------------- /src/uptrace/traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/traces.py -------------------------------------------------------------------------------- /src/uptrace/uptrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/uptrace.py -------------------------------------------------------------------------------- /src/uptrace/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/util.py -------------------------------------------------------------------------------- /src/uptrace/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/src/uptrace/version.py -------------------------------------------------------------------------------- /test/test_uptrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uptrace/uptrace-python/HEAD/test/test_uptrace.py --------------------------------------------------------------------------------