You can customize three logos:
- App logo, located at the top left in the main menu.
- Logo healthcheack, located at the top of the checklist displayed during the health check routine.
- Logo sidebar, located in the left navigation menu.
To do this you must set the "customization.enabled" part to true.They are stored in the following path /usr/share/wazuh-dashboard/plugins/wazuh/public/assets/custom/images/
Which one do you mean by loading logo? Which of the three logos are you having problems with?
for this logo, you have to edit the /etc/wazuh-dashboard/opensearch_dashboards.yml and add the logo URL to the loadingLogo section (for the default and dark mode):
opensearchDashboards.branding:
loadingLogo:
defaultUrl: "<logo url>"
darkModeUrl: "<logo url>"
If you require the logo to be in the server instead of a different URL, it can be saved on /usr/share/wazuh-dashboard/src/core/server/core_app/assets/<logo> and as the URL in the configuration add <dashboard URL>/ui/<logo>. For example, if the logo is called logo.png, and the URL to the dashboard is https://exampleurl.com, the configuration URL should be https://exampleurl.com/ui/logo.png
I hope you find it helpful, thank you!