Saturday, November 16, 2024
Google search engine
HomeLanguagesJavaSpring Boot Actuator

Spring Boot Actuator

The Spring Framework is the most used platform which was released in October 2002 for building effective and efficient web-based applications. On top of it, the Spring Boot framework was released in April 2014 to overcome the cumbersome effort of manual configuration. The main moto of Spring Boot was to achieve the Auto-Configuration feature. With the help of this and other features, we are able to create a stand-alone Spring web application. Developing and Managing an application are the two most important aspects of the application’s life cycle. It is very crucial to know what’s going on beneath the application. Also when we push the application on production, managing it gradually becomes critically important. Therefore, it is always recommended to monitor the application both while at the development phase and at the production phase. 

Advantages of Monitoring/Managing the Application

  1. It increases customer satisfaction.
  2. It reduces downtime.
  3. It boosts productivity.
  4. It improves Cybersecurity Management.
  5. It increases the conversion rate.

Spring Boot – Actuator

  • With the help of Spring Boot, we can achieve the above objectives.
  • Spring Boot’s ‘Actuator’ dependency is used to monitor and manage the Spring web application.
  • We can use it to monitor and manage the application with the help of HTTP endpoints or with the JMX.
Working of the Spring's Actuator

Working of the Spring’s Actuator

To use the ‘Actuator’ add the following dependency in your application’s project build.

Maven -> pom.xml

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
</dependencies>
Gradle -> build.gradle

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
Project Structure - Maven

Project Structure – Maven

pom.xml (Configuration of the Web Application)

XML




<?xml version="1.0" encoding="UTF-8"?>
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
                             https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.4</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>sia</groupId>
    <artifactId>GFG-ACTUATOR</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>GFG-ACTUATOR</name>
    <description>Spring Boot Starter Actuator</description>
    <properties>
        <java.version>11</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
  
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
  
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>


GfgActuatorApplication.java (Bootstrapping of the application)

Java




package gfg;
  
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
  
@SpringBootApplication
public class GfgActuatorApplication {
  
    public static void main(String[] args)
    {
        SpringApplication.run(GfgActuatorApplication.class,
                              args);
    }
}


UserEntity.java (Entity class representing the model data)

  • This class acts as a simple java bean whose properties are returned as JSON response by the REST API’s get() method.
  • ‘Lombok’ library is used to generate GETTER/SETTER methods automatically at runtime using ‘@Data‘ annotation.
  • @RequiredArgsConstructor‘ annotation is used to generate a zero-argument constructor and if final or ‘@NonNull’ fields are present, then respective arguments constructor is created.
  • To add the ‘Lombok’ library in your application, add the following dependency in your application’s project build.
Maven -> pom.xml

<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <optional>true</optional>
</dependency>

‘@Component’ annotation is used so that this bean automatically gets registered in Spring’s application context.

Java




package gfg;
  
import lombok.Data;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Component;
  
@Component
@Data
@RequiredArgsConstructor
public class UserEntity {
    String id = "1";
    String name = "Darshan.G.Pawar";
    String userName = "@drash";
    String email = "drash@geek";
    String pincode = "422-009";
}


RESTfulController.java (A REST API controller)

This controller’s get() method uses the UserEntity bean to return JSON response. UserEntiy bean is outsourced through ‘@Autowired‘ annotation which was registered in Spring’s application context.

Java




package gfg;
  
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
  
@RestController
@RequestMapping("/get")
public class RESTfulController {
  
    @Autowired
    UserEntity entity;
    
    @GetMapping("/data") public UserEntity getEntity()
    {
        return entity;
    }
}


Output:

Here, the JSON Formatter Chrome extension is used to automatically parse the JSON body. Further, it will be required to work with ‘Actuator’.

JSON response returned by REST API

Working with Spring Boot Actuator

To access the ‘Actuator’ services, you will have to use the HTTP endpoint as it becomes reliable to work with. The default endpoint is ‘/actuator’.

Example:

You can also change the default endpoint by adding the following in the application.properties file.

management.endpoints.web.base-path=/details

You can click on these above links and see the respective information. Additionally, you can activate other Actuator IDs and use them after ‘/actuator’ to see more information. For example, ‘health’ ID is activated by default. Therefore you can click the link in the image or directly use ‘http://localhost:8080/actuator/health’.

The health of an application

‘UP’ means the application’s health is good. There are a total of 25 IDs out of which the commonly used are listed out here –

ID                              

Description                                                                                                                                                                 

beans Displays a complete list of all the Spring beans in your application.
caches  Exposes available caches.
conditions Shows the conditions that were evaluated on configuration and auto-configuration classes and the reasons why they did or did not match.
health Shows application health information.
httptrace Displays HTTP trace information (by default, the last 100 HTTP request-response exchanges). Requires an HttpTraceRepository bean.
loggers Shows and modifies the configuration of loggers in the application.
mappings Displays a collated list of all @RequestMapping paths.
sessions Allows retrieval and deletion of user sessions from a Spring Session-backed session store. Requires a servlet-based web application that uses Spring Session.
threaddump Performs a thread dump.

Accessing ‘beans’ ID of the above project

Accessing ‘mappings’ ID of the above project

Including IDs/Endpoints

By default, all IDs are set to false except for ‘health’. To include an ID, use the following property in the application.properties file.

management.endpoint.<id>.enabled

Example -> management.endpoint.metrics.enabled=true

OR, you can just list down all IDs that you want to include which are separated by a comma.

management.endpoints.web.exposure.include=metrics,info

This will include only metrics and info IDs and will exclude all others (‘health’ too). To add/include all ID information about your application, you can do it in the application.properties file by simply adding the following –

management.endpoints.web.exposure.include=*

Output:

All the IDs or the Endpoint are now enabled

Excluding IDs/Endpoints

To exclude an ID or endpoint, use the following property and list out the respective IDs separated by a comma in the application.properties file.

management.endpoints.web.exposure.exclude

Example -> management.endpoints.web.exposure.exclude=info

Use ‘*’ in place of IDs in property to exclude all the IDs or endpoints.

Notes: 

  1. Before setting the management.endpoints.web.exposure.include, ensure that the exposed actuators do not contain sensitive information.
  2. They should be secured by placing them behind a firewall or are secured by something like Spring Security.
Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments