We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d4929 commit 0ed9947Copy full SHA for 0ed9947
vagrant/templates/controlscript/kafka-control.sh.j2
@@ -110,8 +110,11 @@ case "${1:-''}" in
110
su -l {{ kafka_username }} -c 'curl -s http://127.0.0.1:8083/connector-plugins | jq '.''
111
;;
112
113
-
114
+ 'get-topics')
+ echo "Get topics..."
115
+ echo ""
116
+ su -l {{ kafka_username }} -c 'curl -s http://127.0.0.1:8082/topics | jq '.''
117
+ ;;
118
119
120
@@ -144,6 +147,8 @@ case "${1:-''}" in
144
147
echo ""
145
148
echo "check-rest-api : Check if the REST API is functioning."
146
149
echo "check-connector-plugins : Check which connector plugins are available."
150
151
+ echo "get-topics : Get list of topics."
152
exit 1
153
154
esac
0 commit comments