polyfractal / elasticsearch-inquisitor

Site plugin for Elasticsearch to help understand and debug queries.
Apache License 2.0
700 stars 81 forks source link

Result for Aggregations #36

Open amanmaharjan02 opened 10 years ago

amanmaharjan02 commented 10 years ago

Can't I see results for aggregations. eg.

{
 "query" : 
  { 
       "match_all": {}
  }, 
  "aggs" : {
     "amount_sum" : {
       "stats" :{
               "field" : "balance"
       }
     }
   }
}

screenshot from 2014-09-01 12 37 59

polyfractal commented 10 years ago

Yep, aggregations (and facets too) are currently not supported. That functionality was never built, since aggregation and facet structure is highly variable.

It's totally possible, I just never put the time in originally. PRs welcome though!