Skip to content

Commit 6f7b5c1

Browse files
committed
Update docs
1 parent 2299b74 commit 6f7b5c1

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ You can use placeholders in the arg command and fill these settings by environme
4848
args: ["-b", "$(BOOTSTRAP_SERVERS)","-m", "$(MODE)","-c", "$(CONSUMER_GROUPS)","-i", "$(POLL_INTERVAL)", "-p", "$(HTTP_PORT)"]
4949
```
5050

51+
## Changelog
52+
#### 0.0.7:
53+
- Issue #17: Now this client will show newly joined consumer groups as well **without the need to restart the client**. You should start it once and it will always refresh the consumer groups list according to the poll interval.
54+
- Kafka client updated to version 2.5.0.
55+
56+
#### 0.0.6:
57+
- Issue #8: Support configuration file as parameter
58+
- Kafka client updated to version 2.4.1.
59+
60+
5161
## Usage
5262
java -jar kafka-consumer-lag-monitoring.jar -h
5363
Usage: <main class> [-hV] [-b=<kafkaBootstrapServers>]
@@ -86,6 +96,7 @@ To learn more about the configuration that you can use here, please refer the fo
8696
Kafka AdminClient configs: https://kafka.apache.org/documentation/#adminclientconfigs
8797

8898
Kafka Consumer configs: https://kafka.apache.org/documentation/#consumerconfigs
99+
89100
### Console Mode
90101
This mode will print the consumer lag per partition and the total lag among all partitions and continuously refreshing the metrics per the value of `--poll.interval` startup parameter. Example output:
91102

@@ -160,7 +171,7 @@ and under `<dependencies>..</dependencies>`:
160171
<dependency>
161172
<groupId>com.omarsmak.kafka</groupId>
162173
<artifactId>consumer-lag-monitoring</artifactId>
163-
<version>0.0.6</version>
174+
<version>0.0.7</version>
164175
</dependency>
165176
```
166177

@@ -173,7 +184,7 @@ repositories {
173184
```
174185
and under `dependencies` the following:
175186
```
176-
compile 'com.omarsmak.kafka:consumer-lag-monitoring:0.0.6'
187+
compile 'com.omarsmak.kafka:consumer-lag-monitoring:0.0.7'
177188
178189
```
179190
**Note:** Since [bintray jcenter](https://bintray.com/bintray/jcenter) is shadowing all maven central packages, you don't need to include both.

0 commit comments

Comments
 (0)