Questions Management – Support Monitor Dashboard – Initialize support-monitor-dashboard project using Spring Tool Suite

Check out the full series of Questions Management tutorial here.

After applying the Circuit Breaker for Questions Management using Hystrix, now is the time to build a Monitor Dashboard using Hystrix Dashboard to monitor all services call to other services. To do this, the first step is to create a new Spring Boot project with Hystrix Dashboard dependency as follows: In the New Spring Starter Project window, after entering information about our project, the Location section you need to point to the support folder of the questions-management project:

Questions Management – Support Monitor Dashboard – Initialize support-monitor-dashboard project using Spring Tool Suite

In the selection of dependencies used for the support-monitor-dashboard project, you need to select the Hystrix Dashboard as follows:

Questions Management – Support Monitor Dashboard – Initialize support-monitor-dashboard project using Spring Tool Suite

Result:

Questions Management – Support Monitor Dashboard – Initialize support-monitor-dashboard project using Spring Tool Suite

Next, I will revise this project so that it uses the parent project of project questions-management.

In the pom.xml file of this project, I will delete the current <parent>, <properties> and <dependencyManagement> sections to declare using parent project of questions-management project as follows:

Then declare the support-monitor-dashboard project as a module of questions-management project as follows:

Add Comment