We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 281c8f5 commit bacea4cCopy full SHA for bacea4c
app/backend/app.py
@@ -809,7 +809,13 @@ def create_app():
809
810
if os.getenv("APPLICATIONINSIGHTS_CONNECTION_STRING"):
811
app.logger.info("APPLICATIONINSIGHTS_CONNECTION_STRING is set, enabling Azure Monitor")
812
- configure_azure_monitor()
+ configure_azure_monitor(
813
+ instrumentation_options={
814
+ "django": {"enabled": False},
815
+ "psycopg2": {"enabled": False},
816
+ "fastapi": {"enabled": False},
817
+ }
818
+ )
819
# This tracks HTTP requests made by aiohttp:
820
AioHttpClientInstrumentor().instrument()
821
# This tracks HTTP requests made by httpx:
0 commit comments