vipin
vipin

Reputation: 21

Dashboard in WSO2 Micro Integrator 7.1

Hello Everyone,

I took the latest release code of micro integrator from GitHub and build micro integrator zip from that. I used the zip file and was able to deploy CAR files on that without any issue. But I am not able to find any script to start dashboard. Any idea how can i start dashboard using zip that i build from GitHub code? PS: I am not using binary to install micro integrator. With binary, micro-dashboard comes by default.

Thanks, Vipin

Upvotes: 0

Views: 237

Answers (2)

Chethan
Chethan

Reputation: 1

WSO2 Micro Integrator is a standalone server used for deploying the Integration Solutions in micro-service architecture and doesn't have built-in dashboard capability.

However, you can download the WSO2 Micro-Integrator Dashboard separately from their official website WSO2 MI Dashboard and add the below configuration in your micro-integrator server's <MI_HOME>/conf/deployment.toml file to establish the connection with dashboard.

[dashboard_config]
dashboard_url = "https://{hostname/ip}:{port}/dashboard/api/"
heartbeat_interval = 5
group_id = "mi_dev"
node_id = "dev_node_2"

Upvotes: 0

Arunan
Arunan

Reputation: 3459

Micro Integrator repo does not contain the dashboard distribution. It is available at https://github.com/wso2/product-mi-tooling. If you build the monitoring dashboard folder you can get the dashboard distribution.

Upvotes: 0

Related Questions