Skip to content

Instantly share code, notes, and snippets.

@mattcuk
Created April 3, 2020 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattcuk/37d6e61b622f9ec17785b482dcbacfc7 to your computer and use it in GitHub Desktop.
Save mattcuk/37d6e61b622f9ec17785b482dcbacfc7 to your computer and use it in GitHub Desktop.
List the Azure Logic Apps which don't have an Alert set up against them
echo Finding what Alerts exist already ...
./listAlertIds.sh > listAlertIds.tmp
echo Finding what Logic Apps exist ...
./listLogicApps.sh > listLogicApps.tmp
echo Logic Apps without an Alert are ...
comm -23 <(sort -u ./listLogicApps.tmp) <(sort -u ./listAlertIds.tmp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment