
Hi
Serhii
The issue is occurring due to a field mapping error.
Please check the office365.ClientIP field in
/etc/filebeat/wazuh-template.json.
This field must be of type keyword, for example:
If ClientIP is defined as anything other than keyword, change it to keyword, then run the following command:
filebeat setup --pipelinesAfter this, check the Filebeat logs to confirm the errors are resolved.
Next, you need to reindex the affected indices.
In the Wazuh dashboard, click the hamburger menu (top left) → Index Management → Dev Tools.
Run the following command to list all indices:
GET _cat/indicesTake a backup of the affected index (replace the index name as needed):
POST _reindex
{
"source": {
"index": "wazuh-alerts-4.x-2025.08.14"
},
"dest": {
"index": "wazuh-alerts-4.x-backup"
}
}
Delete the original index:
DELETE /wazuh-alerts-4.x-2025.08.14Reindex the data back from the backup:
POST _reindex
{
"source": {
"index": "wazuh-alerts-4.x-backup"
},
"dest": {
"index": "wazuh-alerts-4.x-2025.08.14"
}
}
Delete the backup index:
DELETE /wazuh-alerts-4.x-backupRepeat these steps for any other indices that show field conflict issues.
For more details, you can also refer to the https://documentation.wazuh.com/current/user-manual/wazuh-indexer/re-indexing.html