Are there any alerting options for scenarios where a Kafka Connect Connector or a Connector task fails or experiences errors?
We have Kafka Connect running, it runs
I know that this is a really old question, so when we ran into a similar issue as we use Kafka Connect really heavily, and as its very difficult to individually monitor each connectors especially when you are looking at managing more than 150+ connectors.
Hence we have written a small Kotlin based application, which accepts a config.json
where you can specify the cluster config and if smtp config is specified, it will keep on polling the cluster based on a specified recursion interval specified and will send mail based alerts.
If it fits your use-case, please do use and do raise issues in-case you face any.
The link to the repo is as follows: https://github.com/gunjdesai/kafka-connect-monit
The image is also pushed on Docker Hub and you run it directly using the following command.
docker run -d -v
Hope this maybe helpful to you