kafka offset monitor
下载
1
Download: https://github.com/quantifind/KafkaOffsetMonitor
安装
1
2
3
4
5[root@10 ~]# mkdir /mnt/app/kafkaoffsetmonitor
[root@10 ~]# ls -l /mnt/app/kafkaoffsetmonitor/
total 51700
-rw-r--r-- 1 root root 52937155 Mar 17 17:09 KafkaOffsetMonitor-assembly-0.2.1.jar
[root@10 ~]# chown -R wisdom.wisdom /mnt/app/kafkaoffsetmonitor启动
1
2
3
4
5
6
7
8
9
10
11
12
13[root@10 ~]# su - wisdom
[wisdom@10 ~]$ vim /mnt/app/kafkaoffsetmonitor/kafkaoffsetmonitor.sh
java -Xms512M -Xmx512M -Xss1024K -XX:PermSize=256m -XX:MaxPermSize=512m \
-cp KafkaOffsetMonitor-assembly-0.2.1.jar \
com.quantifind.kafka.offsetapp.OffsetGetterWeb \
--zk 10.0.3.65:2181 \
--port 8888 \
--refresh 10.seconds \
--retain 2.days &
[wisdom@10 ~]$ chmod +x /mnt/app/kafkaoffsetmonitor/kafkaoffsetmonitor.sh
[wisdom@10 ~]$ cd /mnt/app/kafkaoffsetmonitor/
[wisdom@10 kafkaoffsetmonitor]$ ./kafkaoffsetmonitor.sh访问
1
http://{IP}:8888