I am trying to solve an issue with nested objects and I would like your help.
An event like this is sent to elasticsearch:
{
"proxy_steps": [
{
"category": "build_proxy_request",
"elapsed_sec": 4
},
{
"category": "process_rewrite",
"elapsed_sec": 9
},
{
"category": "rewrite_authentication",
"elapsed_sec": 1
},
{
"category": "rewrite_authorization",
"elapsed_sec": 9
},
{
"category": "rewrite_check_flags",
"elapsed_sec": 7
},
{
"category": "rewrite_rule_evaluation",
"elapsed_sec": 2
},
{
"category": "rewrite_rule_evaluation",
"elapsed_sec": 8
},
{
"category": "proxy_response",
"elapsed_sec": 5
}
]
}
I would show it in a visualization aggregating the elaspsed_sec average per category. For example, rewrite_rule_evaluation average would be 5.
I know it works in elastic search but I couldn't make it work in Kibana. Kibana doesn't support aggregations of nested objects, as per documentation on https://www.elastic.co/guide/en/kibana/5.5/nested-objects.html. But I am wondering if there is a way to do it with scripted aggregations.
Can anyone help?