Before moving on, please consider giving us a GitHub star ⭐️. Thank you!
- Spring Boot 3.x
Add the package to your application's dependencies list in the pom.xml
file:
<dependency>
<groupId>dev.inspector</groupId>
<artifactId>spring</artifactId>
<version>1.0.2</version>
</dependency>
Run the command below to update application dependencies.
mvn clean install
Add the following configuration to the application.properties
file:
inspector.ingestion-key=81e6d4df93xxxxxxxxxxxxxxxxxxxxxxxxxx
Currently we only support outgoing http monitoring for RestTemplate http client.
To enable http monitoring for RestTemplate you have to manually add RestTemplateMonitoringInterceptor
as an interceptor when creating your RestTemplate bean.
Check the example in the snippet below:
@Autowired
private RestTemplateMonitoringInterceptor restTemplateInterceptor;
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
return builder
.interceptors(restTemplateInterceptor)
.build();
}
Other http clients will be supported soon!!
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.
Check out the Official Documentation
At the moment only JDBC calls are being monitored. This means that interactions with relational databases are monitored, whether they are done via Spring Data or via low level JDBC API.
If you're using this library and not using Spring Data in your project please add the following line in your
application.properties
to disable Spring Boot's auto-configuration attempt of data source beans:
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
If you need further support write an email to [email protected], or drop in a live chat directly from your dashboard.