Spring Boot

Code Execution Monitoring for Spring Boot applications

Requirements

  • Java 11

  • Spring Boot 3.x

Installation

Inspector ships as a simple package distributed through the Maven Central repository.

You just need to add the package to your application's dependencies list in the pom.xml file:

<dependency>
    <groupId>dev.inspector</groupId>
    <artifactId>spring</artifactId>
    <version>0.0.2</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

Run am HTTP request against your application to see the first data flowing into the dashboard.

Last updated