This package provides a DropwizardReporter
class that connects the
built-in metrics maintained by Kafka's client libraries with
Dropwizard Metrics 3.0+.
The Kafka metrics are added as Gauge
instances to a Dropwizard
MetricRegistry
instance.
If you're already using Dropwizard Metrics in your application to serve metrics via HTTP, Graphite, StatsD, etc., this reporter provides an easy bridge to pass Kafka consumer, producer, and streams metrics to those same outputs.
dropwizard-metrics
3.0 and above.
kafka-clients
0.8.1 and above, including 0.9, 0.10, 0.11, and 1.0.
Also functions with Kafka Streams and Kafka Connect.
First, declare a dependency on this package and on the explicit versions of the dependencies that you want:
<dependency>
<groupId>com.simple</groupId>
<artifactId>kafka-dropwizard-reporter</artifactId>
<version>1.1.1</version>
</dependency>
<!-- Required; you must provide metrics-core and kafka-clients;
versions can be more recent than those shown below -->
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>3.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>0.9.0.1</version>
<scope>provided</scope>
</dependency>
<!-- Optional; the user is expected to specify this dependency
explicitly if DropwizardReporterGraphite is to be used -->
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-graphite</artifactId>
<version>3.1.2</version>
<scope>provided</scope>
</dependency>
Then, include the DropwizardReporter
class in the properties you pass
to producers, consumers, and KafkaStreams
applications:
metric.reporters=com.simple.metrics.kafka.DropwizardReporter
That client will now automatically register all of its built-in
metrics with a Dropwizard MetricRegistry
when it's initialized.
The registry is discovered by calling
SharedMetricRegistries.getOrCreate("default")
,
so to direct DropwizardReporter
to a particular registry, make
sure to call SharedMetricRegistries.add("default", myRegistry)
before instantiating Kafka clients if you want metrics to belong
to myRegistry
.
For a full example of integrating Kafka client metrics in a Dropwizard application, see example/.
If your application is not already handling reporting of metrics to an external
source, you can use com.simple.metrics.kafka.DropwizardReporterGraphite
which adds instantiation of a GraphiteReporter
.
Make sure you've declared a dependency on metrics-graphite
, then
see Configuration below.
The following configuration options are available:
Name | Description | Type | Default | Valid Values | Importance |
---|---|---|---|---|---|
metric.dropwizard.graphite.host | Destination host for the GraphiteReporter (default: localhost); only relevant for DropwizardReporterGraphite | string | localhost | low | |
metric.dropwizard.graphite.port | Destination port for the GraphiteReporter (default: 2003); only relevant for DropwizardReporterGraphite | int | 2003 | low | |
metric.dropwizard.graphite.prefix | Metric prefix for metrics published by the GraphiteReporter; only relevant for DropwizardReporterGraphite | string | "" | low | |
metric.dropwizard.registry | Name of the dropwizard-metrics registry to use; passed to SharedMetricRegistries.getOrCreate | string | default | low |
If you'd like to send Kafka metrics to a separate MetricRegistry
instance,
you can pass a name as metric.dropwizard.registry
when configuring the client.
For example, the following would end up calling
SharedMetricRegistries.getOrCreate("kafka-metrics")
:
metric.reporters=com.simple.metrics.kafka.DropwizardReporter
metric.dropwizard.registry=kafka-metrics
A configuration using Graphite reporting could be:
metric.reporters=com.simple.metrics.kafka.DropwizardGraphiteReporter
metric.dropwizard.graphite.host=localhost
metric.dropwizard.graphite.port=2003
metric.dropwizard.graphite.prefix=mycompany.myproject
Note that usage of these configuration options might trigger warning messages like
org.apache.kafka.clients.consumer.ConsumerConfig: The configuration metric.dropwizard.registry = kafka-metrics was supplied but isn't a known config.
due to a bug in Kafka's configuration machinery present until at least version 0.10.0.0.
This was addressed in KAFKA-3711.
To build the project, you'll need to install Apache Maven 3. If you're on Mac OS X, you can install Maven via Homebrew:
$ brew install maven
Once that's installed, run the following from main directory
(where pom.xml
lives):
mvn clean install
To deploy to Maven Central, you'll need to provide GPG signatures for all
the artifacts. There's a sign
profile for this purpose:
mvn clean verify -Psign
Check that the output looks good. You should a jar, sources, javadoc, and pom,
each with a signed .asc
companion:
$ ls target/kafka-*
target/kafka-dropwizard-reporter-1.1.1-javadoc.jar target/kafka-dropwizard-reporter-1.1.1.jar
target/kafka-dropwizard-reporter-1.1.1-javadoc.jar.asc target/kafka-dropwizard-reporter-1.1.1.jar.asc
target/kafka-dropwizard-reporter-1.1.1-sources.jar target/kafka-dropwizard-reporter-1.1.1.pom
target/kafka-dropwizard-reporter-1.1.1-sources.jar.asc target/kafka-dropwizard-reporter-1.1.1.pom.asc
If the target
directory looks good, deploy:
mvn deploy -Psign
You'll need to have an account with Maven Central as part of the com.simple
group. Contact the project maintainer for more info.
Visit https://oss.sonatype.org/index.html#stagingRepositories
and close the new staging repository (named something like comsimple-XXXX
).
Wait a few minutes, then select the repo again and "Release" it.
If there is no "Release" button, something is wrong with your artifacts,
or they haven't been closed out yet.
Once released, it will take some time for Maven Central to sync and for the artifact to be available.
Contributions, feature requests, and bug reports are all welcome. Feel free to submit an issue or submit a pull request to this repo.
Check the releases page for summaries of what has changed in each release.
This project takes significant inspiration from the GraphiteReporter
class
defined in apakulov/kafka-graphite.