Created
March 14, 2016 22:38
-
-
Save steadystatic/e7d89812b0c4fb768285 to your computer and use it in GitHub Desktop.
Monitor JBoss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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