


Apologies for the late response. It seems we somehow missed your thread.
From your screenshots, it looks like your Wazuh manager and indexer server are using a high amount of memory. The 7.5GB limit is coming from the Wazuh Indexer, not the Wazuh Dashboard. This error occurs because the dashboard is sending a large query to the indexer, and the indexer cannot process it due to insufficient JVM heap memory.
To fix this, we need to make sure the JVM heap size is large enough to handle the data load.
A few important recommendations for JVM memory:
Do not use more than 50% of your total RAM
Do not exceed 32GB of heap memory
First, check the memory available on your indexer node:
free -h
Next, edit the file:
/etc/wazuh-indexer/jvm.options
Update the JVM settings based on your system memory.
For example, if your server has 32GB RAM, set JVM heap to 16GB:
-Xms16g
-Xmx16g
Are you using an all-in-one deployment or a distributed deployment?
How many agents and devices are connected to your Wazuh server?
Do you have any custom dashboards running heavy or long-running queries?
Resource usage of your indexer and dashboard server:
Memory: free -h
Disk: df -h
CPU: top