Skip to content

Instantly share code, notes, and snippets.

@ripienaar
Created October 6, 2011 22:42
Show Gist options
  • Save ripienaar/1268923 to your computer and use it in GitHub Desktop.
Save ripienaar/1268923 to your computer and use it in GitHub Desktop.
title "CPU IRQ Usage"
vtitle "percent"
area :stacked
service :munin, :cpu do
field :irq, :derivative => true,
:scale => 0.001,
:color => "red",
:alias => "IRQ"
field :softirq, :derivative => true,
:scale => 0.001,
:color => "yellow",
:alias => "Batched IRQ"
end
title "CPU Usage"
vtitle "percent"
area :stacked
service :munin, :cpu do
field :iowait, :derivative => true,
:scale => 0.001,
:color => "red",
:alias => "IO Wait"
field :system, :derivative => true,
:scale => 0.001,
:color => "orange",
:alias => "System"
field :user, :derivative => true,
:scale => 0.001,
:color => "yellow",
:alias => "User"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment