SNMP traps are prepared to carry multiple items on a single UDP request, as illustrated in the snmptrap instruction below:
On Net-SNMP's snmptrapd service LOG, that command produces this output:
This given trap was supposed to be forwarded to a ZABBIX server through snmptrap.sh shell script, but apparently the latter is not prepared for parsing requests using multiple parameters.
Here's the actual list of argument values, passed in the form of standard input (see [1]) during script invocation:
Is there any other script (perhaps in other language) capable of properly forwarding multiple parametered SNMP traps to zabbix_sender command?
PS: I'm aiming at sending error stack traces from a Java application.
References:
[1] http://agajorte.blogspot.com/2010/02...-handling.html
Code:
$ snmptrap -v 1 -c public localhost .1.3.6.1.4.1.24.0 localhost 6 12345678 7 .1.3.6.1.4.1.24.12.10.22.64 s "2010-02-04 17:20:51,664,FATAL,main,SimpleTest,Here's an Exception" .1.3.6.1.4.1.24.12.10.22.64 s "java.lang.Exception: Exception message" .1.3.6.1.4.1.24.12.10.22.64 s " at SimpleTest.execute(SimpleTest.java:35)" .1.3.6.1.4.1.24.12.10.22.64 s " at SimpleTest.main(SimpleTest.java:18)"
Code:
2010-02-05 12:21:39 localhost [127.0.0.1] (via UDP: [127.0.0.1]:33208) TRAP, SNMP v1, community public SNMPv2-SMI::enterprises.24.0 Enterprise Specific Trap (12345678) Uptime: 0:00:00.07 SNMPv2-SMI::enterprises.24.12.10.22.64 = STRING: "2010-02-04 17:20:51,664,FATAL,main,SimpleTest,Here's an Exception" SNMPv2-SMI::enterprises.24.12.10.22.64 = STRING: "java.lang.Exception: Exception message" SNMPv2-SMI::enterprises.24.12.10.22.64 = STRING: "at SimpleTest.execute(SimpleTest.java:35)" SNMPv2-SMI::enterprises.24.12.10.22.64 = STRING: "at SimpleTest.main(SimpleTest.java:18)"
Here's the actual list of argument values, passed in the form of standard input (see [1]) during script invocation:
Code:
-------------------------------------------------- localhost UDP: [127.0.0.1]:33208 DISMAN-EVENT-MIB::sysUpTimeInstance 0:0:00:00.07 SNMPv2-MIB::snmpTrapOID.0 SNMPv2-SMI::enterprises.24.0.0.12345678 SNMPv2-SMI::enterprises.24.12.10.22.64 "2010-02-04 17:20:51,664,FATAL,main,SimpleTest,Here's an Exception" SNMPv2-SMI::enterprises.24.12.10.22.64 "java.lang.Exception: Exception message" SNMPv2-SMI::enterprises.24.12.10.22.64 "at SimpleTest.execute(SimpleTest.java:35)" SNMPv2-SMI::enterprises.24.12.10.22.64 "at SimpleTest.main(SimpleTest.java:18)" SNMP-COMMUNITY-MIB::snmpTrapAddress.0 127.0.0.1 SNMP-COMMUNITY-MIB::snmpTrapCommunity.0 "public" SNMPv2-MIB::snmpTrapEnterprise.0 SNMPv2-SMI::enterprises.24.0 --------------------------------------------------
PS: I'm aiming at sending error stack traces from a Java application.
References:
[1] http://agajorte.blogspot.com/2010/02...-handling.html
Comment