Go to file
R. Tyler Croy a444f49b46 Invoke the onDelta callbacks for zero deltas too
It turns out that datadog doesn't indicate that the delta is shrinking unless
you report a zero value.
2015-01-26 09:40:16 -08:00
gradle/wrapper Initial commit 2015-01-09 15:40:46 -08:00
src Invoke the onDelta callbacks for zero deltas too 2015-01-26 09:40:16 -08:00
.gitignore Initial commit 2015-01-09 15:40:46 -08:00
.travis.yml Add support for TravisCI 2015-01-19 11:46:57 -08:00
LICENSE.md Add the MIT license 2015-01-09 15:57:05 -08:00
README.md Add build badge 2015-01-19 11:54:28 -08:00
build.gradle Update to a newer java-statsd-client that doesn't use bleeding edge technology like String.join 2015-01-26 09:39:34 -08:00
gradle.properties Add some simple command line overrides for ZK and statsd hosts 2015-01-26 06:15:35 -08:00
gradlew Initial commit 2015-01-09 15:40:46 -08:00
gradlew.bat Initial commit 2015-01-09 15:40:46 -08:00

README.md

Verspätung

BuildStatus

Verspätung is a small utility which aims to help identify delay of Kafka consumers.

Verspätung monitors the topics and their latest offsets by talking to Kafka, it will also keep track of how far along consumers are by monitoring the offsets that they have committed to Zookeeper. Using both of these pieces of information, Verspätung computs the delta for each of the consumer groups and reports it to statsd.

Hacking

  • Running tests: ./gradlew check
  • Running the app locally: ./gradlew run -PzookeeperHosts=localhost:2181
  • Building the app for distribution: ./gradlew shadowJar