Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callicoder/spring-boot-actuator-demo
Spring Boot Actuator: Health Check, Metrics Gathering, Auditing, and Monitoring
https://github.com/callicoder/spring-boot-actuator-demo
actuator dashboard grafana metrics monitoring pometheus spring-boot spring-boot-actuator spring-boot-metrics spring-boot-monitoring
Last synced: 6 days ago
JSON representation
Spring Boot Actuator: Health Check, Metrics Gathering, Auditing, and Monitoring
- Host: GitHub
- URL: https://github.com/callicoder/spring-boot-actuator-demo
- Owner: callicoder
- Created: 2018-06-17T05:58:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-27T10:46:54.000Z (almost 5 years ago)
- Last Synced: 2024-04-11T15:33:49.960Z (7 months ago)
- Topics: actuator, dashboard, grafana, metrics, monitoring, pometheus, spring-boot, spring-boot-actuator, spring-boot-metrics, spring-boot-monitoring
- Language: Java
- Homepage: https://www.callicoder.com/spring-boot-actuator-metrics-monitoring-dashboard-prometheus-grafana/
- Size: 96.7 KB
- Stars: 74
- Watchers: 7
- Forks: 74
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Spring Boot Actuator: Health Check, Auditing, Metrics Gathering and Monitoring
## Tutorials
1. [Spring Boot Actuator: Health check, Auditing, Metrics gathering and Monitoring](https://www.callicoder.com/spring-boot-actuator/)
2. [Spring Boot Actuator metrics monitoring with Prometheus and Grafana](https://www.callicoder.com/spring-boot-actuator-metrics-monitoring-dashboard-prometheus-grafana/)## Steps to Setup
**1. Clone the application**
```bash
git clone https://github.com/callicoder/spring-boot-actuator-demo.git
```**2. Build and run the app using maven**
```bash
mvn package
java -jar target/actuator-demo-0.0.1-SNAPSHOT.jar
```Alternatively, you can run the app directly without packaging like this -
```bash
mvn spring-boot:run
```The app will start running at .
## Explore Actuator Endpoints
All the actuator endpoints will be available at .
Some of the actuator endpoints are protected with Spring Security's HTTP Basic Authentication. You can use the username `actuator` and password `actuator` for http basic authentication.