Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/carloscazelattojr/springboot-admin-server-monitoring
- Owner: carloscazelattojr
- Created: 2021-07-04T18:13:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T19:08:28.000Z (about 1 year ago)
- Last Synced: 2024-04-18T07:24:11.933Z (9 months ago)
- Language: Java
- Homepage:
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
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
Credits: codecentric's