As I explained previously, you cannot see all of those alerts on the dashboard because they are triggering a level 0 rules.
For instance, all the informational events (level: INFORMATION) fall under the rule 60009 which is level 0 rule by default.
You can overwrite the rule by creating the following custom rule in your environment:
<rule id="60009" level="3" overwrite="yes">
<if_sid>60000</if_sid>
<field name="win.system.severityValue">^INFORMATION$</field>
<options>no_full_log</options>
<description>Windows informational event.</description>
</rule>
This will change the level to 3 and you will be able to see all the alerts on the dashboard.
You need to do the same for other event channels. But you need to identify which rule your events fall under, because overwriting the wrong rule will not help.
The System logs for instance fall under the rule 60002:
<rule id="60002" level="0">
<if_sid>60000</if_sid>
<field name="win.system.channel">^System$</field>
<options>no_full_log</options>
<description>Group of Windows rules for the system channel.</description>
</rule>
You can overwrite it by the following custom rule:
<rule id="60002" level="3" overwrite="yes">
<if_sid>60000</if_sid>
<field name="win.system.channel">^System$</field>
<options>no_full_log</options>
<description>Group of Windows rules for the system channel.</description>
</rule>
For Windows Defender logs, they trigger the rule 60005 by default:
<rule id="60005" level="0">
<if_sid>60000</if_sid>
<field name="win.system.channel">^Microsoft-Windows-Windows Defender/Operational$</field>
<options>no_full_log</options>
<description>Group of Windows rules for the system channel.</description>
</rule>
You can overwrite it with the following custom rule:
<rule id="60005" level="3" overwrite="yes">
<if_sid>60000</if_sid>
<field name="win.system.channel">^Microsoft-Windows-Windows Defender/Operational$</field>
<options>no_full_log</options>
<description>Group of Windows rules for the system channel.</description>
</rule>
Please keep in mind that you won't be able to identify the default rules triggered unless you enable the archives.
Most of the rules you will need to overwrite are in /var/ossec/ruleset/rules/0575-win-base_rules.xml file in your manager.
I hope this helps.
Please let me know if you have any other question.