Prometheus and Grafana monitoring
Go to file
Santiago Lo Coco bab07706c7 Update .gitignore 2024-03-25 00:24:41 +01:00
grafana Add default dashboard (grafana) 2024-03-12 15:35:21 +01:00
prometheus Add Grafana & Prometheus Configs 2024-03-12 14:25:39 +01:00
spring-app Update .gitignore 2024-03-25 00:24:41 +01:00
.gitignore Update .gitignore 2024-03-25 00:24:41 +01:00
README.md Update README.md 2024-03-25 00:15:27 +01:00
docker-compose.yml Add anonymous access to grafana 2024-03-12 15:47:45 +01:00

README.md

Prometheus and Grafana monitoring for Spring Boot application

This project demonstrates how to set up monitoring for a Spring Boot application using Prometheus and Grafana.

Running the project

  1. Clone the repository.
  2. Start the containers using Docker Compose:
docker compose up --build -d
  1. Access Grafana at http://localhost:3000.
  2. Navigate to the Dashboard section and select calls-count-dashboard.

Usage

  • Prometheus scrapes metrics from the /metrics endpoint of the Spring Boot application every 15 seconds at http://localhost:8080/metrics.
  • The /metrics endpoint includes a call_counter variable, which increases each time the /data endpoint is called. You can manually increase the counter by executing:
curl http://localhost:8080/data
  • When Prometheus scrapes the /metrics endpoint, it automatically restarts the counter.

Contributors

  • Juan Martín Barmasch
  • Mateo Bartellini Huapalla
  • Ezequiel Bellver
  • Santiago Lo Coco
  • Juan Manuel Negro