Created
March 2, 2014 07:21
-
-
Save pal/9303147 to your computer and use it in GitHub Desktop.
Some Graphite code
This file contains hidden or 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
# Good tips here! | |
# http://obfuscurity.com/2012/04/Unhelpful-Graphite-Tip-1 | |
# graph recent deploys (green = good, red = ouch) | |
drawAsInfinite(color(jenkins.builds.*.success.duration,"green")) | |
drawAsInfinite(color(jenkins.builds.*.failure.duration,"red")) | |
# How many successful/failed builds / day? | |
color(summarize(sumSeries(group(jenkins.builds.*.success)), "1d"),"green") | |
color(summarize(sumSeries(group(jenkins.builds.*.failure)), "1d"),"red") | |
alias(color(summarize(sum(group(jenkins.builds.*.success.duration:obvs)), "1h"),"green"),"Time spent on good builds") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment