-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for distributed trace chunks
- Loading branch information
1 parent
6330d47
commit f41a756
Showing
7 changed files
with
105 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
releasenotes/notes/add-distributed-trace-c35a314698a3b966.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
features: | ||
- | | ||
Add support for distributed traces where an instrumented service sends a trace chunk where the root span has a parent not in the trace chunk. |
29 changes: 29 additions & 0 deletions
29
tests/integration_snapshots/test_trace_distributed_propagated.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[[ | ||
{ | ||
"name": "root", | ||
"service": null, | ||
"resource": "root", | ||
"trace_id": 0, | ||
"span_id": 1, | ||
"parent_id": 5678, | ||
"meta": { | ||
"runtime-id": "9118dd9528d447629254178d1bb4dbcf" | ||
}, | ||
"metrics": { | ||
"_dd.top_level": 1, | ||
"_dd.tracer_kr": 1.0, | ||
"system.pid": 81934 | ||
}, | ||
"duration": 171000, | ||
"start": 1653668237165110000 | ||
}, | ||
{ | ||
"name": "child", | ||
"service": null, | ||
"resource": "child", | ||
"trace_id": 0, | ||
"span_id": 2, | ||
"parent_id": 1, | ||
"duration": 6000, | ||
"start": 1653668237165133000 | ||
}]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters