Skip to content

Instantly share code, notes, and snippets.

@djosephsen
Last active August 29, 2015 14:15
Show Gist options
  • Save djosephsen/98c0969f5b26ce885979 to your computer and use it in GitHub Desktop.
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
#!/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