Hi there,

Is there a way to calculate the average over the doc_count result of a 
bucket aggregation?

For instance, I have this aggregation query:

GET channel/Subscription/_search
{
  "size": 1, 
  "aggs": {
    "SubscriptionsPerUser": {
      "terms": {
        "field": "UserId",
        "min_doc_count": 0,
        "size": 1000
      }
    }
  }
}

I would like to calculate the average doc_count for each resulting bucket, 
which would give me the average subscriptions/user metric.

Thanks,
Demetrius

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/6d15e905-ec85-462f-838f-a41e77795786%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to