Hello,
I'm using kibana4 & 5alpha.
I found that I can select the pie chart's slice size only from "Count", "Sum" and "Unique count".
I would like to use other aggregations such as Average or Percentiles and so on.
Is it difficult to support other aggregations, or is the any workaround?
My index data are like this.
id,path,duration
"data1","/items",200
"data2","/items",100
"data3","/users",50
"data4","/users",80
"data5","/items",150
...
And when I split the slice by "Terms" aggregation of "path", the slice size must be Count (/items:3, /users:2) or Sum of duration (/items:450, /users:130) or Unique count.
I want to make the slice size "Average" of them (/items:150, /users:65)
Thanks.