Skip to content

Instantly share code, notes, and snippets.

@bennythejudge
Forked from dch/gist:4148379
Created November 5, 2015 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bennythejudge/cdeaa9a920295e28b8e5 to your computer and use it in GitHub Desktop.
Save bennythejudge/cdeaa9a920295e28b8e5 to your computer and use it in GitHub Desktop.
graphite internal performance
Carbon relay - performance
alias(color(sumSeries(group(carbon.agents.*.updateOperations)), "blue"),"Updates")
alias(color(sumSeries(group(carbon.agents.*.metricsReceived)), "green"), "Metrics Received")
alias(color(sumSeries(group(carbon.agents.*.committedPoints)),"orange"),"Committed Points"))
alias(secondYAxis(color(sumSeries(group(carbon.agents.*.pointsPerUpdate)),"yellow")),"PPU")
alias(secondYAxis(color(averageSeries(group(carbon.agents.*.cpuUsage)),"red")),"CPU (avg)")
alias(secondYAxis(color(sumSeries(group(carbon.agents.*.creates)),"purple")),"Creates")
Metrics received
carbon.agents.*.metricsReceived
Received vs committed
sumSeries(carbon.relays.*.metricsReceived)
sumSeries(carbon.agents.*.metricsReceived)
sumSeries(carbon.agents.*.committedPoints)
Capture inbound packets
... What ever your using...
nonNegativeDerivative(stats.collectd.metrics-relay_cloud_photobox_com.interface.if_octets-lo.*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment