1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

assp-message-statistics: fix typo

Closes #167
This commit is contained in:
Steve Schnepp 2013-09-04 18:28:30 +02:00
parent 211ec3afdb
commit 2e2cfafeca

View file

@ -31,7 +31,7 @@ my $agentname = "$pluginname Munin Plugin V$version"; # UA String
my $url = "http://localhost:55553/"; # (defaults to localhost) my $url = "http://localhost:55553/"; # (defaults to localhost)
my $response = 0; # the server output my $response = 0; # the server output
my @content = (); # the content we're retrive from $response my @content = (); # the content we're retrive from $response
my %index # for Version 2 my %index = ( # for Version 2
'from' => 66, # <-- index frame from ( a tweak for other ASSP Versions ) 'from' => 66, # <-- index frame from ( a tweak for other ASSP Versions )
'to' => 100 # <-- index frame to ( "" ) 'to' => 100 # <-- index frame to ( "" )
); );