Kafka

Kafka

Kafka Check validates connectivity to a Kafka instance. This can check the connection to the leader instance, or try to connect to the leader via a non-leader instance.
This module support is beta. No authentication scheme is currently supported

Usage with Binary

./wait4it -type=kafka -h=127.0.0.1 -p=9092 -kafka-connect-to-leader-via-non-leader=false -t=60

Usage with Docker

docker run ph4r5h4d/wait4it -type=kafka -h=127.0.0.1 -p=9092 -kafka-connect-to-leader-via-non-leader=false -t=60

Environment Variables

VariableDescriptionDefault
W4IT_TYPEThe type of check (set to kafka for Kafka check).-
W4IT_TIMEOUTTimeout in seconds.30
W4IT_HOSTThe host to check.127.0.0.1
W4IT_PORTThe port to check on the Kafka host.9092
W4IT_KAFKA_CONNECTION_TYPEThe connection type toward Kafkatcp
W4IT_KAFKA_CONNECT_TO_LEADER_VIA_NON_LEADERWhether to try to connect to a leader via a non-leaderfalse

Command-Line Arguments

ArgumentDescriptionDefault
-typeThe type of check (set to kafka for Kafka check).-
-tTimeout in seconds.30
-hThe host to check.127.0.0.1
-pThe port to check on the Kafka host.9092
-kafka-connection-typeThe connection type toward Kafkatcp
-kafka-connect-to-leader-via-non-leaderWhether to try to connect to a leader via a non-leaderfalse

Notes

ℹ️
  • Environment variables override command-line arguments.
  • Authentication scheme is not supported yet.
  • If you have a requirement for authentication, please open an issue.

Exit Codes

CodeMeaning
0Connection successful.
1Timed out.
2Validation error or incorrect input.