{ "took": 1, "timed_out": false, "_shards": { "total": 2, "successful": 2, "skipped": 0, "failed": 0 }, "hits": { "total": { "value": 0, "relation": "eq" }, "max_score": null, "hits": [] } }
时间: 2023-08-26 09:06:26 浏览: 255
这是一个 Elasticsearch 查询的返回结果,其中包含以下信息:
- took:查询所花费的时间(以毫秒为单位)。
- timed_out:查询是否超时。
- _shards:分片相关的信息,包括总分片数、成功分片数、跳过的分片数和失败的分片数。
- hits:查询命中的文档相关的信息,包括文档总数、最高得分和命中的文档列表。
根据返回结果,该查询没有命中任何文档,因为“total”下的值为0。如果您期望有结果,可能需要调整查询语句或查询的索引名称。
相关问题
{ "took": 2, "timed_out": false, "_shards": { "total": 1, "successful": 1, "skipped": 0, "failed": 0 }, "hits": { "total": { "value": 10000, "relation": "gte" }, "max_score": 1, "hits": [{ "_index": "tp_portflux_ip网管_2023_05_10", "_type": "_doc", "_id": "vft6AYgBqWgyteKAl0pq", "_score": 1, "_source": { "kpi1": 0, "kpi2": 0, "kpi3": 0, "kpi4": 0, "kpi5": -3, "kpi6": -3, "kpi7": 20971520000, "kpi8": 0, "kpi9": 0, "kpi10": 0, "kpi11": 0, "kpi12": 0, "kpi13": 0, "mo_id": "307434295fd494ab3b303da202c94517", "object_id": "Eth-Trunk4.3004", "gather_time": 1683650700000 } }] } }
这是一个 Elasticsearch 的查询结果,包含了一个名为 "tp_portflux_ip网管_2023_05_10" 的索引中的一条文档。该文档包含了多个字段,如 kpi1、kpi2、kpi3 等,以及对应的数值。这些字段可能代表某种指标或者性能参数。此外,该文档还包含了一些标识符,如 mo_id、object_id 和 gather_time,用于标识和定位该文档所对应的设备、对象和采集时间。
{"took":199,"timed_out":false,"_shards":{"failed":0.0,"successful":1.0,"total":1.0,"skipped":0.0},"hits":{"total":{"relation":"eq","value":1},"hits":[{"_index":"products","_id":"bk-1","_score":0.2876821,"_source":"Product(id=bk-1, name=City bike, sku=123.0)"}],"max_score":0.2876821}}
这是一个搜索结果的信息,它告诉我们以下内容:
- "took": 199 表示搜索操作花费了199毫秒的时间。
- "timed_out": false 表示搜索操作没有超时。
- "_shards": 对于这个搜索操作,有1个分片成功地返回了结果,没有失败或跳过的分片。
- "hits": 搜索命中了1个文档,该文档的索引是"products",ID是"bk-1",得分是0.2876821。
- "_source": 搜索命中的文档的具体内容是"Product(id=bk-1, name=City bike, sku=123.0)"。
如果你还有其他问题,我会尽力回答!
阅读全文