document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. GET /sales/_search
  2. {
  3.   "size": 0,
  4.   "aggs": {
  5.     "sales_per_month": {
  6.       "date_histogram": {
  7.         "field": "date",
  8.         "calendar_interval": "month"
  9.       },
  10.       "aggs": {
  11.         "total_sales": {
  12.           "sum": { "field": "price" }
  13.         }
  14.       }
  15.     }
  16.   }
  17. }
  18.  
');