Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring Boot production monitoring

Spring Boot Actuator exposes a lot of metrics and information of the deployed container. However, production operations guys probably don't want to stare at pure JSON objects on their browser :)

What would be good "standard" tools for monitoring this in production? This would include graphs, triggers for alerts, etc.

like image 286
user1340582 Avatar asked Dec 10 '22 18:12

user1340582


1 Answers

The spring-boot-admin project is also a great monitoring tool that your production support guys may be interested in. It doesn't process and graph the metrics at all like graphite+grafana, but it is a great simple tool to setup and use to see the state of all of your running spring-boot applications.

https://github.com/codecentric/spring-boot-admin

like image 157
Kevin Gaasch Avatar answered Dec 13 '22 08:12

Kevin Gaasch