

Hi all,
I'm seeing a "No cached mapping for this field" warning in Discover on data.office365.SystemOverrides (screenshots attached, x2 — same warning shown consistently).
Environment: Wazuh 4.14.5, OpenSearch Dashboards, Office365 module, AWS module
What I've checked:
Hi Rahul,
Go to Dashboard management > Dashboards Management > Index patterns
And select wazuh-alerts-* template.
And click on the refresh icon. Similar to the screenshot. 

Restart the indexer service.
systemctl daemon-reload
systemctl restart wazuh-indexer
In the Wazuh dashboard, click on the hamburger icon at the top left > Index Management > Dev Tools. Please run and share the outputs of the following commands:
GET wazuh-alerts-*/_mapping/field/<affectedfield>
Where <affectedfield> is the field that is not populated with data.
From the Index Management > Dev Tools. Please run and check the outputs of the following commands:
GET wazuh-alerts-*/_settings
It will show you the field's limit.
"mapping": {
"total_fields": {
"limit": "10000"
}
Next, go to Dashboard management > Dashboards Management > Index patterns
And select wazuh-alerts-* template.
Check how many fields you have currently on that index pattern.
If you have hit the index limit. You can use this to increase the index field limit.
Index Management > Dev Tools.
PUT wazuh-alerts-*/_settings
{
"index.mapping.total_fields.limit": 20000
}
Also for the future indices.
Go to vi /etc/filebeat/wazuh-template.json
Change the total_fields.limit
"index.mapping.total_fields.limit": 20000,
And load the configuration
filebeat setup --pipelines
filebeat setup --index-management -E output.logstash.enabled=false
Restart Filebeat:
systemctl restart filebeat
Now reindex today's index.
Create a backup of the data with this command.
POST _reindex
{
"source": {
"index": "wazuh-alerts-4.x-2026.06.25"
},
"dest": {
"index": "wazuh-alerts-4.x-backup"
}
}
Delete your data index
DELETE /wazuh-alerts-4.x-2026.06.25
Recreate the data index from the backup
POST _reindex
{
"source": {
"index": "wazuh-alerts-4.x-backup"
},
"dest": {
"index": "wazuh-alerts-4.x-2026.06.25"
}
}
Delete the backup index
DELETE /wazuh-alerts-4.x-backup
Now, go to the indexer pattern, click on the refresh button as I instructed before.
After that, go to the Discover or Threat Hunting page and filter today and check if you are able to see the fields in searchable format in today's index.