Need some help with a search {
"id": "123",
"start_time": "2020-08-01 15:00:00",
"end_time": "2020-08-01 16:00:00",
"status": "FAIL",
"details": [
{
"sub_id": 1,
"status": "PASS"
},
{
"sub_id": 2,
"status": "FAIL"
}
]
}
{
"id": "124",
"start_time": "2020-08-01 16:05:00",
"end_time": "2020-08-01 16:30:00",
"status": "PASS",
"original_id": "123",
"details": [
{
"sub_id": 1,
"status": "PASS"
},
{
"sub_id": 3,
"status": "PASS"
}
]
} These two events can be joined with id and original_id field. The output below shows data from id:123 but overrides some fields like, end_time, status, sub_id and sub_status from second event. The Tabular output I expect is : id start_time end_time status sub_id sub_status 123 2020-08-01 15:00:00 2020-08-01 16:30:00 PASS 1 PASS 123 2020-08-01 15:00:00 2020-08-01 16:30:00 PASS 3 PASS Any help is appreciated, thanks
... View more