Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions datadog_lambda/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ def _reset(self):
"enabled" if config.fips_mode_enabled else "not enabled",
)

# disable css by default to prevent double counting in lambda
if "DD_TRACE_COMPUTE_STATS" not in os.environ:
os.environ["DD_TRACE_COMPUTE_STATS"] = "false"

if (
"DD_INSTRUMENTATION_TELEMETRY_ENABLED" not in os.environ
Expand Down
Loading