Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
Directory
user123
byuser123, February 16, 2014
To get a 3650 Stack working you have to replace the line...
my $id = ( $$result{$key} * 1000 ) + 1;
... with ...
my @key_split = split('\.', $key);
my $id = pop @key_split;
3750 will work with this change as well.
my $id = ( $$result{$key} * 1000 ) + 1;
... with ...
my @key_split = split('\.', $key);
my $id = pop @key_split;
3750 will work with this change as well.