Dear Yossif,
Please can you run these commands via the Dev Tool:
1 GET _cat/indices?v
2 GET wazuh-archivess-*/_mapping/field/
data.alienvault.id3 GET wazuh-archivess-*/_mapping/field/data.alienvault.created
From the warning message, you might have to perform re-indexing to see these fields. Please follow the below steps via Dev Tools to reindex your data.
1. Backup your data:
POST _reindex
{
"source": {
"index": "wazuh-archives-4.x-2025.08.28"
},
"dest": {
"index": "wazuh-archives-4.x-backup"
}
}
2. Delete the wazuh-archives-4.x-2025.08.28
DELETE /
wazuh-archives-4.x-2025.08.28
3. Re-index the data from the backup index wazuh-archives-4.x-backup to a new index with the original name wazuh-archives-4.x-2025.08.28.
POST _reindex
{
"source": {
"index": "wazuh-archives-4.x-backup"
},
"dest": {
"index": "wazuh-archives-4.x-2025.08.28"
}
}
4.
Delete the backup created earlier:
DELETE /wazuh-archives-4.x-backup
5. Try again to see if the data.alienvault.* fields are registered now.