Author: David McGee
Trap Knowledge functionality (Available via admin section of SNMP Manager: /SnmpManager/trapKnowledge/) offers a method of enabling SNMP Manager Administrators to populate advanced information about specific SNMP trap/alarm types. A complete trap knowledge database empowers the platform to provide a lot more useful information to technicians and end-users that deal with alarm troubleshooting.
Each trap knowledge row in the database generally represents a unique alarm type. All of our current DAS customers leverage this functionality heavily. On a QA system, query the trap_knowledge table in the SNMP Manager database and take a look at the results!
Based on a trap name and/or alarm severity (depending on technology), the following important human-readable information can be populated, and associated with a trap rule in the SNMP Manager, to help operators understand alarms:
Used in conjunction with Trap Override functionality. Over-ride is in place if this is populated. Use caution! This value is an enum in the database and so can only be one of a list of values. This is important for trap knowledge entry / updates so ensure consistency with existing values.
The only valid values are in the TrapOverrideSeverity enum in the SnmpManager
public enum OverrideAlarmSeverity {
CRITICAL("CRITICAL"), MAJOR("MAJOR"), MINOR("MINOR"), WARNING("WARNING"), INFORMATION("INFORMATION"),DEFAULT("DEFAULT"),DISABLED("DISABLED")
Query to check for unique override_severity entries
select distinct BINARY override_severity from trap_knowledge;
These questions are required for self-assessment rather than submitting answers, etc.