Last active
August 29, 2015 14:15
-
-
Save djosephsen/98c0969f5b26ce885979 to your computer and use it in GitHub Desktop.
A wrapper for /bin/run-parts that works with shellbrato to capture cron jobs as annotation events in librato
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/bash | |
RP='/bin/run-parts-orig' #where's the original run-parts? | |
SHELLBRATO='/opt/shellbrato/shellbrato.sh' #where's shellbrato? | |
LBCREDS='/home/dave/librato_creds' #where are the librato creds? | |
PARENT=$(ps -ocommand= -p $PPID | awk -F/ '{print $NF}' | awk '{print $1}') | |
START=$(date -d 'now' +%s) | |
OUT=$(${RP} ${@}) | |
EXIT=${?} | |
END=$(date -d 'now' +%s) | |
if echo ${PARENT} | grep -qi 'cron' | |
then | |
if [ -f "${LBCREDS}" ] | |
then | |
source ${LBCREDS} | |
if [ -f "${SHELLBRATO}" ] | |
then | |
source ${SHELLBRATO} | |
TITLE=$(echo "${OUT}" | head -n1) | |
O=$(sendAnnotation "Cron-Runs||${TITLE}||${START}||${END}") | |
fi | |
fi | |
fi | |
echo "${OUT}" | |
exit ${EXIT} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment