Elasticsearch 模块
编辑Elasticsearch 模块
编辑elasticsearch
模块收集有关 Elasticsearch 的指标。
兼容性
编辑elasticsearch
模块适用于 Elasticsearch 6.7.0 及更高版本。
用于 Elastic Stack 监控的用法
编辑elasticsearch
模块可用于收集 Kibana 中 Stack Monitoring UI 中显示的指标。要启用此用法,请设置 xpack.enabled: true
并从模块的配置中删除任何 metricsets
。或者,运行 metricbeat modules disable elasticsearch
和 metricbeat modules enable elasticsearch-xpack
。
启用 xpack 模式后,所有旧版 metricset 默认情况下都会自动启用。这意味着您无需手动启用它们,并且不会出现任何冲突或问题,因为 Metricbeat 会将用户定义的 metricset 与 xpack 模式强制启用的 metricset 合并。因此,您可以无缝收集全面的指标,而无需担心数据集重叠或重复。
metricbeat.modules: - module: elasticsearch xpack.enabled: true metricsets: - ingest_pipeline period: 10s
当此模块用于 Elastic Stack 监控时,它会将指标发送到监控索引,而不是 Metricbeat 通常使用的默认索引。有关监控索引的更多详细信息,请参阅 配置监控索引。
模块特定配置说明
编辑与其他 Metricbeat 模块一样,elasticsearch
模块接受 hosts
配置设置。此设置可以包含条目列表。相关的 scope
设置确定模块如何解释 hosts
列表中的每个条目。
- 如果
scope
设置为node
(默认值),则hosts
列表中的每个条目都表示 Elasticsearch 集群中的一个独立节点。 - 如果
scope
设置为cluster
,则hosts
列表中的每个条目都表示一个独立 Elasticsearch 集群的单个端点(例如,位于集群前面的负载均衡代理)。
Elasticsearch 模块支持在 模块中描述的标准配置选项。这是一个示例配置
metricbeat.modules: - module: elasticsearch metricsets: - node - node_stats #- index #- index_recovery #- index_summary #- ingest_pipeline #- shard #- ml_job period: 10s hosts: ["https://127.0.0.1:9200"] #username: "elastic" #password: "changeme" #api_key: "foo:bar" #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] #index_recovery.active_only: true #ingest_pipeline.processor_sample_rate: 0.25 #xpack.enabled: false #scope: node
此模块在使用 ssl
配置字段时支持 TLS 连接,如 SSL中所述。它还支持 标准 HTTP 配置选项中描述的选项。
以下 metricset 可用