diff --git a/letta/server/rest_api/app.py b/letta/server/rest_api/app.py index dc9e1d1c..9fd753b3 100644 --- a/letta/server/rest_api/app.py +++ b/letta/server/rest_api/app.py @@ -241,6 +241,9 @@ def create_application() -> "FastAPI": os.environ.setdefault("DD_PROFILING_MEMORY_ENABLED", str(telemetry_settings.datadog_profiling_memory_enabled).lower()) os.environ.setdefault("DD_PROFILING_HEAP_ENABLED", str(telemetry_settings.datadog_profiling_heap_enabled).lower()) + # Note: DD_LOGS_INJECTION, DD_APPSEC_ENABLED, DD_IAST_ENABLED, DD_APPSEC_SCA_ENABLED + # are set via deployment configs and automatically picked up by ddtrace + if telemetry_settings.datadog_profiling_enabled: from ddtrace.profiling import Profiler