集群信息 API
编辑集群信息 API编辑
此功能处于技术预览阶段,可能会在未来版本中更改或删除。Elastic 将努力修复任何问题,但技术预览版中的功能不受官方 GA 功能支持 SLA 的约束。
返回集群信息。
请求编辑
GET /_info/<target>
描述编辑
您可以使用集群信息 API 来检索集群的信息。
路径参数编辑
-
<target>
-
(字符串)将返回的信息限制为特定的
target
。以下选项的逗号分隔列表-
_all
- 所有可用信息。不能与其他目标混合使用。
-
http
- HTTP 连接信息。
-
ingest
- 摄取信息。
-
thread_pool
- 有关每个线程池的统计信息,包括当前大小、队列大小和拒绝的任务。
-
script
- 包含集群的脚本统计信息。
-
响应正文编辑
-
cluster_name
- (字符串)集群的名称。基于 集群名称设置 设置。
-
http
-
(对象)包含集群的 http 信息。
http
的属性-
current_open
- (整数)集群当前打开的 HTTP 连接数。
-
total_opened
- (整数)为集群打开的 HTTP 连接总数。
-
clients
-
(对象数组)有关当前和最近关闭的 HTTP 客户端连接的信息。关闭时间超过 http.client_stats.closed_channels.max_age 设置的客户端将不会在此处显示。
clients
的属性-
id
- (整数)HTTP 客户端的唯一 ID。
-
agent
- (字符串)HTTP 客户端报告的代理。如果不可用,则响应中不包含此属性。
-
local_address
- (字符串)HTTP 连接的本地地址。
-
remote_address
- (字符串)HTTP 连接的远程地址。
-
last_uri
- (字符串)客户端最近一次请求的 URI。
-
x_forwarded_for
- (字符串)来自客户端
x-forwarded-for
HTTP 标头的值。如果不可用,则响应中不包含此属性。 -
x_opaque_id
- (字符串)来自客户端
x-opaque-id
HTTP 标头的值。如果不可用,则响应中不包含此属性。 -
opened_time_millis
- (整数)客户端打开连接的时间。
-
closed_time_millis
- (整数)如果连接已关闭,则为客户端关闭连接的时间。
-
last_request_time_millis
- (整数)此客户端最近一次请求的时间。
-
request_count
- (整数)此客户端的请求数。
-
request_size_bytes
- (整数)此客户端所有请求的累积大小(以字节为单位)。
-
-
-
ingest
-
(对象)包含集群的摄取信息。
ingest
的属性-
total
-
(对象)包含有关集群的摄取操作的信息。
total
的属性-
count
- (整数)整个集群中摄取的文档总数。
-
time
- (时间值)在整个集群中预处理摄取文档所花费的总时间。
-
time_in_millis
- (整数)在整个集群中预处理摄取文档所花费的总时间(以毫秒为单位)。
-
current
- (整数)当前正在摄取的文档总数。
-
failed
- (整数)整个集群中失败的摄取操作总数。
-
-
pipelines
-
(对象)包含有关集群的摄取管道的信息。
pipelines
的属性-
<pipeline_id>
-
(对象)包含有关摄取管道的信息。
<pipeline_id>
的属性-
count
- (整数)摄取管道预处理的文档数。
-
time
- (时间值)在摄取管道中预处理文档所花费的总时间。
-
time_in_millis
- (整数)在摄取管道中预处理文档所花费的总时间(以毫秒为单位)。
-
failed
- (整数)摄取管道的失败操作总数。
-
processors
-
(对象数组)包含有关摄取管道中摄取处理器的信息。
processors
的属性-
<processor>
-
(对象)包含有关摄取处理器的信息。
<processor>
的属性-
count
- (整数)处理器转换的文档数。
-
time
- (时间值)处理器转换文档所花费的时间。
-
time_in_millis
- (整数)处理器转换文档所花费的时间(以毫秒为单位)。
-
current
- (整数)当前正在被处理器转换的文档数。
-
failed
- (整数)处理器的失败操作数。
-
-
-
-
-
-
thread_pool
-
(对象)包含有关集群线程池的信息。
thread_pool
的属性-
<thread_pool_name>
-
(对象)包含有关名称为
<thread_pool_name>
的集群线程池的信息。<thread_pool_name>
的属性-
threads
- (整数)线程池中的线程数。
-
queue
- (整数)线程池队列中的任务数。
-
active
- (整数)线程池中的活动线程数。
-
rejected
- (整数)线程池执行器拒绝的任务数。
-
largest
- (整数)线程池中活动线程的最大数量。
-
completed
- (整数)线程池执行器完成的任务数。
-
-
-
script
-
(对象)包含集群的脚本统计信息。
script
的属性-
compilations
- (整数)集群执行的内联脚本编译总数。
-
compilations_history
- (对象)包含脚本编译的最近历史记录。
compilations_history
的属性-
5m
- (长整数)过去五分钟内脚本编译的数量。
-
15m
- (长整数)过去十五分钟内脚本编译的数量。
-
24h
- (长整数)过去二十四小时内脚本编译的数量。
-
cache_evictions
- (整数)脚本缓存驱逐旧数据的总次数。
-
cache_evictions_history
- (对象)包含脚本缓存驱逐的最近历史记录。
cache_evictions
的属性-
5m
- (长整数)过去五分钟内脚本缓存驱逐的数量。
-
15m
- (长整数)过去十五分钟内脚本缓存驱逐的数量。
-
24h
- (长整数)过去二十四小时内脚本缓存驱逐的数量。
-
compilation_limit_triggered
- (整数)脚本编译 断路器限制内联脚本编译的总次数。
-
示例编辑
response = client.cluster.info( target: '_all' ) puts response response = client.cluster.info( target: 'http' ) puts response response = client.cluster.info( target: 'ingest' ) puts response response = client.cluster.info( target: 'thread_pool' ) puts response response = client.cluster.info( target: 'script' ) puts response response = client.cluster.info( target: 'http,ingest' ) puts response
# returns all stats info of the cluster GET /_info/_all # returns the http info of the cluster GET /_info/http # returns the http info of the cluster GET /_info/ingest # returns the thread_pool info of the cluster GET /_info/thread_pool # returns the script info of the cluster GET /_info/script # returns the http and ingest info of the cluster GET /_info/http,ingest