Skip to content

Commit 13e4d43

Browse files
chore(native): bump libdatadog to v22.1.0 (#15009)
## Description Upgrade libdatadog to 22.1.0 ## Testing <!-- Describe your testing strategy or note what tests are included --> ## Risks <!-- Note any risks associated with this change, or "None" if no risks --> ## Additional Notes <!-- Any other information that would be helpful for reviewers -->
1 parent c426d0f commit 13e4d43

File tree

6 files changed

+494
-425
lines changed

6 files changed

+494
-425
lines changed

ddtrace/_trace/tracer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@ def __init__(self) -> None:
172172
service_name=config.service or None,
173173
service_env=config.env or None,
174174
service_version=config.version or None,
175+
process_tags=None,
176+
container_id=None,
175177
)
176178
try:
177179
self._config_on_disk = store_metadata(metadata)

ddtrace/internal/native/_native.pyi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ class PyTracerMetadata:
113113
service_name: Optional[str],
114114
service_env: Optional[str],
115115
service_version: Optional[str],
116+
process_tags: Optional[str],
117+
container_id: Optional[str],
116118
):
117119
"""
118120
Initialize the `PyTracerMetadata`.
@@ -122,6 +124,8 @@ class PyTracerMetadata:
122124
:param service_name: Name of the service being instrumented.
123125
:param service_env: Environment of the service being instrumented.
124126
:param service_version: Version of the service being instrumented.
127+
:param process_tags: Process tags of the application being instrumented.
128+
:param container_id: Container id seen by the application.
125129
"""
126130
...
127131

0 commit comments

Comments
 (0)