Reputation: 16272
Confluent Control Center seems to be modular, but I haven't found any documentation on how one might build their own plugin for custom management of Kafka. Is Control Center extensible and is there any public documentation, articles, etc. that serve as a guide to building a new component?
Upvotes: 0
Views: 85
Reputation: 904
Confluent Control Center is part of their enterprise license, so accessing the source code it's out of the question. Also, it's not a mature enough product yet to have its own developer kit, so you can't create 3rd party components either.
You can try giving them some feedback, and maybe they will incorporate this feature at some point!
Upvotes: 1
Reputation: 191738
It is closed source, so there would be no such documentation on extending it.
Most "plugins" are supported via external REST actions (KSQL, Connect, Schema Registry browser, etc).
Thus, you could inject frontend code with something like TamperMonkey, but that is not Control Center specific.
Upvotes: 1