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.
implemented support for incomplete spans
- span types have a new attribute incomplete - spans without given incomplete attribute will default to false - backwards compatible with old clients - breaking change for es and cassandra schemas - generated thrift types are up to date in this pr - detailled concept described in jaegertracing#729 - based on pull request jaegertracing#728 Signed-off-by: Martin Foerster <martin@atroo.de>
- Loading branch information
Showing
14 changed files
with
134 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[ | ||
{ | ||
"traceID":"52969a8955571a3f", | ||
"spanID":"647d98", | ||
"parentSpanID":"68c4e3", | ||
"operationName":"get", | ||
"startTime":"2017-01-26T16:46:31.639875-05:00", | ||
"duration":22938000, | ||
"tags":[ | ||
{ | ||
"key":"peer.service", | ||
"vType":"binary", | ||
"vBlob":"AAAAAAAAMDk=" | ||
} | ||
], | ||
"process":{ | ||
"serviceName":"api" | ||
} | ||
}, | ||
{ | ||
"traceID":"52969a8955571a3f", | ||
"spanID":"647d98", | ||
"parentSpanID":"68c4e3", | ||
"operationName":"get", | ||
"startTime":"2017-01-26T16:46:31.639875-05:00", | ||
"duration":22938000, | ||
"tags":[ | ||
{ | ||
"key":"peer.service", | ||
"vType":"binary", | ||
"vBlob":"AAAAAAAAMDk=" | ||
} | ||
], | ||
"process":{ | ||
"serviceName":"api" | ||
}, | ||
"incomplete": true | ||
} | ||
] |
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 |
---|---|---|
|
@@ -32,7 +32,8 @@ | |
} | ||
], | ||
"startTime": 1485467191639875, | ||
"duration": 22938 | ||
"duration": 22938, | ||
"incomplete": true | ||
} | ||
] | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.