found my problem! It was due to some adjustments I had also made to the actual message itself. I had only used the following:
Message Format is a python format string. Fields are specified as %(fieldname)s. The list of fields available in the event database is: dedupid, evid, device, component, eventClass, eventKey, summary, message, severity, eventState, eventClassKey, eventGroup, stateChange, firstTime, lastTime, count, prodState, suppid, manager, agent, DeviceClass, Location, Systems, DeviceGroups, ipAddress, facility, priority, ntevid, ownerid, clearid, DevicePriority, eventClassMapping but I guess it didn't like my changes. Original: Event: '%(summary)s' Cleared by: '%(clearSummary)s' At: %(clearFirstTime)s Device: %(device)s Component: %(component)s Severity: %(severityString)s Message: %(message)s Adjusted: Event: '%(summary)s' Cleared by: '%(clearid)s' At: %(stateChange)s Device: %(device)s Component: %(component)s Severity: %(severityString)s Message: %(message)s -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=15666#15666 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
