Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Kafka Offset Monitor

This is an app to monitor your kafka consumers and their position (offset) in the log.

New feature! Support Kafka 1.0 version.

You can see the current consumer groups, for each group the topics that they are consuming and the position of the group in each topic log. This is useful to understand how quick you are consuming from a log and how fast the log is growing. It allows for debuging kafka producers and consumers or just to have an idea of what is going on in your system.

The app keeps a history of log position and lag of the consumers so you can have an overview of what has happened in the last days. The amount of history to keep is definable at runtime.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ libraryDependencies ++= Seq(
"net.databinder" %% "unfiltered-jetty" % "0.8.4",
"net.databinder" %% "unfiltered-json4s" % "0.8.4",
"com.quantifind" %% "sumac" % "0.3.0",
"org.apache.kafka" %% "kafka" % "0.9.0.1",
"org.apache.kafka" %% "kafka" % "1.1.0",
"org.reflections" % "reflections" % "0.9.11",
"com.twitter" %% "util-core" % "7.1.0",
"com.typesafe.slick" %% "slick" % "2.1.0",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/offsetapp/css/bootstrap.min.css

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions src/main/resources/offsetapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
<title>Kafka Consumer Offset Monitor</title>

<!-- Bootstrap core CSS -->
<link href="//netdna.bootstrapcdn.com/bootswatch/3.0.3/slate/bootstrap.min.css" rel="stylesheet">
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
<link href="./css/cluster-viz.css" rel="stylesheet">

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular-route.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular-resource.js"></script>
<script src="./scripts/angular.js"></script>
<script src="./scripts/angular-route.js"></script>
<script src="./scripts/angular-resource.js"></script>

<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<script src="./scripts/html5shiv.js"></script>
<script src="./scripts/respond.min.js"></script>
<![endif]-->

</head>
Expand Down Expand Up @@ -66,12 +66,12 @@
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.5.1/moment.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script src="//code.highcharts.com/stock/highstock.js"></script>
<script src="//code.highcharts.com/stock/modules/exporting.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script>
<script src="./scripts/jquery-3.6.0.min.js"></script>
<script src="./scripts/moment.min.js"></script>
<script src="./scripts/bootstrap.min.js"></script>
<script src="./scripts/highstock.js"></script>
<script src="./scripts/exporting.js"></script>
<script src="./scripts/lodash.min.js"></script>
<script src="./scripts/d3.v3.min.js"></script>
<script src="./scripts/directives.js"></script>
<script src="./scripts/controllers.js"></script>
Expand Down
Loading