我想知道弹性搜索中计数查询所花费的时间,就像包含 took
的搜索查询查询所花费的时间一样。
我的查询看起来像 -
curl -XGET "http://localhost:9200/index1/type1/_count"
该查询的结果 -
{
"count": 136,
"_shards": {
"total": 15,
"successful": 15,
"failed": 0
}
}
有没有办法让我可以像搜索API一样获得计数查询的时间?
计数API的文档 - Count API