Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/carloscazelattojr/springboot-admin-server-monitoring

Spring Boot Admin Server (Monitoring)
https://github.com/carloscazelattojr/springboot-admin-server-monitoring

Last synced: about 2 months ago
JSON representation

Spring Boot Admin Server (Monitoring)

Awesome Lists containing this project

README

        

# Spring Boot Admin Server - App Monitoring Project

Application Monitoring Project with Spring Boot Admin Server

## Project Dependency

- Spring Web

# Authors

codecentric's Spring Boot Admin


codecentric

https://github.com/codecentric/spring-boot-admin

## Docs

https://codecentric.github.io/spring-boot-admin/2.3.1/

Add Spring Boot Admin Server starter to your dependencies:

File: pom.xml

```

de.codecentric
spring-boot-admin-starter-server
2.?

org.springframework.boot
spring-boot-starter-web

```

Pull in the Spring Boot Admin Server configuration via adding @EnableAdminServer to your configuration:

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

```

Register Client

In the project you want to monitor, add the dependency in pom.xml.

```

de.codecentric
spring-boot-admin-starter-client
2.3.1

```

Enable the SBA Client by configuring the URL of the Spring Boot Admin Server:

In the project that will be monitored, add in the file: application.properties

```
spring.boot.admin.client.url=http://localhost:8080
management.endpoints.web.exposure.include=*
```

## Tecnologies

`Java` `Spring Boot` `Spring Boot Admin`

# Example Sites:

I used this Forum project as a test: https://github.com/carloscazelattojr/springboot-api-rest-forum


forum


forum




Credits: codecentric's