Dropwizard is part Java framework and part Java library that assists in operating web services. Dropwizard will take your web application and run it locally, recording metrics on its performance. You can integrate with Dropwizard via our custom Dropwizard Metrics Library to send these metrics to a StatsD server, which you can then forward to CloudWisdom.
<dependency>
<groupId>com.netuitive</groupId>
<artifactId>dropwizard-metrics</artifactId>
<version>1.0.0</version>
<type>pom</type>
</dependency>
3. Add the following to your Dropwizard config.yml file:
metrics:
frequency: 1 minute
reporters:
- type: metricly
host: metricly-agent
port: 8125