Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 290 Bytes

01da9e0620e48270617fc248e6415cac.asciidoc

File metadata and controls

17 lines (16 loc) · 290 Bytes
resp = client.search(
    index="my-index-000001",
    aggs={
        "my-agg-name": {
            "terms": {
                "field": "my-field"
            }
        }
    },
)
print(resp)