-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rajeev Kumar Singh
committed
Jun 25, 2018
1 parent
e5ce906
commit 848d6fd
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# 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 <http://localhost:8080>. | ||
|
||
## Explore Actuator Endpoints | ||
|
||
All the actuator endpoints will be available at <http://localhost:8080/actuator>. | ||
|
||
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. |