How to do it...

With Graphite and Grafana up and running, we are now ready to start configuring our application in order to send the metrics to the Graphite listener on port 2003. To do this, we will use the Codahale/Dropwizard metrics library, which is fully supported by Spring Boot and thus requires a minimum amount of configuration:

  1. The first thing on our list is to add the necessary library dependencies. Extend the dependencies block in the build.gradle file with the following content:
compile("io.micrometer:micrometer-registry-graphite:latest.release") 
  1. Create a file named MonitoringConfiguration.java in the src/main/java/com/example/bookpub directory at the root of our project with the following content:
@Configuration @ConditionalOnClass(GraphiteMeterRegistry.class) ...

Get Developing Java Applications with Spring and Spring Boot now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.