-
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.
Simplifies summary logic by not doing skew correction (#2228)
The trace summary screen and individual trace screens are served by different data. At the moment, offsets are not considered when computing the trace duration broken down by service. Maybe it should be, but removing clock skew makes migration to v2 simpler and we can then revisit this logic. See #2217
- Loading branch information
1 parent
770beca
commit d91d73b
Showing
2 changed files
with
3 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# Test json | ||
For testing the UI, you can simply POST or paste json in this directory. | ||
|
||
For example, assuming you started zipkin with `java -jar zipkin.jar` | ||
For example, assuming you started zipkin allowing it to see up to 5 year old data `QUERY_LOOKBACK=157784630000 java -jar zipkin.jar` | ||
```bash | ||
$ curl -X POST -s localhost:9411/api/v2/spans -H'Content-Type: application/json' -d @netflix.json | ||
$ open 'http://localhost:9411/zipkin/?lookback=custom&startTs=0' | ||
``` |