Hi Sam,
Have you written rules for this to trigger an alert in the Dashabord?
If you have written a rule and it is triggering alerts in the ruleset test. Please share the output of your rule test.
You can write a simple rule like this
<rule id="110000" level="3">
<decoded_as>wzh-dhcp</decoded_as>
<description>Mikrotik-Event</description>
</rule>
Check this document to learn more about writing rules:
https://documentation.wazuh.com/current/user-manual/ruleset/index.html
Can you enable archives.json and check if the logs are in the archives.json
For this, You can try the following steps:
For this, you can enable archive JSON format log from your manager's ossec.conf
<ossec_config>
<global>
___________________
<logall_json>yes</logall_json>
_______________
After making the changes make sure to restart the manager.
Note: Don't forget to disable the logall parameter once you have finished troubleshooting. Leaving it enabled could lead to high disk space consumption.
Ref: https://documentation.wazuh.com/current/user-manual/reference/ossec-conf/global.html#logall-json
Look for any relevant logs inside the archive log. Use grep parameters related to the log.
cat /var/ossec/logs/archives/archives.json | grep "MikroTik test"
Please share the output of the above command
If you can find the logs in the archives.json and it shows that it is matching with rules and decoders. Please share logs from filebeat
cat /var/log/filebeat/filebeat | grep -i -E "error|warn"
Looking forward to your update on the issue.