├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── azure_monitor ├── README.md ├── artifacts │ ├── common.ps1 │ ├── parameters.json │ ├── setup.ps1 │ └── template.json ├── azfunc_sample │ ├── BaltimoreCyberTrustRoot.crt.pem │ ├── DigiCertGlobalRootCA.crt.pem │ ├── MyHttpFunction │ │ ├── __init__.py │ │ ├── function.json │ │ └── sample.dat │ ├── README.md │ ├── docs │ │ └── assets │ │ │ ├── 01-ai-correlated-invocation.PNG │ │ │ ├── 02-ai-correlated-invocation.PNG │ │ │ └── 03-ai-application-map.PNG │ ├── host.json │ ├── instrumentation │ │ ├── __init__.py │ │ ├── function.json │ │ ├── globals.py │ │ ├── instrumentation_func.py │ │ ├── main.py │ │ └── utils.py │ ├── local.settings.json │ ├── requirements.txt │ ├── tests │ │ ├── __init__.py │ │ ├── test_globals.py │ │ └── test_instrumentation_func.py │ └── tmp │ │ └── data │ │ ├── 05582fa0-2f83-48ca-96ae-8206ee59aab5.txt │ │ ├── a20f2b98-bd5a-4692-ab93-397a460d722f.txt │ │ └── bd7ae612-ca6a-4bb4-a146-9926f24a4e10.txt ├── django_sample │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── azureproject │ │ ├── __init__.py │ │ ├── app_insights.py │ │ ├── asgi.py │ │ ├── development.py │ │ ├── get_token.py │ │ ├── production.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── requirements.txt │ ├── restaurant_review │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_review_rating.py │ │ │ ├── 0003_restaurant_image_name_review_image_name.py │ │ │ ├── 0004_alter_restaurant_image_name_alter_review_image_name.py │ │ │ ├── 0005_remove_restaurant_image_name.py │ │ │ ├── 0006_alter_review_image_name.py │ │ │ ├── 0007_alter_review_image_name.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── 500.html │ │ │ └── restaurant_review │ │ │ │ ├── base.html │ │ │ │ ├── create_restaurant.html │ │ │ │ ├── details.html │ │ │ │ ├── index.html │ │ │ │ └── star_rating.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── restaurant_extras.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── static │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── Example-reviews.png │ │ │ └── azure-icon.svg │ │ └── restaurant.css │ ├── staticfiles │ │ └── note.txt │ └── web_project │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── env.template ├── flask_sample │ ├── README.md │ ├── app.db │ ├── app │ │ ├── __init__.py │ │ ├── forms │ │ │ └── __init__.py │ │ ├── metrics.py │ │ ├── models │ │ │ └── __init__.py │ │ ├── routes.py │ │ ├── static │ │ │ └── index.css │ │ └── templates │ │ │ ├── blacklist.html │ │ │ └── index.html │ ├── command.py │ ├── config.py │ ├── endpoint.py │ ├── endpoint │ │ ├── __init__.py │ │ └── endpoint_routes.py │ ├── output │ │ └── file.txt │ ├── requirements.txt │ └── sample.py ├── media │ ├── python_azure_dependencies.png │ ├── python_azure_resources.png │ ├── python_custommetrics-carrots-logs.png │ ├── python_custommetrics-carrots.png │ ├── python_custommetrics-web-reviews.png │ ├── python_functionapp_deploy.png │ ├── python_simple_app_trace.png │ ├── python_simple_exception_custom.png │ ├── python_simple_trace_trace.png │ └── python_webapp_requests.png ├── python_logger_opencensus_azure │ ├── README.md │ └── monitoring │ │ ├── examples │ │ ├── README.md │ │ ├── __init__.py │ │ ├── api_1.py │ │ ├── api_2.py │ │ ├── api_3.py │ │ ├── api_4.py │ │ ├── client.py │ │ ├── logging_config.json │ │ └── util.py │ │ ├── img │ │ ├── application_map.png │ │ ├── dependency.png │ │ └── operation_id.png │ │ ├── requirements.txt │ │ ├── src │ │ ├── __init__.py │ │ └── logger.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_logger.py └── simple_sample │ ├── customDimensions.py │ ├── database.py │ ├── event.py │ ├── metric.py │ ├── metric2.py │ ├── module1.py │ ├── module2.py │ ├── prompt.py │ ├── readme.md │ ├── spanComplex.py │ ├── spanSimple.py │ └── trace.py ├── setup.cfg ├── setup.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Unreleased 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure_monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/README.md -------------------------------------------------------------------------------- /azure_monitor/artifacts/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/artifacts/common.ps1 -------------------------------------------------------------------------------- /azure_monitor/artifacts/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/artifacts/parameters.json -------------------------------------------------------------------------------- /azure_monitor/artifacts/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/artifacts/setup.ps1 -------------------------------------------------------------------------------- /azure_monitor/artifacts/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/artifacts/template.json -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/BaltimoreCyberTrustRoot.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/BaltimoreCyberTrustRoot.crt.pem -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/DigiCertGlobalRootCA.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/DigiCertGlobalRootCA.crt.pem -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/MyHttpFunction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/MyHttpFunction/__init__.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/MyHttpFunction/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/MyHttpFunction/function.json -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/MyHttpFunction/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/README.md -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/docs/assets/01-ai-correlated-invocation.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/docs/assets/01-ai-correlated-invocation.PNG -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/docs/assets/02-ai-correlated-invocation.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/docs/assets/02-ai-correlated-invocation.PNG -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/docs/assets/03-ai-application-map.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/docs/assets/03-ai-application-map.PNG -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/host.json -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/instrumentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/instrumentation/__init__.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/instrumentation/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/instrumentation/function.json -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/instrumentation/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/instrumentation/globals.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/instrumentation/instrumentation_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/instrumentation/instrumentation_func.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/instrumentation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/instrumentation/main.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/instrumentation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/instrumentation/utils.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/local.settings.json -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/requirements.txt -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/tests/test_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/tests/test_globals.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/tests/test_instrumentation_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/azfunc_sample/tests/test_instrumentation_func.py -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/tmp/data/05582fa0-2f83-48ca-96ae-8206ee59aab5.txt: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/tmp/data/a20f2b98-bd5a-4692-ab93-397a460d722f.txt: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /azure_monitor/azfunc_sample/tmp/data/bd7ae612-ca6a-4bb4-a146-9926f24a4e10.txt: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /azure_monitor/django_sample/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/.env.example -------------------------------------------------------------------------------- /azure_monitor/django_sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/.gitignore -------------------------------------------------------------------------------- /azure_monitor/django_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/README.md -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/app_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/app_insights.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/asgi.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/development.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/get_token.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/production.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/settings.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/urls.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/azureproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/azureproject/wsgi.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/manage.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/requirements.txt -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/admin.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/apps.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/migrations/0001_initial.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/0002_alter_review_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/migrations/0002_alter_review_rating.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/0003_restaurant_image_name_review_image_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/migrations/0003_restaurant_image_name_review_image_name.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/0004_alter_restaurant_image_name_alter_review_image_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/migrations/0004_alter_restaurant_image_name_alter_review_image_name.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/0005_remove_restaurant_image_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/migrations/0005_remove_restaurant_image_name.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/0006_alter_review_image_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/migrations/0006_alter_review_image_name.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/0007_alter_review_image_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/migrations/0007_alter_review_image_name.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/models.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/templates/500.html -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templates/restaurant_review/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/templates/restaurant_review/base.html -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templates/restaurant_review/create_restaurant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/templates/restaurant_review/create_restaurant.html -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templates/restaurant_review/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/templates/restaurant_review/details.html -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templates/restaurant_review/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/templates/restaurant_review/index.html -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templates/restaurant_review/star_rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/templates/restaurant_review/star_rating.html -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/templatetags/restaurant_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/templatetags/restaurant_extras.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/tests.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/urls.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/restaurant_review/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/restaurant_review/views.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/static/favicon.ico -------------------------------------------------------------------------------- /azure_monitor/django_sample/static/images/Example-reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/static/images/Example-reviews.png -------------------------------------------------------------------------------- /azure_monitor/django_sample/static/images/azure-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/static/images/azure-icon.svg -------------------------------------------------------------------------------- /azure_monitor/django_sample/static/restaurant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/static/restaurant.css -------------------------------------------------------------------------------- /azure_monitor/django_sample/staticfiles/note.txt: -------------------------------------------------------------------------------- 1 | Here for https://github.com/evansd/whitenoise/issues/215. -------------------------------------------------------------------------------- /azure_monitor/django_sample/web_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/django_sample/web_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/web_project/asgi.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/web_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/web_project/settings.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/web_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/web_project/urls.py -------------------------------------------------------------------------------- /azure_monitor/django_sample/web_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/django_sample/web_project/wsgi.py -------------------------------------------------------------------------------- /azure_monitor/env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/env.template -------------------------------------------------------------------------------- /azure_monitor/flask_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/README.md -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app.db -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/__init__.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/forms/__init__.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/metrics.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/models/__init__.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/routes.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/static/index.css -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/templates/blacklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/templates/blacklist.html -------------------------------------------------------------------------------- /azure_monitor/flask_sample/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/app/templates/index.html -------------------------------------------------------------------------------- /azure_monitor/flask_sample/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/command.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/config.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/endpoint.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/endpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/endpoint/__init__.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/endpoint/endpoint_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/endpoint/endpoint_routes.py -------------------------------------------------------------------------------- /azure_monitor/flask_sample/output/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/output/file.txt -------------------------------------------------------------------------------- /azure_monitor/flask_sample/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/requirements.txt -------------------------------------------------------------------------------- /azure_monitor/flask_sample/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/flask_sample/sample.py -------------------------------------------------------------------------------- /azure_monitor/media/python_azure_dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_azure_dependencies.png -------------------------------------------------------------------------------- /azure_monitor/media/python_azure_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_azure_resources.png -------------------------------------------------------------------------------- /azure_monitor/media/python_custommetrics-carrots-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_custommetrics-carrots-logs.png -------------------------------------------------------------------------------- /azure_monitor/media/python_custommetrics-carrots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_custommetrics-carrots.png -------------------------------------------------------------------------------- /azure_monitor/media/python_custommetrics-web-reviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_custommetrics-web-reviews.png -------------------------------------------------------------------------------- /azure_monitor/media/python_functionapp_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_functionapp_deploy.png -------------------------------------------------------------------------------- /azure_monitor/media/python_simple_app_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_simple_app_trace.png -------------------------------------------------------------------------------- /azure_monitor/media/python_simple_exception_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_simple_exception_custom.png -------------------------------------------------------------------------------- /azure_monitor/media/python_simple_trace_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_simple_trace_trace.png -------------------------------------------------------------------------------- /azure_monitor/media/python_webapp_requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/media/python_webapp_requests.png -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/README.md -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/README.md -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_1.py -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_2.py -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_3.py -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/api_4.py -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/client.py -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/logging_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/logging_config.json -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/examples/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/examples/util.py -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/img/application_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/img/application_map.png -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/img/dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/img/dependency.png -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/img/operation_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/img/operation_id.png -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/requirements.txt -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/src/logger.py -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure_monitor/python_logger_opencensus_azure/monitoring/tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/python_logger_opencensus_azure/monitoring/tests/test_logger.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/customDimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/customDimensions.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/database.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/event.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/metric.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/metric2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/metric2.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/module1.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/module2.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/prompt.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/readme.md -------------------------------------------------------------------------------- /azure_monitor/simple_sample/spanComplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/spanComplex.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/spanSimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/spanSimple.py -------------------------------------------------------------------------------- /azure_monitor/simple_sample/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/azure_monitor/simple_sample/trace.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-monitor-opencensus-python/HEAD/setup.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.dev0' 2 | 3 | --------------------------------------------------------------------------------