elasticsearch curator

Elasticsearch通过elasticsearch-curator 插件来定期删除Index

心不动则不痛 提交于 2020-08-05 08:29:55
Elasticsearch管理中索引的管理非常重要。基于磁盘空间和性能的考量,索引的生命周期管理显得尤为重要。Curator允许对索引创建、删除等操作,下面是我们借助 elasticsearch-curator 插件来定期删除index.本文主要介绍elasticsearch-curator 插件的安装步骤。 Step 1下载 https://www.elastic.co/guide/en/elasticsearch/client/curator/current/yum-repository.html Step 2 上传安装包至服务器,并创建相应的文件 Step 3 安装 执行的安装命令如下: yum localinstall elasticsearch-curator- 5.8 . 1 - 1 .x86_64.rpm Step 4 完善更新配置文件 config.yml文件 详细内容如下: --- # Remember, leave a key empty if there is no value. None will be a string , # not a Python " NoneType " client: hosts: - 2 01.101 . 101.101 port: 端口 url_prefix: use_ssl: False certificate:

zabbix4.4 历史数据存放elasticsearch 并定期清理

拥有回忆 提交于 2020-08-05 00:02:18
一、其他不多说 直接开始做吧 elasticsearch 安装配置 我这里测试用的2台机器安装ES6.8 rpm -ivh elasticsearch-6.8.10.rpm 集群配置 节点一 root@[ 8.1.10.146 @elastic1:/root ]# cat /etc/elasticsearch/elasticsearch.yml |grep -v "^#" cluster.name: Zabbix-history node.name: 8.1.10.146 path.data: /data/ESdata path.logs: /var/log/elasticsearch bootstrap.memory_lock: true network.host: 0.0.0.0 http.max_initial_line_length: 128k http.max_header_size: 64kb http.max_content_length: 500mb discovery.zen.ping.unicast.hosts: ["8.1.10.146", "8.1.10.147"] discovery.zen.minimum_master_nodes: 2 节点二 root@[ 8.1.10.147 @elastic2:/root ]# cat /etc