Skip to content

Instantly share code, notes, and snippets.

@dollschasingmen
Created December 28, 2016 23:56
Show Gist options
  • Save dollschasingmen/0990b625e0a03dce2587e0d7d482a0c2 to your computer and use it in GitHub Desktop.
Save dollschasingmen/0990b625e0a03dce2587e0d7d482a0c2 to your computer and use it in GitHub Desktop.
#!/bin/bash -e
echo "checking kafka avro production at https://kafka-connect-avro.lumoslabs.com ... "
curl -X GET -i https://kafka-connect-avro.lumoslabs.com
echo ""
echo " ---------- "
echo "checking kafka avro staging at https://kafka-connect-staging-avro.lumoslabs.com ... "
curl -X GET -i https://kafka-connect-staging-avro.lumoslabs.com
echo ""
echo " ---------- "
echo "checking schema registry production at https://schema-registry.lumoslabs.com/subjects ..."
curl -X GET -i https://schema-registry.lumoslabs.com/subjects
echo ""
echo " ---------- "
echo "checking schema registry staging at https://schema-registry-staging.lumoslabs.com/subjects ..."
curl -X GET -i https://schema-registry-staging.lumoslabs.com/subjects
echo ""
echo " ---------- "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment