Tag: actuator
Introduction Here we will see example on creating custom endpoints in Spring Boot Actuator. There are a number of endpoints provided by Spring Boot however we may want to create a custom endpoint using Spring Boot Actuator. We have seen few examples on Spring Boot actuators: Spring Boot Actuator Example Spring Boot Actuator – Accessing…
Introduction This tutorial will show you how to access Endpoints via JMX in Spring Boot Actuator. As we know only /actuator/health and /actuator/info are accessible over HTTP protocol for security reasons. Therefore if you want to access other end points you have to access over JMX. JMX console comes with the JDK installation, so you…
Introduction Spring Boot Actuator that includes additional features to help you monitor and manage your application in production. You can monitor your application’s auditing, health, and metrics by using HTTP endpoints or with JMX. Spring Boot Actuator includes a number of built-in endpoints and lets you add your own. For example, the health endpoint provides…