如何将 wazuh 默认索引模式从每日 (wazuh-alerts-4.x-yyyy.mm.dd) 更改为每周 (wazuh-alerts-4.x-xxxx.ww)

问题描述 投票:0回答:2

起初这似乎是一项简单的任务,因为创建此索引的配置位于 /usr/share/filebeat/module/wazuh/alerts/ingest/pipeline.json

    {
      "date_index_name": {
        "field": "timestamp",
        "date_rounding": "d",
        "index_name_prefix": "{{fields.index_prefix}}",
        "index_name_format": "yyyy.mm.dd",
        "ignore_failure": false 
      }
    },

但是将index_name_format更改为'xxxx.ww'并重新启动filebeat,它仍然写入旧的索引格式。有人知道我是否需要做其他事情来让 filebeat 识别新的管道配置?

filebeat wazuh
2个回答
0
投票

好的,在深入研究 Wazuh 文档后问题就解决了。

首先,每周索引的格式应该是'YYYY.ww'

第二,结果发现 pipeline.json 被缓存到elasticsearch中,需要通过以下方式清除:

DELETE _ingest/pipeline/filebeat-7.10.2-wazuh-alerts-pipeline

0
投票
  1. 编辑文件 /usr/share/filebeat/module/wazuh/alerts/ingest/pipeline.json
  2. 应用更改 sudo filebeat setup --pipelines
© www.soinside.com 2019 - 2024. All rights reserved.