Skip to content

Commit 4446fa3

Browse files
feat(tracer): enable client-side stats by default
1 parent a1b44e2 commit 4446fa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ddtrace/settings/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ def __init__(self):
598598
# Raise certain errors only if in testing raise mode to prevent crashing in production with non-critical errors
599599
self._raise = _get_config("DD_TESTING_RAISE", False, asbool)
600600

601-
trace_compute_stats_default = in_gcp_function() or in_azure_function()
601+
trace_compute_stats_default = True or in_gcp_function() or in_azure_function()
602602
self._trace_compute_stats = _get_config(
603603
["DD_TRACE_COMPUTE_STATS", "DD_TRACE_STATS_COMPUTATION_ENABLED"], trace_compute_stats_default, asbool
604604
)

0 commit comments

Comments
 (0)