-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow stoting tags as object fields for better kibana support
Signed-off-by: Pavol Loffay <ploffay@redhat.com>
- Loading branch information
1 parent
ddf9b22
commit 524b0a6
Showing
28 changed files
with
1,299 additions
and
224 deletions.
There are no files selected for viewing
This file was deleted.
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
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,3 @@ | ||
foo | ||
bar | ||
space |
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,4 @@ | ||
|
||
|
||
|
||
|
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
89 changes: 89 additions & 0 deletions
89
plugin/storage/es/spanstore/dbmodel/fixtures/domain_01.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,89 @@ | ||
{ | ||
"traceId": "AAAAAAAAAAAAAAAAAAAAAQ==", | ||
"spanId": "AAAAAAAAAAI=", | ||
"operationName": "test-general-conversion", | ||
"references": [ | ||
{ | ||
"refType": "CHILD_OF", | ||
"traceId": "AAAAAAAAAAAAAAAAAAAAAQ==", | ||
"spanId": "AAAAAAAAAAM=" | ||
}, | ||
{ | ||
"refType": "FOLLOWS_FROM", | ||
"traceId": "AAAAAAAAAAAAAAAAAAAAAQ==", | ||
"spanId": "AAAAAAAAAAQ=" | ||
}, | ||
{ | ||
"refType": "CHILD_OF", | ||
"traceId": "AAAAAAAAAAAAAAAAAAAA/w==", | ||
"spanId": "AAAAAAAAAP8=" | ||
} | ||
], | ||
"flags": 1, | ||
"startTime": "2017-01-26T16:46:31.639875-05:00", | ||
"duration": "5000ns", | ||
"tags": [ | ||
{ | ||
"key": "peer.service", | ||
"vType": "STRING", | ||
"vStr": "service-y" | ||
}, | ||
{ | ||
"key": "peer.ipv4", | ||
"vType": "INT64", | ||
"vInt64": 23456 | ||
}, | ||
{ | ||
"key": "error", | ||
"vType": "BOOL", | ||
"vBool": true | ||
}, | ||
{ | ||
"key": "temperature", | ||
"vType": "FLOAT64", | ||
"vFloat64": 72.5 | ||
}, | ||
{ | ||
"key": "blob", | ||
"vType": "BINARY", | ||
"vBinary": "AAAwOQ==" | ||
} | ||
], | ||
"logs": [ | ||
{ | ||
"timestamp": "2017-01-26T16:46:31.639875-05:00", | ||
"fields": [ | ||
{ | ||
"key": "event", | ||
"vType": "INT64", | ||
"vInt64": 123415 | ||
} | ||
] | ||
}, | ||
{ | ||
"timestamp": "2017-01-26T16:46:31.639875-05:00", | ||
"fields": [ | ||
{ | ||
"key": "x", | ||
"vType": "STRING", | ||
"vStr": "y" | ||
} | ||
] | ||
} | ||
], | ||
"process": { | ||
"serviceName": "service-x", | ||
"tags": [ | ||
{ | ||
"key": "peer.ipv4", | ||
"vType": "INT64", | ||
"vInt64": 23456 | ||
}, | ||
{ | ||
"key": "error", | ||
"vType": "BOOL", | ||
"vBool": true | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.