-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drops internal DependencyLinkSpan for Span2 (#1673)
* Adds zipkin.internal.Span2Converter (#1670) This adds an internal copy of a span conversion utility mentioned in issue #1499. This is starting internal to ease review and allow incremental progress. The first consumer will be dependency linking. * Adds zipkin.internal.Span2Codec.JSON (#1671) This adds an internal copy of a span json codec issue #1499. This starts internal to ease review and allow incremental progress. The first consumer will be Elasticsearch, as this format removes nested queries. Note: this change also introduces json serialization of Span2, which allows future use in Spark. * Drops internal DependencyLinkSpan for Span2 This drops the internal type of DependencyLinkSpan in favor of the Span2 type coming in #1499. Doing so now gives us practice, solves a few bugs along the way. When Span2 becomes non-internal, the change will be a simple package rename.
- Loading branch information
1 parent
4aeeaec
commit b848283
Showing
16 changed files
with
1,107 additions
and
720 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"traceId": "86154a4ba6e91385", | ||
"parentId": "86154a4ba6e91385", | ||
"id": "4d1e00c0db9010db", | ||
"kind": "CLIENT", | ||
"name": "get", | ||
"timestamp": 1472470996199000, | ||
"duration": 207000, | ||
"localEndpoint": { | ||
"serviceName": "frontend", | ||
"ipv4": "127.0.0.1" | ||
}, | ||
"remoteEndpoint": { | ||
"serviceName": "backend", | ||
"ipv4": "192.168.99.101", | ||
"port": 9000 | ||
}, | ||
"annotations": [ | ||
{ | ||
"timestamp": 1472470996238000, | ||
"value": "ws" | ||
}, | ||
{ | ||
"timestamp": 1472470996403000, | ||
"value": "wr" | ||
} | ||
], | ||
"tags": { | ||
"http.path": "/api", | ||
"clnt/finagle.version": "6.45.0" | ||
} | ||
} |
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.