Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.