#!/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 " ---------- "