cluther wrote:
> On Mar 23, 2009, at 6:30 AM, kingpin wrote:
> 
> > Zenoss does not poll interfaces status out of the box. The  
> > Zenmodeler daemon runs every 12 hours and does not create allerts.
> > 
> > If you want to collect to create alerts about interfaces you need to  
> > adapt the "ethernetCsmacd" template.  Add the "ifOperStatus" Data  
> > Source with OID 1.3.6.1.2.1.2.2.1.8.   Then create a Threshold for  
> > this data source with a max value of 1 (1 is up, 2 is down).
> > 
> > http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?local=en&translate=Translate&objectInput=ifOperStatus
> > 
> > The zenperfsnmp daemon will poll the status of every interface every  
> > 5 mins and create an event if an interface goes down.
> > 
> 
> I have a write-up on how to do just this on my community page.
> 
> http://www.zenoss.com/Members/cluther/polling-interface-status/
> _______________________________________________
> zenoss-users mailing list
> [email protected]
> http://lists.zenoss.org/mailman/listinfo/zenoss-users


if evt.summary.startswith('threshold of operational status '):
    if evt.severity > 0:
        evt.summary = "interface operationally down"
    else:
        evt.summary = "interface operationally up"

Chet,

Can I extend the functionality of this event transform which contains the 
component, for example "Fastethernet0/2" and combine it with the interface 
description (collected by zenmodeler) to decide whether to keep the event or 
discard it.

Thanks in advance




-------------------- m2f --------------------

Read this topic online here:
http://forums.zenoss.com/viewtopic.php?p=32761#32761

-------------------- m2f --------------------



_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to