Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 468 Bytes

ecc57597f6b791d1151ad79d9f4ce67b.asciidoc

File metadata and controls

22 lines (21 loc) · 468 Bytes
resp = client.search(
    index="sales",
    size="0",
    body={
        "aggs": {
            "sales_over_time": {
                "date_histogram": {
                    "field": "date",
                    "calendar_interval": "1M",
                    "format": "yyyy-MM-dd",
                    "keyed": True,
                }
            }
        }
    },
)
print(resp)