forked from jaegertracing/jaeger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add the ability to accept partial spans that will be upserted in pe…
…rsistence See jaegertracing#729 for details on the concept Signed-off-by: Martin Foerster <martin@atroo.de>
- Loading branch information
Showing
21 changed files
with
224 additions
and
20 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"traceID": "abc0", | ||
"spans": [ | ||
{ | ||
"traceID": "abc0", | ||
"spanID": "abc0", | ||
"operationName": "root-span", | ||
"references": null, | ||
"startTime": 1000, | ||
"duration": 500, | ||
"tags": null, | ||
"logs": null, | ||
"processID": "p1", | ||
"warnings": null, | ||
"incomplete": false | ||
}, | ||
{ | ||
"traceID": "abc0", | ||
"spanID": "123", | ||
"operationName": "span1", | ||
"references": [ | ||
{ | ||
"refType": "CHILD_OF", | ||
"traceID": "abc0", | ||
"spanID": "abc0" | ||
} | ||
], | ||
"startTime": 1000, | ||
"duration": 500, | ||
"tags": [ | ||
{ | ||
"key": "error", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"key": "int64", | ||
"type": "int64", | ||
"value": 123 | ||
}, | ||
{ | ||
"key": "float64", | ||
"type": "float64", | ||
"value": 123.567 | ||
}, | ||
{ | ||
"key": "binary", | ||
"type": "binary", | ||
"value": "AQ==" | ||
} | ||
], | ||
"logs": [ | ||
{ | ||
"timestamp": 1400, | ||
"fields": [ | ||
{ | ||
"key": "error", | ||
"type": "string", | ||
"value": "something bad happened" | ||
} | ||
] | ||
} | ||
], | ||
"processID": "p2", | ||
"warnings": null, | ||
"incomplete": false | ||
}, | ||
{ | ||
"traceID": "abc0", | ||
"spanID": "567", | ||
"operationName": "span2", | ||
"references": [ | ||
{ | ||
"refType": "FOLLOWS_FROM", | ||
"traceID": "abc0", | ||
"spanID": "abc0" | ||
} | ||
], | ||
"startTime": 1000, | ||
"duration": 500, | ||
"tags": null, | ||
"logs": null, | ||
"processID": "p2", | ||
"warnings": null, | ||
"incomplete": false | ||
} | ||
], | ||
"processes": { | ||
"p1": { | ||
"serviceName": "service_1", | ||
"tags": null | ||
}, | ||
"p2": { | ||
"serviceName": "service_2", | ||
"tags": [ | ||
{ | ||
"key": "host", | ||
"type": "string", | ||
"value": "google.com" | ||
} | ||
] | ||
} | ||
}, | ||
"warnings": null | ||
} |
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
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
Oops, something went wrong.