Reputation: 2610
We installed the docker confluent control center as the following
$ docker run -d \
--name=control-center \
--net=confluent \
--ulimit nofile=16384:16384 \
-p 9021:9021 \
-v /tmp/control-center/data:/var/lib/confluent-control-center \
-e CONTROL_CENTER_ZOOKEEPER_CONNECT=zookeeper:2181 \
-e CONTROL_CENTER_BOOTSTRAP_SERVERS=kafka:9092 \
-e CONTROL_CENTER_REPLICATION_FACTOR=1 \
-e CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS=1 \
-e CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS=1 \
-e CONTROL_CENTER_STREAMS_NUM_STREAM_THREADS=2 \
-e CONTROL_CENTER_CONNECT_CLUSTER=http://kafka-connect:8082 \
confluentinc/cp-enterprise-control-center:5.0.0
after installation:
# docker-compose ps
Name Command State Ports
-------------------------------------------------------------------------------------------------------------------
control-center /etc/confluent/docker/run Up 0.0.0.0:9021->9021/tcp
Reference:
https://docs.confluent.io/5.0.0/installation/docker/docs/installation/single-node-client.html
https://docs.confluent.io/3.2.0/cp-docker-images/docs/intro.html
Confluent Control Center is a web-based tool for managing and monitoring Apache Kafka. This portion of the quick start provides an overview of how to use Confluent Control Center with console producers and consumers to monitor consumption and latency
But the problem is - cp-enterprise-control-center
need license and not free tool
My question is , since Control center is important for managing and monitoring , we want to understand if we can use somewhere control-center that isn’t enterprise and free
example of the confluent control center view
Upvotes: 2
Views: 8387
Reputation: 2568
Kafka Confluent Control Centre is not available as free . Trial version is available for one month. There is other product called lenses , you can also check that.
Upvotes: 3