Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions ddtrace/_trace/tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ def __init__(self) -> None:
service_name=config.service or None,
service_env=config.env or None,
service_version=config.version or None,
process_tags=None,
container_id=None,
)
try:
self._config_on_disk = store_metadata(metadata)
Expand Down
4 changes: 4 additions & 0 deletions ddtrace/internal/native/_native.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ class PyTracerMetadata:
service_name: Optional[str],
service_env: Optional[str],
service_version: Optional[str],
process_tags: Optional[str],
container_id: Optional[str],
):
"""
Initialize the `PyTracerMetadata`.
Expand All @@ -122,6 +124,8 @@ class PyTracerMetadata:
:param service_name: Name of the service being instrumented.
:param service_env: Environment of the service being instrumented.
:param service_version: Version of the service being instrumented.
:param process_tags: Process tags of the application being instrumented.
:param container_id: Container id seen by the application.
"""
...

Expand Down
Loading
Loading