Created
October 6, 2011 22:42
-
-
Save ripienaar/1268923 to your computer and use it in GitHub Desktop.
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
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 |
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
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