加载 Elasticsearch 索引模板
编辑加载 Elasticsearch 索引模板编辑
Elasticsearch 使用 索引模板 来定义
- 控制数据流和后备索引行为的设置。这些设置包括用于管理后备索引随着增长和老化而使用的生命周期策略。
- 确定如何分析字段的映射。每个映射都设置 Elasticsearch 数据类型 用于特定数据字段。
Heartbeat 的推荐索引模板文件由 Heartbeat 软件包安装。如果您接受 heartbeat.yml
配置文件中的默认配置,Heartbeat 会在成功连接到 Elasticsearch 后自动加载模板。如果模板已经存在,除非您配置 Heartbeat 这样做,否则不会被覆盖。
加载索引模板需要连接到 Elasticsearch。如果输出不是 Elasticsearch(或 Elasticsearch Service),您必须 手动加载模板。
此页面展示了如何更改默认的模板加载行为以
有关模板设置选项的完整列表,请参阅 Elasticsearch 索引模板。
加载您自己的索引模板编辑
要加载您自己的索引模板,请设置以下选项
setup.template.name: "your_template_name" setup.template.fields: "path/to/fields.yml"
如果模板已经存在,除非您配置 Heartbeat 这样做,否则不会被覆盖。
您可以为数据流和索引加载模板。
覆盖现有的索引模板编辑
不要为多个 Heartbeat 实例启用此选项。如果您同时启动多个实例,它可能会因过多的模板更新请求而使您的 Elasticsearch 超载。
要覆盖已加载到 Elasticsearch 的模板,请设置
setup.template.overwrite: true
禁用自动索引模板加载编辑
如果您使用的是除 Elasticsearch 以外的输出,并且需要手动加载模板,则可能需要禁用自动模板加载。要禁用自动模板加载,请设置
setup.template.enabled: false
如果您禁用自动模板加载,您必须手动加载索引模板。
手动加载索引模板编辑
要手动加载索引模板,请运行 setup
命令。需要连接到 Elasticsearch。如果启用了其他输出,则需要使用 -E
选项临时禁用该输出并启用 Elasticsearch。以下示例假设启用了 Logstash 输出。如果 Elasticsearch 输出已启用,您可以省略 -E
标志。
如果您正在连接到安全的 Elasticsearch 集群,请确保您已配置凭据,如 快速入门:安装和配置 中所述。
如果运行 Heartbeat 的主机没有与 Elasticsearch 的直接连接,请参阅 手动加载索引模板(备用方法)。
要加载模板,请使用适合您系统的命令。
deb 和 rpm
heartbeat setup --index-management -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=["localhost:9200"]'
mac
./heartbeat setup --index-management -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=["localhost:9200"]'
linux
./heartbeat setup --index-management -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=["localhost:9200"]'
docker
docker run docker.elastic.co/beats/heartbeat:8.14.3 setup --index-management -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=["localhost:9200"]'
win
以管理员身份打开 PowerShell 提示符(右键单击 PowerShell 图标并选择 以管理员身份运行)。
在 PowerShell 提示符下,更改到您安装 Heartbeat 的目录,然后运行
PS > .\heartbeat.exe setup --index-management -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=["localhost:9200"]'
强制 Kibana 查看最新文档编辑
如果您已经使用 Heartbeat 将数据索引到 Elasticsearch 中,则索引可能包含旧文档。加载索引模板后,您可以从 heartbeat-*
中删除旧文档以强制 Kibana 查看最新文档。
使用此命令
deb 和 rpm
curl -XDELETE 'https://127.0.0.1:9200/heartbeat-*'
mac
curl -XDELETE 'https://127.0.0.1:9200/heartbeat-*'
linux
curl -XDELETE 'https://127.0.0.1:9200/heartbeat-*'
win
PS > Invoke-RestMethod -Method Delete "https://127.0.0.1:9200/heartbeat-*"
此命令将删除与模式 heartbeat
匹配的所有索引。在运行此命令之前,请确保您要删除与模式匹配的所有索引。
手动加载索引模板(备用方法)编辑
如果运行 Heartbeat 的主机没有与 Elasticsearch 的直接连接,您可以将索引模板导出到文件,将其移动到具有连接的机器,然后手动安装模板。
要导出索引模板,请运行
deb 和 rpm
heartbeat export template > heartbeat.template.json
mac
./heartbeat export template > heartbeat.template.json
linux
./heartbeat export template > heartbeat.template.json
win
PS > .\heartbeat.exe export template --es.version 8.14.3 | Out-File -Encoding UTF8 heartbeat.template.json
要安装模板,请运行
deb 和 rpm
curl -XPUT -H 'Content-Type: application/json' https://127.0.0.1:9200/_index_template/heartbeat-8.14.3 [email protected]
mac
curl -XPUT -H 'Content-Type: application/json' https://127.0.0.1:9200/_index_template/heartbeat-8.14.3 [email protected]
linux
curl -XPUT -H 'Content-Type: application/json' https://127.0.0.1:9200/_index_template/heartbeat-8.14.3 [email protected]
win
PS > Invoke-RestMethod -Method Put -ContentType "application/json" -InFile heartbeat.template.json -Uri https://127.0.0.1:9200/_index_template/heartbeat-8.14.3
加载索引模板后,也加载数据流。如果您没有加载它,您必须给发布者用户 manage
权限在 heartbeat-8.14.3 索引上。
deb 和 rpm
curl -XPUT https://127.0.0.1:9200/_data_stream/heartbeat-8.14.3
mac
curl -XPUT https://127.0.0.1:9200/_data_stream/heartbeat-8.14.3
linux
curl -XPUT https://127.0.0.1:9200/_data_stream/heartbeat-8.14.3
win
PS > Invoke-RestMethod -Method Put -Uri https://127.0.0.1:9200/_data_stream/heartbeat-8.14.3