Skip to content

mbit-cloud/spring-cloud-dashboard

 
 

Repository files navigation

spring-cloud-dashboard

This application provides a simple GUI to administrate Spring Cloud applications infrastructure. It's a fork of Spring Boot Admin to manage applications registered in service registry (like Eureka).

At the moment it provides the following features for every registered application (most of then inherited of spring-boot-admin).

  • Show name/id and version number
  • Show health status
  • Show details, like
  • Java System- / Environment- / Spring properties
  • JVM & memory metrics
  • Counter & gauge Metrics
  • Datasource Metrics
  • Easy loggerlevel management
  • Interact with JMX-Beans
  • View Threaddump

Any specific spring cloud information are also available in dashboard

  • Application registry history ( from Eureka Server )
  • Circuit Breaker dashboard ( from Hystrix or Turbine )

Easy Setup

Add the following dependency to your pom.xml after you have build this project locally.

<dependency>
	<groupId>net.vanroy</groupId>
	<artifactId>spring-cloud-dashboard</artifactId>
	<version>1.0.0-SNAPSHOT</version>
</dependency>

Create the Spring Cloud Dashboard with only one single Annotation.

@Configuration
@EnableAutoConfiguration
@EnableCloudDashboard
public class Application {
	public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}
}

Screenshot:

Application registry:

Circuit breaker:

Registry history:

About

Spring Cloud Dashboard

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 42.1%
  • HTML 28.0%
  • Java 22.8%
  • CSS 7.1%