1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-09 15:33:49 +00:00

Leftover from migration

This commit is contained in:
Various 2011-12-18 15:11:52 +01:00 committed by Steve Schnepp
parent b6fb15597c
commit 51ee702d81
10 changed files with 635 additions and 41 deletions

View file

@ -71,6 +71,10 @@ sub get_value
sub get_l7vsadm
{
my @l7vsadm_output = `$L7VSADM`;
if ( $? ) {
exit 1;
}
my @lines = map { s{ \s* -> \s* }{}xms; $_ } grep /->/, @l7vsadm_output;
my $header = shift @lines;
my @header_columns = split /\s+/, $header;