cat 计数 API
编辑cat 计数 API
编辑cat API 仅供使用命令行或 Kibana 控制台的人员使用。它们不适合应用程序使用。对于应用程序使用,请使用 计数 API。
提供对数据流、索引或整个集群的文档计数的快速访问。
文档计数仅包括实时文档,不包括尚未通过合并过程删除的已删除文档。
路径参数
编辑-
<目标>
- (可选,字符串) 用于限制请求的以逗号分隔的数据流、索引和别名列表。支持通配符 (
*
)。要定位所有数据流和索引,请省略此参数或使用*
或_all
。
查询参数
编辑-
format
- (可选,字符串) HTTP accept header 的简短版本。有效值包括 JSON、YAML 等。
-
h
- (可选,字符串) 要显示的列名的逗号分隔列表。
-
help
- (可选,布尔值) 如果为
true
,则响应包括帮助信息。默认为false
。 -
s
- (可选,字符串) 用于对响应进行排序的列名或列别名的逗号分隔列表。
-
v
- (可选,布尔值) 如果为
true
,则响应包括列标题。默认为false
。
示例
编辑使用单个数据流或索引的示例
编辑以下 count
API 请求检索 my-index-000001
数据流或索引的文档计数。
resp = client.cat.count( index="my-index-000001", v=True, ) print(resp)
response = client.cat.count( index: 'my-index-000001', v: true ) puts response
const response = await client.cat.count({ index: "my-index-000001", v: "true", }); console.log(response);
GET /_cat/count/my-index-000001?v=true
API 返回以下响应
epoch timestamp count 1475868259 15:24:20 120
使用集群中所有数据流和索引的示例
编辑以下 count
API 请求检索集群中所有数据流和索引的文档计数。
resp = client.cat.count( v=True, ) print(resp)
response = client.cat.count( v: true ) puts response
const response = await client.cat.count({ v: "true", }); console.log(response);
GET /_cat/count?v=true
API 返回以下响应
epoch timestamp count 1475868259 15:24:20 121