Skip to content

Commit 08140cb

Browse files
committed
feat(symdb): enable by default
We make Symbol Database enabled by default.
1 parent f8d4820 commit 08140cb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ddtrace/settings/symbol_db.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class SymbolDatabaseConfig(En):
1111
enabled = En.v(
1212
bool,
1313
"upload_enabled",
14-
default=False,
14+
default=True,
1515
help_type="Boolean",
1616
help="Whether to upload source code symbols to the Datadog backend",
1717
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
features:
3+
- |
4+
Symbol Database is now enabled by default.

tests/telemetry/test_writer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def test_app_started_event_configuration_override(test_agent_session, run_python
420420
"value": str(file),
421421
},
422422
{"name": "DD_SYMBOL_DATABASE_INCLUDES", "origin": "default", "value": "set()"},
423-
{"name": "DD_SYMBOL_DATABASE_UPLOAD_ENABLED", "origin": "default", "value": False},
423+
{"name": "DD_SYMBOL_DATABASE_UPLOAD_ENABLED", "origin": "default", "value": True},
424424
{"name": "DD_TAGS", "origin": "env_var", "value": "team:apm,component:web"},
425425
{"name": "DD_TELEMETRY_DEPENDENCY_COLLECTION_ENABLED", "origin": "default", "value": True},
426426
{"name": "DD_TELEMETRY_HEARTBEAT_INTERVAL", "origin": "default", "value": 60},

0 commit comments

Comments
 (0)