Spring Boot

Code Execution Monitoring for Spring Boot applications

Requirements

Spring Version
Inspector Agent Version

Spring 2

0.1.0

Spring 3

1.0.0

Install on Spring 2

Add the package 0.x to your application's dependencies list in the pom.xml file:

<dependency>
    <groupId>dev.inspector</groupId>
    <artifactId>spring</artifactId>
    <version>0.1.0</version>
</dependency>

Install on Spring 3

Add the package 1.x to your application's dependencies list in the pom.xml file:

<dependency>
    <groupId>dev.inspector</groupId>
    <artifactId>spring</artifactId>
    <version>1.0.0</version>
</dependency>

Reload the maven dependencies:

mvn clean install

Configure the ingestion key

Add the following configuration to the application.properties file:

inspector.ingestion-key=81e6d4df93xxxxxxxxxxxxxxxxxxxxxxxxxx

Test & Deploy

Run an HTTP request against your application (or navigate it with a browser) to see the first data flowing into the Inspector dashboard.

By default Inspector monitors:

  • HTTP requests

  • Scheduled Tasks

  • Database Queries

  • Outgoing HTTP calls

Once verified that everything works and your application is connected, you can deploy the integration into the production environment.

Use the live chat in your dashboard if you have any questions, or schedule a meeting for further support.

Last updated