Hello John:
I hope you are fine.
The yellow state in your Wazuh-indexer is because you have Unassigned shards on it. The first thing you need to know is why you have them. For that, you have to run the following query:
# GET /_cluster/allocation/explain
Probably, you have a message like this:
"explanation" : "a copy of this shard is already allocated to this node...
This means that your Elasticsearch is trying to allocate a shard for an Index that already have one. This happens when you have set a replica for your Index and you only have one node.
If this the case, you need to set your replicas to "zero" for all your index patterns you might have. For "wazuh" indices for example:
PUT
wazuh-*/_settings
{
"index.number_of_replicas"
: 0,
"index.auto_expand_replicas":
false
}
If this not the case, please share the result of the first query to check.
I hope this helps.
Thanks