Posted 2023-05-24Updated 2025-01-14ELK / elasticsearch APIa few seconds read (About 54 words)elasticsearch APIsearch使用keyword使得搜尋條件必須完全符合 12345678910111213141516171819202122GET people-2023.04/_search{ "query": { "bool": { "must": [ { "range": { "@timestamp": { "gt" : "2023-04-08T10:22:28Z", "lt" : "2023-04-08T10:22:44Z" } } }, { "match": { "StreamID.keyword": "eb2baea2-d52c-434c-af44-256c0301f4df" } } ] } } } delete12345678910POST poc/_delete_by_query{ "query":{ "range":{ "@timestamp":{ "gt" : "2018-05-04T23:04:00Z" } } }}