├── .bumpversion.cfg ├── .circleci └── config.yml ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── question-discussion.md │ └── security-vulnerability-report.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── release.yml └── workflows │ ├── add-to-project-v2.yml │ ├── apply-labels.yml │ ├── stale.yml │ └── validate-pr-title.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── NOTICE ├── OSSMETADATA ├── README.md ├── RELEASING.md ├── SECURITY.md ├── SUPPORT.md ├── beeline ├── __init__.py ├── aiotrace.py ├── internal.py ├── middleware │ ├── __init__.py │ ├── awslambda │ │ ├── __init__.py │ │ └── test_awslambda.py │ ├── bottle │ │ ├── __init__.py │ │ └── test_bottle.py │ ├── django │ │ ├── __init__.py │ │ └── test_django.py │ ├── flask │ │ ├── __init__.py │ │ └── test_flask.py │ ├── werkzeug │ │ ├── __init__.py │ │ └── test_werkzeug.py │ └── wsgi.py ├── patch │ ├── __init__.py │ ├── jinja2.py │ ├── requests.py │ ├── test_jinja2.py │ ├── test_requests.py │ ├── test_urllib.py │ ├── tornado.py │ └── urllib.py ├── propagation │ ├── __init__.py │ ├── default.py │ ├── honeycomb.py │ ├── test_honeycomb.py │ ├── test_propagation.py │ ├── test_w3c.py │ └── w3c.py ├── test_async.py ├── test_beeline.py ├── test_internal.py ├── test_suite.py ├── test_trace.py ├── trace.py └── version.py ├── examples ├── django │ ├── README.md │ ├── app │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── hello │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── manage.py │ └── pyproject.toml ├── flask │ ├── README.md │ ├── app.py │ └── pyproject.toml └── hello-world │ ├── README.md │ ├── app.py │ └── pyproject.toml ├── poetry.lock ├── push_docs.sh ├── pylint.rc └── pyproject.toml /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/ISSUE_TEMPLATE/question-discussion.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/security-vulnerability-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/ISSUE_TEMPLATE/security-vulnerability-report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project-v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/workflows/add-to-project-v2.yml -------------------------------------------------------------------------------- /.github/workflows/apply-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/workflows/apply-labels.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.github/workflows/validate-pr-title.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/NOTICE -------------------------------------------------------------------------------- /OSSMETADATA: -------------------------------------------------------------------------------- 1 | osslifecycle=archived -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /beeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/__init__.py -------------------------------------------------------------------------------- /beeline/aiotrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/aiotrace.py -------------------------------------------------------------------------------- /beeline/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/internal.py -------------------------------------------------------------------------------- /beeline/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beeline/middleware/awslambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/awslambda/__init__.py -------------------------------------------------------------------------------- /beeline/middleware/awslambda/test_awslambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/awslambda/test_awslambda.py -------------------------------------------------------------------------------- /beeline/middleware/bottle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/bottle/__init__.py -------------------------------------------------------------------------------- /beeline/middleware/bottle/test_bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/bottle/test_bottle.py -------------------------------------------------------------------------------- /beeline/middleware/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/django/__init__.py -------------------------------------------------------------------------------- /beeline/middleware/django/test_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/django/test_django.py -------------------------------------------------------------------------------- /beeline/middleware/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/flask/__init__.py -------------------------------------------------------------------------------- /beeline/middleware/flask/test_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/flask/test_flask.py -------------------------------------------------------------------------------- /beeline/middleware/werkzeug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/werkzeug/__init__.py -------------------------------------------------------------------------------- /beeline/middleware/werkzeug/test_werkzeug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/werkzeug/test_werkzeug.py -------------------------------------------------------------------------------- /beeline/middleware/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/middleware/wsgi.py -------------------------------------------------------------------------------- /beeline/patch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beeline/patch/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/patch/jinja2.py -------------------------------------------------------------------------------- /beeline/patch/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/patch/requests.py -------------------------------------------------------------------------------- /beeline/patch/test_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/patch/test_jinja2.py -------------------------------------------------------------------------------- /beeline/patch/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/patch/test_requests.py -------------------------------------------------------------------------------- /beeline/patch/test_urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/patch/test_urllib.py -------------------------------------------------------------------------------- /beeline/patch/tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/patch/tornado.py -------------------------------------------------------------------------------- /beeline/patch/urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/patch/urllib.py -------------------------------------------------------------------------------- /beeline/propagation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/propagation/__init__.py -------------------------------------------------------------------------------- /beeline/propagation/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/propagation/default.py -------------------------------------------------------------------------------- /beeline/propagation/honeycomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/propagation/honeycomb.py -------------------------------------------------------------------------------- /beeline/propagation/test_honeycomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/propagation/test_honeycomb.py -------------------------------------------------------------------------------- /beeline/propagation/test_propagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/propagation/test_propagation.py -------------------------------------------------------------------------------- /beeline/propagation/test_w3c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/propagation/test_w3c.py -------------------------------------------------------------------------------- /beeline/propagation/w3c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/propagation/w3c.py -------------------------------------------------------------------------------- /beeline/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/test_async.py -------------------------------------------------------------------------------- /beeline/test_beeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/test_beeline.py -------------------------------------------------------------------------------- /beeline/test_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/test_internal.py -------------------------------------------------------------------------------- /beeline/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/test_suite.py -------------------------------------------------------------------------------- /beeline/test_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/test_trace.py -------------------------------------------------------------------------------- /beeline/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/beeline/trace.py -------------------------------------------------------------------------------- /beeline/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '3.6.0' # Update using bump2version 2 | -------------------------------------------------------------------------------- /examples/django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/README.md -------------------------------------------------------------------------------- /examples/django/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/app/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/app/settings.py -------------------------------------------------------------------------------- /examples/django/app/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/app/urls.py -------------------------------------------------------------------------------- /examples/django/app/app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/app/wsgi.py -------------------------------------------------------------------------------- /examples/django/app/hello/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/app/hello/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/hello/admin.py -------------------------------------------------------------------------------- /examples/django/app/hello/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/hello/apps.py -------------------------------------------------------------------------------- /examples/django/app/hello/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/app/hello/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/hello/models.py -------------------------------------------------------------------------------- /examples/django/app/hello/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/hello/tests.py -------------------------------------------------------------------------------- /examples/django/app/hello/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/hello/urls.py -------------------------------------------------------------------------------- /examples/django/app/hello/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/hello/views.py -------------------------------------------------------------------------------- /examples/django/app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/app/manage.py -------------------------------------------------------------------------------- /examples/django/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/django/pyproject.toml -------------------------------------------------------------------------------- /examples/flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/flask/README.md -------------------------------------------------------------------------------- /examples/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/flask/app.py -------------------------------------------------------------------------------- /examples/flask/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/flask/pyproject.toml -------------------------------------------------------------------------------- /examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/hello-world/README.md -------------------------------------------------------------------------------- /examples/hello-world/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/hello-world/app.py -------------------------------------------------------------------------------- /examples/hello-world/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/examples/hello-world/pyproject.toml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/poetry.lock -------------------------------------------------------------------------------- /push_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/push_docs.sh -------------------------------------------------------------------------------- /pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/pylint.rc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycombio/beeline-python/HEAD/pyproject.toml --------------------------------------------------------------------------------