-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from etolbakov/fmassot-feedback
Review.
- Loading branch information
Showing
6 changed files
with
552 additions
and
163 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
168 changes: 168 additions & 0 deletions
168
quickwit/quickwit-serve/resources/tests/jaeger_ui_trace.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,168 @@ | ||
{ | ||
"traceID": "0000000000000001", | ||
"spans": [ | ||
{ | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000001", | ||
"operationName": "test-general-conversion", | ||
"references": [], | ||
"startTime": 1485467191639875, | ||
"duration": 5, | ||
"flags": 0, | ||
"tags": [], | ||
"logs": [ | ||
{ | ||
"timestamp": 1485467191639875, | ||
"fields": [ | ||
{ | ||
"key": "event", | ||
"type": "string", | ||
"value": "some-event" | ||
} | ||
] | ||
}, | ||
{ | ||
"timestamp": 1485467191639875, | ||
"fields": [ | ||
{ | ||
"key": "x", | ||
"type": "string", | ||
"value": "y" | ||
} | ||
] | ||
} | ||
], | ||
"processID": "p1", | ||
"warnings": [] | ||
}, | ||
{ | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000002", | ||
"operationName": "some-operation", | ||
"references": [], | ||
"flags": 0, | ||
"startTime": 1485467191639875, | ||
"duration": 5, | ||
"tags": [ | ||
{ | ||
"key": "peer.service", | ||
"type": "string", | ||
"value": "service-y" | ||
}, | ||
{ | ||
"key": "peer.ipv4", | ||
"type": "int64", | ||
"value": 23456 | ||
}, | ||
{ | ||
"key": "error", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"key": "temperature", | ||
"type": "float64", | ||
"value": 72.5 | ||
}, | ||
{ | ||
"key": "javascript_limit", | ||
"type": "int64", | ||
"value": "9223372036854775222" | ||
}, | ||
{ | ||
"key": "blob", | ||
"type": "binary", | ||
"value": "AAAwOQ==" | ||
} | ||
], | ||
"logs": [], | ||
"processID": "p1", | ||
"warnings": [] | ||
}, | ||
{ | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000003", | ||
"operationName": "some-operation", | ||
"flags": 0, | ||
"references": [ | ||
{ | ||
"refType": "CHILD_OF", | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000002" | ||
} | ||
], | ||
"startTime": 1485467191639875, | ||
"duration": 5, | ||
"tags": [], | ||
"logs": [], | ||
"processID": "p2", | ||
"warnings": [] | ||
}, | ||
{ | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000004", | ||
"operationName": "reference-test", | ||
"flags": 0, | ||
"references": [ | ||
{ | ||
"refType": "CHILD_OF", | ||
"traceID": "00000000000000ff", | ||
"spanID": "00000000000000ff" | ||
}, | ||
{ | ||
"refType": "CHILD_OF", | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000002" | ||
}, | ||
{ | ||
"refType": "FOLLOWS_FROM", | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000002" | ||
} | ||
], | ||
"startTime": 1485467191639875, | ||
"duration": 5, | ||
"tags": [], | ||
"logs": [], | ||
"processID": "p2", | ||
"warnings": [ | ||
"some span warning" | ||
] | ||
}, | ||
{ | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000005", | ||
"operationName": "preserveParentID-test", | ||
"flags": 0, | ||
"references": [ | ||
{ | ||
"refType": "CHILD_OF", | ||
"traceID": "0000000000000001", | ||
"spanID": "0000000000000004" | ||
} | ||
], | ||
"startTime": 1485467191639875, | ||
"duration": 4, | ||
"tags": [], | ||
"logs": [], | ||
"processID": "p2", | ||
"warnings": [ | ||
"some span warning" | ||
] | ||
} | ||
], | ||
"processes": { | ||
"p1": { | ||
"serviceName": "service-x", | ||
"key": "p1", | ||
"tags": [] | ||
}, | ||
"p2": { | ||
"serviceName": "service-y", | ||
"key": "p2", | ||
"tags": [] | ||
} | ||
}, | ||
"warnings": [ | ||
] | ||
} |
Oops, something went wrong.