mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Fix syntax error in string concatenation
This commit is contained in:
parent
d2e7329590
commit
a2bedd79e7
@ -63,7 +63,7 @@ if(defined($ARGV[0])) {
|
||||
print "graph_total Total\n";
|
||||
print "graph_vlabel Bits\n";
|
||||
print "graph_category $server\n";
|
||||
print "graph_info This graph show $server total bandwidth used by various "\
|
||||
print "graph_info This graph show $server total bandwidth used by various " .
|
||||
"projects.\n";
|
||||
while ((my $project, my @files) = each(%logs)) {
|
||||
print $project.".label $project\n";
|
||||
|
@ -60,7 +60,7 @@ if(defined($ARGV[0])) {
|
||||
print "graph_args --base 1000\n";
|
||||
print "graph_vlabel bits per \${graph_period} in (-) / out (+)\n";
|
||||
print "graph_category $server\n";
|
||||
print "graph_info This graph show $server in/out bandwidth used by various"\
|
||||
print "graph_info This graph show $server in/out bandwidth used by various" .
|
||||
" projects.\n";
|
||||
while ((my $project, my @files) = each(%logs)) {
|
||||
print "i".$project.".label $project\n";
|
||||
|
Loading…
Reference in New Issue
Block a user