Spring Cloud Gateway Micrometer

I’ve been trying to sharpen my tools. I’m encouraged to keep going because things are coming back. I’ve got all of these new patterns to: demonstrate, practice, and deep-dive into. This time, I’m looking at metrics with Spring Boot and Micrometer. I’m also using the prometheus rsocket proxy, which is really cool. I’m using gradle this time. Lastly, I’m going to be using Spring Cloud Gateway because it checks a couple of other boxes on my list.

My plan is to setup a simple gateway instance and get some specific metrics. The application will connect to the proxy and deliver its metrics via rsocket. Then I will create a dashboard that displays those metrics in Grafana.

start.spring.io

Generate the base, create a git repo.

start.spring.io

Every time I do this, I just want to connect the dots with my own Initializer. I want to create a repo via initializer instead of downloading a zip and then creating the repo. I won’t tackle that yet.

Add a couple of dependencies

Deploy the Monitoring Tools

Only 1 tiny node in each AZ for this example.

GKE Cluster

I used GKE this time.

Prometheus Grafana and RSocket Proxy

A good friend pointed me at this project, its so easy. All of the k8s yml is right there.

The proxy, Prometheus and Grafana will all be running on a publicly addressable kubernetes cluster. Because of RSocket, I can actually run my application locally, and have Prometheus scrape the application running on my laptop.

Add some config to tell the app where to send its metrics (sort of)

application.yaml

Grab the Grafana dashboard that is packaged with the Spring Cloud Gateway documentation

It doesn’t get any better or easier than this. Grafana Dashboard JSON

The results

Summary

I like to throw away the first try, and repeat things so they stick. The second attempt took less than 10 minutes, starting from scratch.

The Repository on GitHub