HI,
Let's say I collect this logs into Elasticsearch,
server_name, service_name, call_count and exception_count:
I need a visualization (e.g. table) in kibana with the sum of call_count and sum of exception_count by service_name and with the respective %error (where %error = SUM(exception_count) / SUM(call_count) in percentage).
Just something simple like this:
Is this simple table impossible to recreate in Kibana?
Are there any workarounds to get this done without the need of pipeline aggregations?