Hello,
I have a HEC with events like the following:
{
"Log": {
"Status": "Ordered",
"Platform": {
"A": {
"Tracking": {"Field1": "Value1", "Field2": "Value2"}
}
}
}
}
When I run the query
index="my_index" AND Log.Status="Ordered"
| table Log.Status Log.Platform.A.Tracking
How can I achieve this?
| spath path=Log.Status output=Status
| spath path=Log.Platform.A.Tracking output=Tracking
| table Status Tracking
Thank you so much!
| spath path=Log.Status output=Status
| spath path=Log.Platform.A.Tracking output=Tracking
| table Status Tracking