Taking a guess at the issue maybe your login info isn't correct in $ZENHOME/etc/zenperfsnmp.conf??

-EAD

On Jul 20, 2006, at 5:04 PM, Eric Newton wrote:

Jeff,

There is a bug in the version that you are using that prevents you from getting a good error message. If you can apply the attached patch:

   $ cd $ZENHOME/Products/ZenUtils
   $ patch -p0 < /tmp/patch

And then re-run zenperfsnmp, we'll have a better chance of figuring this out. Thanks!

-Eric


Jeff Stark wrote:
Absolutely:

DEBUG:zen.zenperfsnmp:Gathering performance data for <mydevicename>
ERROR: zen.zenperfsnmp:Error: Traceback (most recent call last):
Failure: exceptions.AttributeError: Failure Instance has no attribute
'__len__'

Thanks!

Jeff Stark, Sr. Implementation Consultant SumTotal Systems, Inc. (Nasdaq; SUMT)

OFFICE    +1 919 326 7548
MOBILE  +1 919 622 0418

EMAIL     [EMAIL PROTECTED]


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Erik A. Dahl
Sent: Thursday, July 20, 2006 3:57 PM
To: General discussion of using zenoss system
Subject: Re: [zenoss-users] Perf tab for Windows Servers

Can you do a run against the problem box with zenperfsnmp?

zenperfsnmp run -d YOURDEVICE -v10

and send the output

-EAD

On Jul 20, 2006, at 2:51 PM, Jeff Stark wrote:


OK, so I did this installation, but I still have the same results.

Any other thoughts? Do I need to rediscover the device?



Jeff Stark, Sr. Implementation Consultant SumTotal Systems, Inc. (Nasdaq; SUMT)


OFFICE    +1 919 326 7548
MOBILE  +1 919 622 0418

EMAIL     [EMAIL PROTECTED]



-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Erik A. Dahl
Sent: Thursday, July 20, 2006 11:43 AM
To: General discussion of using zenoss system
Subject: Re: [zenoss-users] Perf tab for Windows Servers

You need to install the free version of snmp-informant on your boxes.

http://www.snmp-informant.com

I will add this to the FAQ.

-EAD

On Jul 20, 2006, at 10:19 AM, Jeff Stark wrote:


Hello, can anyone provide any assistance on why my Perf tab would not show graphs, only image not found icons (X) ?

Any assistance is greatly appreciated.


Jeff Stark, Sr. Implementation Consultant SumTotal Systems, Inc.
(Nasdaq; SUMT)
OFFICE    +1 919 326 7548
MOBILE  +1 919 622 0418
EMAIL     [EMAIL PROTECTED]


Index: Driver.py
===================================================================
--- Driver.py   (revision 1848)
+++ Driver.py   (working copy)
@@ -44,8 +44,11 @@

     def next(self):
         "Provide the result of the iterable as a value or exception"
-        if isinstance(self.result, Exception):
-            raise self.result
+        ex = self.result
+        if isinstance(self.result, failure.Failure):
+            ex = self.result.value
+        if isinstance(ex, Exception):
+            raise ex
         return self.result

     def _finish(self, result):
_______________________________________________
zenoss-users mailing list
zenoss-users@zenoss.org
http://lists.zenoss.org/mailman/listinfo/zenoss-users

_______________________________________________
zenoss-users mailing list
zenoss-users@zenoss.org
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to