Search found 15 matches

by boatrke1
Thu May 07, 2009 2:22 pm
Forum: Scripts and Templates
Topic: Monitoring performance of an HP EVA SAN
Replies: 98
Views: 138107

That's all I've done with them. Is there something you were looking for?

Kevin
by boatrke1
Mon Apr 20, 2009 8:47 am
Forum: Scripts and Templates
Topic: Monitoring performance of an HP EVA SAN
Replies: 98
Views: 138107

Download and install the CactiWMI 0.0.5 from http://www.parkingdenied.com/. Sorry, the URL was incorrect in the previous post.

Once you have the WMI configured, import the host templates and point the device to your SMA.

Kevin
by boatrke1
Fri Apr 03, 2009 10:05 am
Forum: Scripts and Templates
Topic: Monitoring performance of an HP EVA SAN
Replies: 98
Views: 138107

Here's what I have so far. It's built to monitor two EVAs though the SMA. I'm using the WMI from http://www.parkingdenied.com

The host port graph description will most likely need to be modified to match the host port names.
by boatrke1
Wed Apr 01, 2009 7:33 am
Forum: Scripts and Templates
Topic: Monitoring performance of an HP EVA SAN
Replies: 98
Views: 138107

I was using VB Scripts on windows querying the EVA Perf statistics on the SMA. You need EVAPerf installed in order to do this.

I'm currenly rebuilding to use the wmi client on linux. Hopefully I should be done by the end of the week.
by boatrke1
Wed Apr 01, 2009 6:37 am
Forum: Scripts and Templates
Topic: Monitoring performance of an HP EVA SAN
Replies: 98
Views: 138107

Do you have a EVA3K/5K or 4/6/8?
by boatrke1
Wed May 30, 2007 3:35 pm
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

ISSUE RESOLVED: I had the script output "PCT_UTILIZED:<value>" and still didn't work. That's when I changed the script but didn't change the DIM. I could manually run the script and receive a result. Evidently when the script ran with the poller it would return no result. Adding a system v...
by boatrke1
Fri May 25, 2007 11:32 am
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

DIm and DT
by boatrke1
Fri May 25, 2007 10:24 am
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

Don't really see anything else in regards to the script or host in the debug log.
by boatrke1
Thu May 24, 2007 7:15 am
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

I'm using the same account to run the script that is configured for the poller. The only other items in the log file are: 05/24/2007 07:41:10 AM - POLLER: Poller[0] CACTI2RRD: c:/rrdtool/rrdtool.exe update C:\Apache2\htdocs\Cacti\rra\tivoli_sv_3962.rrd --template SV 1180006852:U 05/24/2007 07:41:10 ...
by boatrke1
Wed May 23, 2007 2:46 pm
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

Yes, I've read through the documentation.

Think it might be an issue calling an .exe from the .cmd file?
by boatrke1
Wed May 23, 2007 12:17 pm
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

2. Here is the message in the log file using php.cmd
05/23/2007 01:15:18 PM - CMDPHP: Poller[0] Host[242] DS[3962] WARNING: Result from CMD not valid. Partial Result:
by boatrke1
Wed May 23, 2007 12:10 pm
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

1. With @echo off on the first line of the script: C:\Apache2\htdocs\Cacti\scripts\baclient>tsmcactidb.cmd 40 C:\Apache2\htdocs\Cacti\scripts\baclient> Without @echo off in the script: C:\Apache2\htdocs\Cacti\scripts\baclient>dsmadmc.exe -id=*** -pa=*** -displaymode=list select pct_utilized from db ...
by boatrke1
Wed May 23, 2007 8:58 am
Forum: Help: Windows Specific
Topic: Problems with cmd script
Replies: 13
Views: 4101

Problems with cmd script

I'm attempting to create a script to graph Tivoli Storage Mangager stats. I've created tsmcactidb.cmd file in order to query the TSM database from the cacti box: @echo off dsmadmc.exe -id=*** -pa=*** -displaymode=list select pct_utilized from db | grep 'PCT_UTILIZED'| gawk '{print $2}' The output is...
by boatrke1
Tue Oct 17, 2006 2:45 pm
Forum: Help: Windows Specific
Topic: Installing Cacti
Replies: 3
Views: 1725

Check out the Cacti Manual under Support Documentation from the main web page.
by boatrke1
Tue Oct 17, 2006 2:33 pm
Forum: Help: Windows Specific
Topic: HP EVA WMI by VBS
Replies: 1
Views: 1684

HP EVA WMI by VBS

I'm looking at graphing HP EVA port statistics on the controllers. I'm using the following vbs script: On Error Resume Next Const wbemFlagReturnImmediately = &h10 Const wbemFlagForwardOnly = &h20 arrComputers = Array("XXX") For Each strComputer In arrComputers Set objWMIService = G...