Home Directory

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Directory

dschramm

Reviews(1)
bydschramm, June 7, 2016
check_emc_clariion.pl maintained by BuddhaBob74
The plugin command "cache" doesn't seem to work (any more?) with VNX 5200: "Error: getcache command failed"

As a quick hack, I added an option
'T=s' => \$opt_vnx_type,
in the global section and a variable/condition in the sub check_cache:
> my $naviclicmd = "getcache";
> if ($opt_vnx_type =~ m/VNX5200/i) { $naviclicmd = "cache -sp -info"; }
> open (NAVICLIOUT ,"$NAVICLI_CMD -h $opt_host $naviclicmd |");

Now we can use it with both VNX types 5200 and 5300.