multiple kafka-manager to one kafka-cluster
Just wanted to know if there is any problem when using multiple kafka-manager monitor the same kafka cluster,and the cluster name in kafka-manager is also the same one.
Some consumer group details may not see.
I have no problem with this.
What is this "cluster name" of which you speak? My cluster list is blank in the kafka-manager UI on port 9000.
If offset save in the broker, some consumer group details may not see, because they use the same grou.id in the createKafkaConsumerConnector function in the KafkaStateActor.scala.
props.put("group.id", "KafkaManagerOffsetCache") => props.put("group.id", "KafkaManagerOffsetCache" + java.util.UUID.randomUUID.toString)
Is it still actual?