As Vishnu ks said Kibana will only show you logs when they break a rule. If you want to see every log you can open the archives.log file, you can find it there:
/var/ossec/logs/archives/archives.log
Nevertheless, by default wazuh won't put a single log there cause you have to indicate it in the ossec.conf file. You can configure this easily by doing:
vi /var/ossec/etc/ossec.conf
And there find the global section and change logall's value to yes.
<global>
<jsonout_output>yes</jsonout_output>
<alerts_log>yes</alerts_log>
**<logall>yes</logall>**
<logall_json>no</logall_json>
Now, restart the wazuh-manager by calling:
systemctl restart wazuh-manager
And finally you will be able to see every log inside the archives.log file.
Hope it helps.