Kafka Connect Alerting Options?

后端 未结 5 637
梦谈多话
梦谈多话 2021-01-13 10:45

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

5条回答
  •  萌比男神i
    2021-01-13 11:11

    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 :/home/code/config.json gunjdesai/kafka-connect-monit

    Hope this maybe helpful to you

提交回复
热议问题