1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

spelling fixes (2nd try)

This commit is contained in:
klemens 2017-04-17 22:43:38 +02:00
parent e3169d5930
commit 8589c6df43
62 changed files with 82 additions and 72 deletions

View file

@ -34,7 +34,7 @@
# #
########################################################################
#
# multigraph, supersampling, extended cpu informations
# multigraph, supersampling, extended cpu information
#
# require: mpstat (to actually collect the data)
#

View file

@ -76,16 +76,16 @@ my $graphs =
{
'title' => 'Interrupts per cpu',
'args' => '--base 1000',
'vlabel' => 'count of IRQ (+) / sIRQ (-) per secund',
'info' => 'This graph shows interrupts per secund from last update',
'vlabel' => 'count of IRQ (+) / sIRQ (-) per second',
'info' => 'This graph shows interrupts per second from last update',
'category' => 'system'
},
'irq_cpu' =>
{
'title' => 'CPU:cpu: :irq_type:',
'args' => '--base 1000',
'vlabel' => 'count per secund',
'info' => 'This graph shows :irq_type: for CPU:cpu: per secund from last update',
'vlabel' => 'count per second',
'info' => 'This graph shows :irq_type: for CPU:cpu: per second from last update',
'category' => 'cpu :cpu:'
}
};
@ -333,7 +333,7 @@ sub prepare_graphs
$gr->{$graph_name}{'graph'}{'category'} = replace($graphs->{'irq_cpu'}{'category'}, ':cpu:', $i);
# -- child fields --
my @irq_names = keys %{$IRQi->{'stat'}{$irq_type}{$i}};
# names splitted for better sorting
# names split for better sorting
for my $irq_name ((
(sort {int $a <=> int $b} grep{/^\d/} @irq_names),
(sort grep{!/(^\d|ERR|MIS)/} @irq_names),