Giter Site home page Giter Site logo

spring-cloud-dashboard's Introduction

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 (Netflix Eureka and AWS Beanstalk).

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>com.github.vanroy</groupId>
	<artifactId>spring-cloud-dashboard</artifactId>
	<version>1.1.0.RELEASE</version>
</dependency>

Create the Spring Cloud Dashboard with only one single Annotation.

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

HTTP Client Configuration

Spring Cloud Dashboard uses an Apache HTTP Client to query your instance's actuator endpoints. Sometimes it is possible that these endpoints are secured. Configurations are available to customize you http client with Basic pre authorization headers.

spring:
  cloud:
    dashboard:
      http:
        # Basic Credentials
        username: user
        password: password
        
        # Optional Defaults values
        maxConnection: 100 
		connectTimeout: 1000
		socketTimeout: 2000 
		requestTimeout: 1000

Samples:

Samples are available in this repository : https://github.com/VanRoy/spring-cloud-dashboard-samples

Screenshot:

Application registry:

Circuit breaker:

Registry history:

spring-cloud-dashboard's People

Contributors

vanroy avatar daniellavoie avatar

Watchers

Chakra avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.