Skip to content

Instantly share code, notes, and snippets.

@steadystatic
Created March 14, 2016 22:38
Show Gist options
  • Save steadystatic/e7d89812b0c4fb768285 to your computer and use it in GitHub Desktop.
Save steadystatic/e7d89812b0c4fb768285 to your computer and use it in GitHub Desktop.
Monitor JBoss
#!/bin/sh
#Script requires 'md5' and 'terminal-notifier' to be installed
JBOSS_LOG=/usr/local/opt/jboss-eap-6.4/standalone/log/server.log
#Monitors JBoss logfile for keyword, notifies
while x=0;
fileHash=$(md5 $JBOSS_LOG | cut -d "=" -f2)
sleep 1
do
checkFileHash=$(md5 $JBOSS_LOG | cut -d "=" -f2)
tail -1 $JBOSS_LOG | grep --silent 'Replaced deployment'
MatchStatus=$?
if [[ $MatchStatus -eq 0 && $fileHash != $checkFileHash ]]
then
/usr/local/bin/terminal-notifier -message "Redeployed WAR" -sound Bottle -open https://localhost:8443
fileHash=$(md5 $JBOSS_LOG | cut -d "=" -f2)
clear
else
:
fi
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment