Kibana 7.3.2 Data Frames
No matter in what order I add aggregations, somehow some fields are always added first in the result..
As you can see in the above, event.outcome is in the first column, while added after the ruleset...
Pivot json:
{
"group_by": {
"panw.panos.ruleset": {
"terms": {
"field": "panw.panos.ruleset"
}
},
"event.outcome": {
"terms": {
"field": "event.outcome"
}
}
},
"aggregations": {
"panw.panos.flow_id.cardinality": {
"cardinality": {
"field": "panw.panos.flow_id"
}
}
}
}
Is this a bug or am I missing something