search
HomeJavajavaTutorialBuilding Observability and Monitoring for Modern Applications with Actuator, Prometheus and Grafana

In today’s world of distributed systems and microservices, ensuring our application is observable and monitorable is just as important as building the core functionality. We’ve already set up critical features like a NGINX load balancer, a rate limiter, and a circuit breaker, the next step is to focus on observability and monitoring.

In this blog post, We’ll walk through how to add Spring Boot Actuator, Prometheus, and Grafana to our application to build a robust observability stack. This will help us visualize our application’s health, track performance metrics, and troubleshoot issues quickly and efficiently.


What Is Observability?

Observability refers to your ability to understand the internal state of a system based on the data it produces. The three pillars of observability are:

  1. Metrics: Quantifiable data points (e.g., request rates, memory usage, CPU utilization).
  2. Logs: Record of events (e.g., errors, warnings, or business events).
  3. Traces: Follow a request as it flows through multiple services.

By focusing on metrics and logs, we can build powerful dashboards and alerts that ensure your application remains performant and reliable.


Why Observability Is Important for Our Application

Our current application architecture already has essential components:

  • NGINX Load Balancer: Distributes traffic across servers.
  • Rate Limiter: Prevents overloading by limiting the number of requests.
  • Circuit Breaker: Ensures resilience by stopping calls to failing services.

However, while these tools enhance performance and reliability, they don’t tell us why something might be failing or how our system is performing under load. Observability tools like Actuator, Prometheus, and Grafana will:

  • Track real-time metrics for application health and performance.
  • Help visualize trends and potential bottlenecks.
  • Trigger alerts when metrics cross critical thresholds.

The Observability Stack

Add to your pom.xml file these dependencies:

<dependency>
   <groupid>io.github.resilience4j</groupid>
   <artifactid>resilience4j-micrometer</artifactid>
   <version>2.2.0</version>
</dependency>

<dependency>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-actuator</artifactid>
</dependency>

<dependency>
  <groupid>io.micrometer</groupid>
  <artifactid>micrometer-registry-prometheus</artifactid>
  <version>1.14.1</version>
</dependency>

Update the configurations of your application.properties

resilience4j.circuitbreaker.metrics.enabled=true

management.health.circuitbreakers.enabled=true
management.endpoints.web.exposure.include=health,metrics,circuitbreakers,prometheus
management.endpoint.health.show-details=always
management.endpoint.health.access=unrestricted
management.endpoint.prometheus.access=unrestricted
management.prometheus.metrics.export.enabled=true

Explanation

management.endpoints.web.exposure.include=health,metrics,circuitbreakers,prometheus

This line is exposing the URI from actuator, so we can consume URIs like:

  • actuator/
  • actuator/health,
  • actuator/metrics,
  • actuator/circuitbreakers,
  • actuator/prometheus

Using prometheus with docker

In our docker-compose.yaml file, we create a service for prometheus:

<dependency>
   <groupid>io.github.resilience4j</groupid>
   <artifactid>resilience4j-micrometer</artifactid>
   <version>2.2.0</version>
</dependency>

<dependency>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-actuator</artifactid>
</dependency>

<dependency>
  <groupid>io.micrometer</groupid>
  <artifactid>micrometer-registry-prometheus</artifactid>
  <version>1.14.1</version>
</dependency>

Config file for prometheus

At the root of you project create a folder called prometheusand inside that a file called prometheus.yaml

resilience4j.circuitbreaker.metrics.enabled=true

management.health.circuitbreakers.enabled=true
management.endpoints.web.exposure.include=health,metrics,circuitbreakers,prometheus
management.endpoint.health.show-details=always
management.endpoint.health.access=unrestricted
management.endpoint.prometheus.access=unrestricted
management.prometheus.metrics.export.enabled=true

Now, when we run:

prometheus:
    image: prom/prometheus:latest
    ports:
      - "9090:9090"
    networks:
      - app_network
    volumes:
      - ./prometheus/prometheus.yaml:/etc/prometheus/prometheus.yml
      - prometheus_data:/prometheus

A prometheus container will start, and consume metrics from the URI actuator/metrics from our spring-boot-servers.

We can see a dashboard at http://localhost:9090/, for example:

Building Observability and Monitoring for Modern Applications with Actuator, Prometheus and Grafana

Dashboard from Prometheus

But, this is not cool. We want to see some graphs, and for this we use Grafana.


Add Grafana

Update your docker compose file with another service:

global:
  scrape_interval: 15s
  evaluation_interval: 15s

scrape_configs:
  - job_name: 'spring-boot-app'
    metrics_path: '/actuator/prometheus'
    static_configs:
      - targets:
          - 'spring-server-1:8080'
          - 'spring-server-2:8080'
        labels:
          environment: development
          application: spring-boot

Now you can access grafana dashboard on http://localhost:3000

First they will ask your credentials, just write admin for user and password.

Configure Prometheus

On the left up menu, go to connections > add new connection and search for Prometheus

Configure the connection url like this:

Building Observability and Monitoring for Modern Applications with Actuator, Prometheus and Grafana

Configure Prometheus on Grafana

Click on the button save & test, if everything is fine you can start choose your dashboard.

Dashboards

Go to Grafana Dashboards and choose a dashboard for you.

For this, I choose the Spring Boot Resilience4j Circuit Breaker (3.x)

If everything works fine you will see something like this:

Building Observability and Monitoring for Modern Applications with Actuator, Prometheus and Grafana

Graphs of circuit breaker

Feel free to browse other dashboards.


Final Words

By integrating Actuator, Prometheus, and Grafana into our application, we’ve taken a major step toward building a highly observable system. With metrics, logging, and monitoring in place, you’ll be able to:

  • Gain full visibility into your application and infrastructure.
  • Proactively detect and resolve issues.
  • Optimize performance and reliability.

With these tools in place, we’ll not only monitor our system effectively but also lay the foundation for scaling confidently in the future.


? Reference

  • Grafana Docs
  • Prometheus Docs

? Project Repository

  • Project Repository on Github

? Talk to me

  • LinkedIn
  • Github
  • Portfolio

The above is the detailed content of Building Observability and Monitoring for Modern Applications with Actuator, Prometheus and Grafana. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?Mar 17, 2025 pm 05:46 PM

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?Mar 17, 2025 pm 05:45 PM

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?Mar 17, 2025 pm 05:43 PM

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

How can I use Java's RMI (Remote Method Invocation) for distributed computing?How can I use Java's RMI (Remote Method Invocation) for distributed computing?Mar 11, 2025 pm 05:53 PM

This article explains Java's Remote Method Invocation (RMI) for building distributed applications. It details interface definition, implementation, registry setup, and client-side invocation, addressing challenges like network issues and security.

How do I use Java's sockets API for network communication?How do I use Java's sockets API for network communication?Mar 11, 2025 pm 05:53 PM

This article details Java's socket API for network communication, covering client-server setup, data handling, and crucial considerations like resource management, error handling, and security. It also explores performance optimization techniques, i

How can I create custom networking protocols in Java?How can I create custom networking protocols in Java?Mar 11, 2025 pm 05:52 PM

This article details creating custom Java networking protocols. It covers protocol definition (data structure, framing, error handling, versioning), implementation (using sockets), data serialization, and best practices (efficiency, security, mainta

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use