Spring/Java Application Monitoring Basics - Part 1
Let's check why spring uses micrometer jar for monitoring using http request counter example.
Jan 25, 20245 min read29

Search for a command to run...
Series
In this series, we will have the list of blogs which covers steps to set up observability like prometheus and other telemetry tools in developer environment and their integrations.
Let's check why spring uses micrometer jar for monitoring using http request counter example.

Let's set up Prometheus and Grafana in dev environment.

Enable Prometheus monitoring for Spring Boot Application and visualise it

Enable prometheus metrics in Go application I assume you have Go web application ready to use for this project. If not, please use the below file (main.go) to start the go application. package main import ( "fmt" "log" "net/http" ) func...
