我的时间序列索引类似于以下模式“index - %{YYYY-MM-dd}”。
我知道可以直接在网址中按“日期”进行查询:
GET /%3Cindex-%7Bnow%2Fd%7D%3E/_search
是否可以按日期范围制作查询网址?在elasticsearch示例中,他们加入3索引模式以查询最近3天(例如)。
GET /<logstash-{now/d-2d}>,<logstash-{now/d-1d}>,<logstash-{now/d}>/_search
有没有办法按日期范围进行网址查询,以便集中搜索性能问题?