By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View our Privacy Policy for more information.

How-to: Publish metrics with Micrometer to AWS CloudWatch

Fernando Villanueva
June 22, 2023

Introduction

In any environment it is essential to collect and have a well organized and easy way of having live stats and information in order to have control over the state and status of the running applications, specially in production. In order to do so, at Ensolvers we use a battery of resources, from traditional logging to dashboards, charts and many more.

In this tech note, we will explore how we can use Micrometer in the context of a Spring Boot application to publish metrics to AWS CloudWatch.

Problem and Solution

What is Micrometer?
Micrometer is a Java library that provides a simple way to collect metrics from your application and send them to various monitoring and alerting tools such as New Relic, Prometheus, Atlas, CloudWatch and others. On this note, we will focus on integrating with CloudWatch.

Micrometer key concepts

  • Meters: A meter is a specific type of metric that measures a particular aspect of an application, such as the number of requests received or the duration of a method call. There are different available meters in Micrometer, such as Counters, Timers, Gauges, etc. We will talk about them later.
  • Registries: A registry is a storage mechanism that stores and publishes the collected metrics. These are implemented through MeterRegistry. As stated before, there are different monitoring systems, such as CloudWatch, for which each has a different implementation.

Setting up Micrometer on Spring Boot
First, we need to add the Maven dependency:


Configure the CloudWatch registry:


Creating Meters
As mentioned before there are various types of meters for different applications. Next,  I will briefly explain the most common ones, with one example of how to use them.

  • Timer
    Measures the duration of a specific event and records the count of events that occurred during that time. For example, it could be used to measure the duration of an API call.
  • Gauge
    Measures the current value of a metric. Gauges are useful for measuring values that change frequently, such as the number of active users or the amount of free memory in the JVM.
  • Counter
    Measures the count of events that occur over time. Counters are typically used to track the number of requests to an API or the number of errors that occurred during a specific period.

Example of how to use a Micrometer Counter


Now we instantiate a counter in charge of counting API calls from external integrations by integration type:


Or we could count the number of products by sale by integration type:

View Metrics

Now that we have collected metrics from different sources, such as application-level, JVM or even custom defined metrics, Micrometer will aggregate these metrics so that they are compatible with the chosen monitoring system, in our case CloudWatch. Next, it will send the aggregated metrics using the chosen monitoring system client libraries, which will store and allow us to visualize and analyze them.

Therefore, in order to watch the computed metrics on CloudWatch, once you’ve deployed your application just navigate to the console in your AWS account. Under "Metrics", you should see a list of custom metrics, including the ones you've defined in your application. You can create alarms and dashboards to monitor these metrics. It's important to note that Micrometer takes care of collecting and pushing metrics to CloudWatch or any other monitoring/observation service.

Conclusion

Micrometer is a powerful tool for collecting and publishing application metrics. In this document we covered how to publish custom metrics from a Spring application to Cloudwatch just by following a few steps, in order to gain insights into the performance and behavior of your applications. Moreover, by using Micrometer, we have the flexibility to publish those metrics to other analytics/monitoring services just by adding new strategies and we don't have to care about data sync'ing, which really simplifies the metric setup, configuration and provisioning.

Interested in our services?
Please book a call now.