0

我有 Solaris 10 + Zenoss 2.7.0,如果没有 Oracle 许可证,我无法升级它,所以我试图找到解决方法,这就是我寻求你帮助的原因。

对于过去 5 分钟内收到的来自同一设备的任何事件,我需要防止将事件移动到History Table中,如果计数超过 5,则删除事件。

这就是我尝试做的(映射放在/Unknown/linkUp中)

try:
    import Globals
    import sys
    from Products.ZenUtils.ZenScriptBase import ZenScriptBase
except Exception as error:
    logging.error('ApplyTestZSB. Cannot import ZenScriptBase: %s\n' % error)
    sys.exit(1)

dmd = None

try:
    dmd = ZenScriptBase(connect=True).dmd
except Exception as error:
    logging.error(
        'ApplyTestDMD. Connection to zenoss dmd failed: %s\n' % error)
    sys.exit(1)

ourMessage = str(getattr(evt, "message"))
ourDevice = str(evt.device)
ourLastTime = float(evt.lastTime)
old_elements = 0

if evt.device and evt.component and evt.eventClass and evt.eventKey:
    ourDedupId = '|'.join(
        [evt.device, evt.component, evt.eventClass, evt.eventKey, ''])

for event in dmd.ZenEventManager.getEventList():
    if (event.lastTime > ourLastTime - 301) and \
        ((ourDedupId in str(event.dedupid) and event.severity > 0) or
         (ourMessage == event.message and ourDevice == event.device)):
        old_elements += event.count

if old_elements > 4:
    evt._action = 'drop'

我在 zenhub.log 中有这个错误:

2013-06-15 21:21:11 ERROR zen.Events: Error transforming EventClassInst linkUp (1)
2013-06-15 21:21:20 ERROR root: ApplyTestDMD. Connection to zenoss dmd failed: 2

2013-06-15 21:21:20 ERROR zen.Events: Error transforming EventClassInst linkUp (1)
2013-06-15 21:21:24 ERROR root: ApplyTestDMD. Connection to zenoss dmd failed: 2

2013-06-15 21:21:24 ERROR zen.Events: Error transforming EventClassInst linkUp (1)
2013-06-15 21:21:28 ERROR root: ApplyTestDMD. Connection to zenoss dmd failed: 2

2013-06-15 21:21:28 ERROR zen.Events: Error transforming EventClassInst linkUp (1)
4

1 回答 1

1

从脚本中完全删除 dmd,它已经在执行事件转换期间在 locals() 中定义。不需要自己定义,就像已经定义了evt一样。

自己看,定义如下一行事件转换,然后使用事件控制台添加按钮为刚刚创建转换的事件类添加一个新事件,以快速测试:

evt.summary = str('dmd' in locals())

您应该会在事件摘要中看到 True ,这意味着 dmd 已经定义,可以使用了:)

于 2013-07-16T18:31:54.087 回答