How to change the ui of wazuh dashboard from it's code? Please help. #7188
-
I want to change ui of wazuh dashboard and for that I followed these steps:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @Prathamesh314 Most of the possible changes are inside the To do this you will need docker, and Node.js in the version that the repository states in If the changes you need to do are in the I hope you find this helpful, let me know if you need further assistance. Regards, |
Beta Was this translation helpful? Give feedback.
In the first image that you show, the environment is working as expected. That API screen is part of the Wazuh plugin, meaning that is being correctly read.
Regarding the API errors, I found the cause of the error, that was due to a wrong IP in the imposter configuration file. To solve it, open
wazuh-dashboard-plugins/docker/imposter/wazuh-config.yml
and replacewith
(add a
v
before the Wazuh version). After that, you can start the imposter container again and it should work.There's also the option to set a real manag…