logstash-integration-snmp 4.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +23 -0
  3. data/CONTRIBUTORS +20 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE +202 -0
  6. data/README.md +89 -0
  7. data/VERSION +1 -0
  8. data/docs/index.asciidoc +202 -0
  9. data/docs/input-snmp.asciidoc +524 -0
  10. data/docs/input-snmptrap.asciidoc +392 -0
  11. data/lib/logstash/inputs/snmp.rb +369 -0
  12. data/lib/logstash/inputs/snmptrap.rb +190 -0
  13. data/lib/logstash/plugin_mixins/snmp/common.rb +197 -0
  14. data/lib/logstash-integration-snmp_jars.rb +6 -0
  15. data/lib/mibs/ietf/ACCOUNTING-CONTROL-MIB.dic +1316 -0
  16. data/lib/mibs/ietf/ADSL-LINE-EXT-MIB.dic +1724 -0
  17. data/lib/mibs/ietf/ADSL-LINE-MIB.dic +7297 -0
  18. data/lib/mibs/ietf/ADSL-TC-MIB.dic +160 -0
  19. data/lib/mibs/ietf/ADSL2-LINE-MIB.dic +8663 -0
  20. data/lib/mibs/ietf/ADSL2-LINE-TC-MIB.dic +1462 -0
  21. data/lib/mibs/ietf/AGENTX-MIB.dic +817 -0
  22. data/lib/mibs/ietf/AGGREGATE-MIB.dic +708 -0
  23. data/lib/mibs/ietf/ALARM-MIB.dic +1734 -0
  24. data/lib/mibs/ietf/APM-MIB.dic +2870 -0
  25. data/lib/mibs/ietf/APPC-MIB.dic +8687 -0
  26. data/lib/mibs/ietf/APPLETALK-MIB.dic +4399 -0
  27. data/lib/mibs/ietf/APPLICATION-MIB.dic +3750 -0
  28. data/lib/mibs/ietf/APPN-DLUR-MIB.dic +972 -0
  29. data/lib/mibs/ietf/APPN-MIB.dic +9364 -0
  30. data/lib/mibs/ietf/APPN-TRAP-MIB.dic +664 -0
  31. data/lib/mibs/ietf/APS-MIB.dic +2430 -0
  32. data/lib/mibs/ietf/ARC-MIB.dic +552 -0
  33. data/lib/mibs/ietf/ATM-ACCOUNTING-INFORMATION-MIB.dic +816 -0
  34. data/lib/mibs/ietf/ATM-MIB.dic +4104 -0
  35. data/lib/mibs/ietf/ATM-TC-MIB.dic +914 -0
  36. data/lib/mibs/ietf/ATM2-MIB.dic +4715 -0
  37. data/lib/mibs/ietf/BFD-STD-MIB.dic +2367 -0
  38. data/lib/mibs/ietf/BFD-TC-STD-MIB.dic +202 -0
  39. data/lib/mibs/ietf/BGP4-MIB.dic +1931 -0
  40. data/lib/mibs/ietf/BLDG-HVAC-MIB.dic +812 -0
  41. data/lib/mibs/ietf/BRIDGE-MIB.dic +2257 -0
  42. data/lib/mibs/ietf/CAPWAP-BASE-MIB.dic +4128 -0
  43. data/lib/mibs/ietf/CAPWAP-DOT11-MIB.dic +482 -0
  44. data/lib/mibs/ietf/CHARACTER-MIB.dic +1140 -0
  45. data/lib/mibs/ietf/CIRCUIT-IF-MIB.dic +493 -0
  46. data/lib/mibs/ietf/CLNS-MIB.dic +1702 -0
  47. data/lib/mibs/ietf/COFFEE-POT-MIB.dic +282 -0
  48. data/lib/mibs/ietf/COPS-CLIENT-MIB.dic +1270 -0
  49. data/lib/mibs/ietf/DECNET-PHIV-MIB.dic +5837 -0
  50. data/lib/mibs/ietf/DIAL-CONTROL-MIB.dic +2139 -0
  51. data/lib/mibs/ietf/DIFFSERV-CONFIG-MIB.dic +378 -0
  52. data/lib/mibs/ietf/DIFFSERV-MIB.dic +5073 -0
  53. data/lib/mibs/ietf/DIRECTORY-SERVER-MIB.dic +1041 -0
  54. data/lib/mibs/ietf/DISMAN-EVENT-MIB.dic +3151 -0
  55. data/lib/mibs/ietf/DISMAN-EXPRESSION-MIB.dic +1716 -0
  56. data/lib/mibs/ietf/DISMAN-NSLOOKUP-MIB.dic +698 -0
  57. data/lib/mibs/ietf/DISMAN-PING-MIB.dic +2635 -0
  58. data/lib/mibs/ietf/DISMAN-SCHEDULE-MIB.dic +1744 -0
  59. data/lib/mibs/ietf/DISMAN-SCRIPT-MIB.dic +2820 -0
  60. data/lib/mibs/ietf/DISMAN-TRACEROUTE-MIB.dic +3239 -0
  61. data/lib/mibs/ietf/DLSW-MIB.dic +5635 -0
  62. data/lib/mibs/ietf/DNS-RESOLVER-MIB.dic +1765 -0
  63. data/lib/mibs/ietf/DNS-SERVER-MIB.dic +1593 -0
  64. data/lib/mibs/ietf/DOCS-BPI-MIB.dic +2634 -0
  65. data/lib/mibs/ietf/DOCS-CABLE-DEVICE-MIB.dic +5042 -0
  66. data/lib/mibs/ietf/DOCS-IETF-BPI2-MIB.dic +5478 -0
  67. data/lib/mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB.dic +2447 -0
  68. data/lib/mibs/ietf/DOCS-IETF-QOS-MIB.dic +4886 -0
  69. data/lib/mibs/ietf/DOCS-IETF-SUBMGT-MIB.dic +1331 -0
  70. data/lib/mibs/ietf/DOCS-IF-MIB.dic +7980 -0
  71. data/lib/mibs/ietf/DOT12-IF-MIB.dic +1066 -0
  72. data/lib/mibs/ietf/DOT12-RPTR-MIB.dic +2669 -0
  73. data/lib/mibs/ietf/DOT3-EPON-MIB.dic +3297 -0
  74. data/lib/mibs/ietf/DOT3-OAM-MIB.dic +2830 -0
  75. data/lib/mibs/ietf/DS0-MIB.dic +466 -0
  76. data/lib/mibs/ietf/DS0BUNDLE-MIB.dic +468 -0
  77. data/lib/mibs/ietf/DS1-MIB.dic +4890 -0
  78. data/lib/mibs/ietf/DS3-MIB.dic +2719 -0
  79. data/lib/mibs/ietf/DSA-MIB.dic +888 -0
  80. data/lib/mibs/ietf/DSMON-MIB.dic +6177 -0
  81. data/lib/mibs/ietf/DVB-RCS-MIB.dic +5764 -0
  82. data/lib/mibs/ietf/EBN-MIB.dic +1026 -0
  83. data/lib/mibs/ietf/EFM-CU-MIB.dic +4335 -0
  84. data/lib/mibs/ietf/ENTITY-MIB.dic +2235 -0
  85. data/lib/mibs/ietf/ENTITY-SENSOR-MIB.dic +653 -0
  86. data/lib/mibs/ietf/ENTITY-STATE-MIB.dic +457 -0
  87. data/lib/mibs/ietf/ENTITY-STATE-TC-MIB.dic +260 -0
  88. data/lib/mibs/ietf/ETHER-CHIPSET-MIB.dic +787 -0
  89. data/lib/mibs/ietf/EtherLike-MIB.dic +2548 -0
  90. data/lib/mibs/ietf/FC-MGMT-MIB.dic +3465 -0
  91. data/lib/mibs/ietf/FCIP-MGMT-MIB.dic +1596 -0
  92. data/lib/mibs/ietf/FDDI-SMT73-MIB.dic +3378 -0
  93. data/lib/mibs/ietf/FIBRE-CHANNEL-FE-MIB.dic +2504 -0
  94. data/lib/mibs/ietf/FLOAT-TC-MIB.dic +128 -0
  95. data/lib/mibs/ietf/FLOW-METER-MIB.dic +3201 -0
  96. data/lib/mibs/ietf/FORCES-MIB.dic +598 -0
  97. data/lib/mibs/ietf/FR-ATM-PVC-SERVICE-IWF-MIB.dic +1601 -0
  98. data/lib/mibs/ietf/FR-MFR-MIB.dic +1351 -0
  99. data/lib/mibs/ietf/FRAME-RELAY-DTE-MIB.dic +1688 -0
  100. data/lib/mibs/ietf/FRNETSERV-MIB.dic +3940 -0
  101. data/lib/mibs/ietf/FRSLD-MIB.dic +2580 -0
  102. data/lib/mibs/ietf/Finisher-MIB.dic +1416 -0
  103. data/lib/mibs/ietf/GMPLS-LABEL-STD-MIB.dic +965 -0
  104. data/lib/mibs/ietf/GMPLS-LSR-STD-MIB.dic +693 -0
  105. data/lib/mibs/ietf/GMPLS-TC-STD-MIB.dic +180 -0
  106. data/lib/mibs/ietf/GMPLS-TE-STD-MIB.dic +2542 -0
  107. data/lib/mibs/ietf/GSMP-MIB.dic +2468 -0
  108. data/lib/mibs/ietf/HC-ALARM-MIB.dic +1050 -0
  109. data/lib/mibs/ietf/HC-PerfHist-TC-MIB.dic +310 -0
  110. data/lib/mibs/ietf/HC-RMON-MIB.dic +4456 -0
  111. data/lib/mibs/ietf/HDSL2-SHDSL-LINE-MIB.dic +3955 -0
  112. data/lib/mibs/ietf/HOST-RESOURCES-MIB.dic +2453 -0
  113. data/lib/mibs/ietf/HPR-IP-MIB.dic +640 -0
  114. data/lib/mibs/ietf/HPR-MIB.dic +1959 -0
  115. data/lib/mibs/ietf/IANA-ITU-ALARM-TC-MIB.dic +936 -0
  116. data/lib/mibs/ietf/IF-CAP-STACK-MIB.dic +356 -0
  117. data/lib/mibs/ietf/IF-INVERTED-STACK-MIB.dic +220 -0
  118. data/lib/mibs/ietf/IF-MIB.dic +2753 -0
  119. data/lib/mibs/ietf/IFCP-MGMT-MIB.dic +1717 -0
  120. data/lib/mibs/ietf/IGMP-STD-MIB.dic +809 -0
  121. data/lib/mibs/ietf/INET-ADDRESS-MIB.dic +570 -0
  122. data/lib/mibs/ietf/INTEGRATED-SERVICES-GUARANTEED-MIB.dic +319 -0
  123. data/lib/mibs/ietf/INTEGRATED-SERVICES-MIB.dic +1196 -0
  124. data/lib/mibs/ietf/INTERFACETOPN-MIB.dic +1705 -0
  125. data/lib/mibs/ietf/IP-FORWARD-MIB.dic +1853 -0
  126. data/lib/mibs/ietf/IP-MIB.dic +7064 -0
  127. data/lib/mibs/ietf/IPATM-IPMC-MIB.dic +4830 -0
  128. data/lib/mibs/ietf/IPFIX-MIB.dic +2334 -0
  129. data/lib/mibs/ietf/IPFIX-SELECTOR-MIB.dic +215 -0
  130. data/lib/mibs/ietf/IPMCAST-MIB.dic +3390 -0
  131. data/lib/mibs/ietf/IPMROUTE-STD-MIB.dic +1246 -0
  132. data/lib/mibs/ietf/IPOA-MIB.dic +2372 -0
  133. data/lib/mibs/ietf/IPS-AUTH-MIB.dic +1609 -0
  134. data/lib/mibs/ietf/IPSEC-SPD-MIB.dic +3989 -0
  135. data/lib/mibs/ietf/IPV6-FLOW-LABEL-MIB.dic +110 -0
  136. data/lib/mibs/ietf/IPV6-ICMP-MIB.dic +748 -0
  137. data/lib/mibs/ietf/IPV6-MIB.dic +2028 -0
  138. data/lib/mibs/ietf/IPV6-MLD-MIB.dic +659 -0
  139. data/lib/mibs/ietf/IPV6-TCP-MIB.dic +332 -0
  140. data/lib/mibs/ietf/IPV6-UDP-MIB.dic +209 -0
  141. data/lib/mibs/ietf/ISCSI-MIB.dic +4613 -0
  142. data/lib/mibs/ietf/ISDN-MIB.dic +1796 -0
  143. data/lib/mibs/ietf/ISIS-MIB.dic +6215 -0
  144. data/lib/mibs/ietf/ISNS-MIB.dic +6578 -0
  145. data/lib/mibs/ietf/ITU-ALARM-MIB.dic +665 -0
  146. data/lib/mibs/ietf/ITU-ALARM-TC-MIB.dic +137 -0
  147. data/lib/mibs/ietf/Job-Monitoring-MIB.dic +2519 -0
  148. data/lib/mibs/ietf/L2TP-MIB.dic +4050 -0
  149. data/lib/mibs/ietf/LANGTAG-TC-MIB.dic +104 -0
  150. data/lib/mibs/ietf/LISP-MIB.dic +4067 -0
  151. data/lib/mibs/ietf/LMP-MIB.dic +5166 -0
  152. data/lib/mibs/ietf/MALLOC-MIB.dic +2156 -0
  153. data/lib/mibs/ietf/MAU-MIB.dic +2619 -0
  154. data/lib/mibs/ietf/MIDCOM-MIB.dic +2856 -0
  155. data/lib/mibs/ietf/MIOX25-MIB.dic +828 -0
  156. data/lib/mibs/ietf/MIP-MIB.dic +3473 -0
  157. data/lib/mibs/ietf/MOBILEIPV6-MIB.dic +5228 -0
  158. data/lib/mibs/ietf/MPLS-FTN-STD-MIB.dic +1594 -0
  159. data/lib/mibs/ietf/MPLS-L3VPN-STD-MIB.dic +2548 -0
  160. data/lib/mibs/ietf/MPLS-LC-ATM-STD-MIB.dic +491 -0
  161. data/lib/mibs/ietf/MPLS-LC-FR-STD-MIB.dic +395 -0
  162. data/lib/mibs/ietf/MPLS-LDP-ATM-STD-MIB.dic +1019 -0
  163. data/lib/mibs/ietf/MPLS-LDP-FRAME-RELAY-STD-MIB.dic +862 -0
  164. data/lib/mibs/ietf/MPLS-LDP-GENERIC-STD-MIB.dic +445 -0
  165. data/lib/mibs/ietf/MPLS-LDP-STD-MIB.dic +3657 -0
  166. data/lib/mibs/ietf/MPLS-LSR-STD-MIB.dic +3103 -0
  167. data/lib/mibs/ietf/MPLS-TC-STD-MIB.dic +911 -0
  168. data/lib/mibs/ietf/MPLS-TE-STD-MIB.dic +3673 -0
  169. data/lib/mibs/ietf/MSDP-MIB.dic +1893 -0
  170. data/lib/mibs/ietf/MTA-MIB.dic +1898 -0
  171. data/lib/mibs/ietf/Modem-MIB.dic +2054 -0
  172. data/lib/mibs/ietf/NAT-MIB.dic +3866 -0
  173. data/lib/mibs/ietf/NETWORK-SERVICES-MIB.dic +1034 -0
  174. data/lib/mibs/ietf/NHDP-MIB.dic +3005 -0
  175. data/lib/mibs/ietf/NHRP-MIB.dic +3660 -0
  176. data/lib/mibs/ietf/NOTIFICATION-LOG-MIB.dic +1156 -0
  177. data/lib/mibs/ietf/NTPv4-MIB.dic +1535 -0
  178. data/lib/mibs/ietf/OPT-IF-MIB.dic +8972 -0
  179. data/lib/mibs/ietf/OSPF-MIB.dic +5963 -0
  180. data/lib/mibs/ietf/OSPF-TRAP-MIB.dic +1190 -0
  181. data/lib/mibs/ietf/OSPFV3-MIB.dic +5708 -0
  182. data/lib/mibs/ietf/P-BRIDGE-MIB.dic +1499 -0
  183. data/lib/mibs/ietf/PARALLEL-MIB.dic +476 -0
  184. data/lib/mibs/ietf/PIM-MIB.dic +1393 -0
  185. data/lib/mibs/ietf/PIM-STD-MIB.dic +6819 -0
  186. data/lib/mibs/ietf/PINT-MIB.dic +830 -0
  187. data/lib/mibs/ietf/PKTC-IETF-MTA-MIB.dic +3191 -0
  188. data/lib/mibs/ietf/PKTC-IETF-SIG-MIB.dic +4713 -0
  189. data/lib/mibs/ietf/PMIPV6-MIB.dic +3010 -0
  190. data/lib/mibs/ietf/PMIPV6-TC-MIB.dic +293 -0
  191. data/lib/mibs/ietf/POLICY-BASED-MANAGEMENT-MIB.dic +3316 -0
  192. data/lib/mibs/ietf/POWER-ETHERNET-MIB.dic +959 -0
  193. data/lib/mibs/ietf/PPP-BRIDGE-NCP-MIB.dic +587 -0
  194. data/lib/mibs/ietf/PPP-IP-NCP-MIB.dic +269 -0
  195. data/lib/mibs/ietf/PPP-LCP-MIB.dic +994 -0
  196. data/lib/mibs/ietf/PPP-SEC-MIB.dic +411 -0
  197. data/lib/mibs/ietf/PSAMP-MIB.dic +998 -0
  198. data/lib/mibs/ietf/PTOPO-MIB.dic +1135 -0
  199. data/lib/mibs/ietf/PW-ATM-MIB.dic +1642 -0
  200. data/lib/mibs/ietf/PW-CEP-STD-MIB.dic +3661 -0
  201. data/lib/mibs/ietf/PW-STD-MIB.dic +3592 -0
  202. data/lib/mibs/ietf/PW-TC-STD-MIB.dic +437 -0
  203. data/lib/mibs/ietf/PW-TDM-MIB.dic +1896 -0
  204. data/lib/mibs/ietf/PerfHist-TC-MIB.dic +152 -0
  205. data/lib/mibs/ietf/Printer-MIB.dic +6665 -0
  206. data/lib/mibs/ietf/Q-BRIDGE-MIB.dic +3115 -0
  207. data/lib/mibs/ietf/RADIUS-ACC-CLIENT-MIB.dic +991 -0
  208. data/lib/mibs/ietf/RADIUS-ACC-SERVER-MIB.dic +1183 -0
  209. data/lib/mibs/ietf/RADIUS-AUTH-CLIENT-MIB.dic +1073 -0
  210. data/lib/mibs/ietf/RADIUS-AUTH-SERVER-MIB.dic +1251 -0
  211. data/lib/mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB.dic +1116 -0
  212. data/lib/mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB.dic +1003 -0
  213. data/lib/mibs/ietf/RAQMON-MIB.dic +2695 -0
  214. data/lib/mibs/ietf/RBRIDGE-MIB.dic +2981 -0
  215. data/lib/mibs/ietf/RDBMS-MIB.dic +1935 -0
  216. data/lib/mibs/ietf/RFC1065-SMI.dic +108 -0
  217. data/lib/mibs/ietf/RFC1155-SMI.dic +118 -0
  218. data/lib/mibs/ietf/RFC1158-MIB.dic +2440 -0
  219. data/lib/mibs/ietf/RFC1213-MIB.dic +3434 -0
  220. data/lib/mibs/ietf/RFC1269-MIB.dic +557 -0
  221. data/lib/mibs/ietf/RFC1271-MIB.dic +4135 -0
  222. data/lib/mibs/ietf/RFC1285-MIB.dic +2842 -0
  223. data/lib/mibs/ietf/RFC1316-MIB.dic +800 -0
  224. data/lib/mibs/ietf/RFC1381-MIB.dic +1347 -0
  225. data/lib/mibs/ietf/RFC1382-MIB.dic +3820 -0
  226. data/lib/mibs/ietf/RFC1414-MIB.dic +214 -0
  227. data/lib/mibs/ietf/RIPv2-MIB.dic +773 -0
  228. data/lib/mibs/ietf/RMON-MIB.dic +5551 -0
  229. data/lib/mibs/ietf/RMON2-MIB.dic +8224 -0
  230. data/lib/mibs/ietf/ROHC-MIB.dic +1613 -0
  231. data/lib/mibs/ietf/ROHC-RTP-MIB.dic +859 -0
  232. data/lib/mibs/ietf/ROHC-UNCOMPRESSED-MIB.dic +267 -0
  233. data/lib/mibs/ietf/RPKI-ROUTER-MIB.dic +1363 -0
  234. data/lib/mibs/ietf/RS-232-MIB.dic +1335 -0
  235. data/lib/mibs/ietf/RSERPOOL-MIB.dic +2501 -0
  236. data/lib/mibs/ietf/RSTP-MIB.dic +427 -0
  237. data/lib/mibs/ietf/RSVP-MIB.dic +4135 -0
  238. data/lib/mibs/ietf/RTP-MIB.dic +1376 -0
  239. data/lib/mibs/ietf/SCSI-MIB.dic +3804 -0
  240. data/lib/mibs/ietf/SCTP-MIB.dic +1924 -0
  241. data/lib/mibs/ietf/SFLOW-MIB.dic +568 -0
  242. data/lib/mibs/ietf/SIP-COMMON-MIB.dic +2769 -0
  243. data/lib/mibs/ietf/SIP-MIB.dic +1438 -0
  244. data/lib/mibs/ietf/SIP-SERVER-MIB.dic +1150 -0
  245. data/lib/mibs/ietf/SIP-TC-MIB.dic +257 -0
  246. data/lib/mibs/ietf/SIP-UA-MIB.dic +268 -0
  247. data/lib/mibs/ietf/SLAPM-MIB.dic +4527 -0
  248. data/lib/mibs/ietf/SMON-MIB.dic +1758 -0
  249. data/lib/mibs/ietf/SNA-NAU-MIB.dic +4042 -0
  250. data/lib/mibs/ietf/SNA-SDLC-MIB.dic +3858 -0
  251. data/lib/mibs/ietf/SNMP-COMMUNITY-MIB.dic +715 -0
  252. data/lib/mibs/ietf/SNMP-FRAMEWORK-MIB.dic +709 -0
  253. data/lib/mibs/ietf/SNMP-MPD-MIB.dic +230 -0
  254. data/lib/mibs/ietf/SNMP-NOTIFICATION-MIB.dic +859 -0
  255. data/lib/mibs/ietf/SNMP-PROXY-MIB.dic +414 -0
  256. data/lib/mibs/ietf/SNMP-REPEATER-MIB.dic +4335 -0
  257. data/lib/mibs/ietf/SNMP-SSH-TM-MIB.dic +447 -0
  258. data/lib/mibs/ietf/SNMP-TARGET-MIB.dic +924 -0
  259. data/lib/mibs/ietf/SNMP-TLS-TM-MIB.dic +1449 -0
  260. data/lib/mibs/ietf/SNMP-TSM-MIB.dic +315 -0
  261. data/lib/mibs/ietf/SNMP-USER-BASED-SM-MIB.dic +1164 -0
  262. data/lib/mibs/ietf/SNMP-USM-AES-MIB.dic +95 -0
  263. data/lib/mibs/ietf/SNMP-USM-DH-OBJECTS-MIB.dic +653 -0
  264. data/lib/mibs/ietf/SNMP-VIEW-BASED-ACM-MIB.dic +1202 -0
  265. data/lib/mibs/ietf/SNMPv2-MIB.dic +1382 -0
  266. data/lib/mibs/ietf/SNMPv2-SMI.dic +223 -0
  267. data/lib/mibs/ietf/SNMPv2-USEC-MIB.dic +405 -0
  268. data/lib/mibs/ietf/SONET-MIB.dic +3308 -0
  269. data/lib/mibs/ietf/SOURCE-ROUTING-MIB.dic +542 -0
  270. data/lib/mibs/ietf/SSPM-MIB.dic +1530 -0
  271. data/lib/mibs/ietf/SYSAPPL-MIB.dic +2092 -0
  272. data/lib/mibs/ietf/T11-FC-FABRIC-ADDR-MGR-MIB.dic +1779 -0
  273. data/lib/mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB.dic +2822 -0
  274. data/lib/mibs/ietf/T11-FC-FABRIC-LOCK-MIB.dic +700 -0
  275. data/lib/mibs/ietf/T11-FC-FSPF-MIB.dic +1889 -0
  276. data/lib/mibs/ietf/T11-FC-NAME-SERVER-MIB.dic +1775 -0
  277. data/lib/mibs/ietf/T11-FC-ROUTE-MIB.dic +655 -0
  278. data/lib/mibs/ietf/T11-FC-RSCN-MIB.dic +1110 -0
  279. data/lib/mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB.dic +770 -0
  280. data/lib/mibs/ietf/T11-FC-ZONE-SERVER-MIB.dic +3886 -0
  281. data/lib/mibs/ietf/T11-TC-MIB.dic +110 -0
  282. data/lib/mibs/ietf/TCP-ESTATS-MIB.dic +3926 -0
  283. data/lib/mibs/ietf/TCP-MIB.dic +1319 -0
  284. data/lib/mibs/ietf/TCPIPX-MIB.dic +457 -0
  285. data/lib/mibs/ietf/TE-LINK-STD-MIB.dic +2876 -0
  286. data/lib/mibs/ietf/TE-MIB.dic +2924 -0
  287. data/lib/mibs/ietf/TED-MIB.dic +1749 -0
  288. data/lib/mibs/ietf/TIME-AGGREGATE-MIB.dic +550 -0
  289. data/lib/mibs/ietf/TN3270E-MIB.dic +2785 -0
  290. data/lib/mibs/ietf/TN3270E-RT-MIB.dic +1317 -0
  291. data/lib/mibs/ietf/TOKEN-RING-RMON-MIB.dic +2820 -0
  292. data/lib/mibs/ietf/TOKENRING-MIB.dic +1184 -0
  293. data/lib/mibs/ietf/TOKENRING-STATION-SR-MIB.dic +292 -0
  294. data/lib/mibs/ietf/TRANSPORT-ADDRESS-MIB.dic +610 -0
  295. data/lib/mibs/ietf/TRIP-MIB.dic +3159 -0
  296. data/lib/mibs/ietf/TRIP-TC-MIB.dic +241 -0
  297. data/lib/mibs/ietf/TUNNEL-MIB.dic +1095 -0
  298. data/lib/mibs/ietf/UDP-MIB.dic +751 -0
  299. data/lib/mibs/ietf/UDPLITE-MIB.dic +704 -0
  300. data/lib/mibs/ietf/UPS-MIB.dic +3088 -0
  301. data/lib/mibs/ietf/URI-TC-MIB.dic +193 -0
  302. data/lib/mibs/ietf/UUID-TC-MIB.dic +135 -0
  303. data/lib/mibs/ietf/VDSL-LINE-EXT-MCM-MIB.dic +989 -0
  304. data/lib/mibs/ietf/VDSL-LINE-EXT-SCM-MIB.dic +605 -0
  305. data/lib/mibs/ietf/VDSL-LINE-MIB.dic +4518 -0
  306. data/lib/mibs/ietf/VDSL2-LINE-MIB.dic +11029 -0
  307. data/lib/mibs/ietf/VDSL2-LINE-TC-MIB.dic +3152 -0
  308. data/lib/mibs/ietf/VPN-TC-STD-MIB.dic +121 -0
  309. data/lib/mibs/ietf/VRRP-MIB.dic +1163 -0
  310. data/lib/mibs/ietf/VRRPV3-MIB.dic +1403 -0
  311. data/lib/mibs/ietf/WWW-MIB.dic +1810 -0
  312. data/lib/mibs/logstash/iso.dic +18 -0
  313. data/logstash-integration-snmp.gemspec +40 -0
  314. data/spec/fixtures/RFC1213-MIB.dic +3445 -0
  315. data/spec/fixtures/collision.dic +25 -0
  316. data/spec/integration/inputs/snmp_spec.rb +443 -0
  317. data/spec/integration/inputs/snmptrap_spec.rb +383 -0
  318. data/spec/unit/inputs/common_spec.rb +264 -0
  319. data/spec/unit/inputs/snmp_spec.rb +510 -0
  320. data/spec/unit/inputs/snmptrap_spec.rb +141 -0
  321. data/vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.0/plugin-4.0.0.jar +0 -0
  322. data/vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar +0 -0
  323. data/vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar +0 -0
  324. metadata +523 -0
@@ -0,0 +1,1050 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python HC-ALARM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/HC-ALARM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "HC-ALARM-MIB",
11
+
12
+ "HC-ALARM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RMONMIB Working Group""",
17
+ "contact" :
18
+ """ Andy Bierman
19
+ Cisco Systems, Inc.
20
+ Tel: +1 408 527-3711
21
+
22
+
23
+
24
+ E-mail: abierman@cisco.com
25
+ Postal: 170 West Tasman Drive
26
+ San Jose, CA USA 95134
27
+
28
+ Keith McCloghrie
29
+ Cisco Systems, Inc.
30
+ Tel: +1 408 526-5260
31
+ E-mail: kzm@cisco.com
32
+ Postal: 170 West Tasman Drive
33
+ San Jose, CA USA 95134
34
+
35
+ Send comments to <rmonmib@ietf.org>
36
+ Mailing list subscription info:
37
+ http://www.ietf.org/mailman/listinfo/rmonmib """,
38
+ "description" :
39
+ """This module defines Remote Monitoring MIB extensions for
40
+ High Capacity Alarms.
41
+
42
+ Copyright (C) The Internet Society (2002). This version
43
+ of this MIB module is part of RFC 3434; see the RFC
44
+ itself for full legal notices.""",
45
+ "revisions" : (
46
+ {
47
+ "date" : "2002-12-16 00:00",
48
+ "description" :
49
+ """Initial version of the High Capacity Alarm MIB module.
50
+ This version published as RFC 3434.""",
51
+ },
52
+ ),
53
+ "identity node" : "hcAlarmMIB",
54
+ },
55
+
56
+ "imports" : (
57
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
60
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
63
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
64
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
65
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
66
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
67
+ {"module" : "SNMPv2-TC", "name" : "VariablePointer"},
68
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
69
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
70
+ {"module" : "HCNUM-TC", "name" : "CounterBasedGauge64"},
71
+ {"module" : "RMON-MIB", "name" : "rmon"},
72
+ {"module" : "RMON-MIB", "name" : "OwnerString"},
73
+ {"module" : "RMON-MIB", "name" : "rmonEventGroup"},
74
+ ),
75
+
76
+ "typedefs" : {
77
+ "HcValueStatus" : {
78
+ "basetype" : "Enumeration",
79
+ "status" : "current",
80
+ "valueNotAvailable" : {
81
+ "nodetype" : "namednumber",
82
+ "number" : "1"
83
+ },
84
+ "valuePositive" : {
85
+ "nodetype" : "namednumber",
86
+ "number" : "2"
87
+ },
88
+ "valueNegative" : {
89
+ "nodetype" : "namednumber",
90
+ "number" : "3"
91
+ },
92
+ "description" :
93
+ """This data type indicates the validity and sign of the data
94
+ in associated object instances which represent the absolute
95
+ value of a high capacity numeric quantity. Such an object
96
+ may be represented with one or more object instances. An
97
+ object of type HcValueStatus MUST be defined within the same
98
+
99
+
100
+
101
+ structure as the object(s) representing the high capacity
102
+ absolute value.
103
+
104
+ If the associated object instance(s) representing the high
105
+ capacity absolute value could not be accessed during the
106
+ sampling interval, and is therefore invalid, then the
107
+ associated HcValueStatus object will contain the value
108
+ 'valueNotAvailable(1)'.
109
+
110
+ If the associated object instance(s) representing the high
111
+ capacity absolute value are valid and actual value of the
112
+ sample is greater than or equal to zero, then the associated
113
+ HcValueStatus object will contain the value
114
+ 'valuePositive(2)'.
115
+
116
+ If the associated object instance(s) representing the high
117
+ capacity absolute value are valid and the actual value of
118
+ the sample is less than zero, then the associated
119
+ HcValueStatus object will contain the value
120
+ 'valueNegative(3)'. The associated absolute value should be
121
+ multiplied by -1 to obtain the true sample value.""",
122
+ },
123
+ }, # typedefs
124
+
125
+ "nodes" : {
126
+ "hcAlarmMIB" : {
127
+ "nodetype" : "node",
128
+ "moduleName" : "HC-ALARM-MIB",
129
+ "oid" : "1.3.6.1.2.1.16.29",
130
+ "status" : "current",
131
+ }, # node
132
+ "hcAlarmObjects" : {
133
+ "nodetype" : "node",
134
+ "moduleName" : "HC-ALARM-MIB",
135
+ "oid" : "1.3.6.1.2.1.16.29.1",
136
+ }, # node
137
+ "hcAlarmControlObjects" : {
138
+ "nodetype" : "node",
139
+ "moduleName" : "HC-ALARM-MIB",
140
+ "oid" : "1.3.6.1.2.1.16.29.1.1",
141
+ }, # node
142
+ "hcAlarmTable" : {
143
+ "nodetype" : "table",
144
+ "moduleName" : "HC-ALARM-MIB",
145
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1",
146
+ "status" : "current",
147
+ "description" :
148
+ """A list of entries for the configuration of high capacity
149
+ alarms.""",
150
+ }, # table
151
+ "hcAlarmEntry" : {
152
+ "nodetype" : "row",
153
+ "moduleName" : "HC-ALARM-MIB",
154
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1",
155
+ "create" : "true",
156
+ "status" : "current",
157
+ "linkage" : [
158
+ "hcAlarmIndex",
159
+ ],
160
+ "description" :
161
+ """A conceptual row in the hcAlarmTable. Entries are usually
162
+ created in this table by management application action, but
163
+ may also be created by agent action as well.""",
164
+ }, # row
165
+ "hcAlarmIndex" : {
166
+ "nodetype" : "column",
167
+ "moduleName" : "HC-ALARM-MIB",
168
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.1",
169
+ "status" : "current",
170
+ "syntax" : {
171
+ "type" : {
172
+ "basetype" : "Integer32",
173
+ "ranges" : [
174
+ {
175
+ "min" : "1",
176
+ "max" : "65535"
177
+ },
178
+ ],
179
+ "range" : {
180
+ "min" : "1",
181
+ "max" : "65535"
182
+ },
183
+ },
184
+ },
185
+ "access" : "noaccess",
186
+ "description" :
187
+ """An arbitrary integer index value used to uniquely identify
188
+ this high capacity alarm entry.""",
189
+ }, # column
190
+ "hcAlarmInterval" : {
191
+ "nodetype" : "column",
192
+ "moduleName" : "HC-ALARM-MIB",
193
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.2",
194
+ "status" : "current",
195
+ "syntax" : {
196
+ "type" : {
197
+ "basetype" : "Integer32",
198
+ "ranges" : [
199
+ {
200
+ "min" : "1",
201
+ "max" : "2147483647"
202
+ },
203
+ ],
204
+ "range" : {
205
+ "min" : "1",
206
+ "max" : "2147483647"
207
+ },
208
+ },
209
+ },
210
+ "access" : "readwrite",
211
+ "units" : "seconds",
212
+ "description" :
213
+ """The interval in seconds over which the data is sampled and
214
+ compared with the rising and falling thresholds. When
215
+ setting this variable, care should be taken in the case of
216
+ deltaValue sampling - the interval should be set short
217
+ enough that the sampled variable is very unlikely to
218
+ increase or decrease by more than 2^63 - 1 during a single
219
+ sampling interval.
220
+
221
+
222
+
223
+
224
+
225
+ This object may not be modified if the associated
226
+ hcAlarmStatus object is equal to active(1).""",
227
+ }, # column
228
+ "hcAlarmVariable" : {
229
+ "nodetype" : "column",
230
+ "moduleName" : "HC-ALARM-MIB",
231
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.3",
232
+ "status" : "current",
233
+ "syntax" : {
234
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
235
+ },
236
+ "access" : "readwrite",
237
+ "description" :
238
+ """The object identifier of the particular variable to be
239
+ sampled. Only variables that resolve to an ASN.1 primitive
240
+ type of INTEGER (INTEGER, Integer32, Counter32, Counter64,
241
+ Gauge, or TimeTicks) may be sampled.
242
+
243
+ Because SNMP access control is articulated entirely in terms
244
+ of the contents of MIB views, no access control mechanism
245
+ exists that can restrict the value of this object to
246
+ identify only those objects that exist in a particular MIB
247
+ view. Because there is thus no acceptable means of
248
+ restricting the read access that could be obtained through
249
+ the alarm mechanism, the probe must only grant write access
250
+ to this object in those views that have read access to all
251
+ objects on the probe.
252
+
253
+ This object may not be modified if the associated
254
+ hcAlarmStatus object is equal to active(1).""",
255
+ }, # column
256
+ "hcAlarmSampleType" : {
257
+ "nodetype" : "column",
258
+ "moduleName" : "HC-ALARM-MIB",
259
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.4",
260
+ "status" : "current",
261
+ "syntax" : {
262
+ "type" : {
263
+ "basetype" : "Enumeration",
264
+ "absoluteValue" : {
265
+ "nodetype" : "namednumber",
266
+ "number" : "1"
267
+ },
268
+ "deltaValue" : {
269
+ "nodetype" : "namednumber",
270
+ "number" : "2"
271
+ },
272
+ },
273
+ },
274
+ "access" : "readwrite",
275
+ "description" :
276
+ """The method of sampling the selected variable and
277
+ calculating the value to be compared against the thresholds.
278
+ If the value of this object is absoluteValue(1), the value
279
+ of the selected variable will be compared directly with the
280
+ thresholds at the end of the sampling interval. If the
281
+ value of this object is deltaValue(2), the value of the
282
+ selected variable at the last sample will be subtracted from
283
+ the current value, and the difference compared with the
284
+ thresholds.
285
+
286
+ If the associated hcAlarmVariable instance could not be
287
+ obtained at the previous sample interval, then a delta
288
+
289
+
290
+
291
+ sample is not possible, and the value of the associated
292
+ hcAlarmValueStatus object for this interval will be
293
+ valueNotAvailable(1).
294
+
295
+ This object may not be modified if the associated
296
+ hcAlarmStatus object is equal to active(1).""",
297
+ }, # column
298
+ "hcAlarmAbsValue" : {
299
+ "nodetype" : "column",
300
+ "moduleName" : "HC-ALARM-MIB",
301
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.5",
302
+ "status" : "current",
303
+ "syntax" : {
304
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
305
+ },
306
+ "access" : "readonly",
307
+ "description" :
308
+ """The absolute value (i.e., unsigned value) of the
309
+ hcAlarmVariable statistic during the last sampling period.
310
+ The value during the current sampling period is not made
311
+ available until the period is completed.
312
+
313
+ To obtain the true value for this sampling interval, the
314
+ associated instance of hcAlarmValueStatus must be checked,
315
+ and the value of this object adjusted as necessary.
316
+
317
+ If the MIB instance could not be accessed during the
318
+ sampling interval, then this object will have a value of
319
+ zero and the associated instance of hcAlarmValueStatus will
320
+ be set to 'valueNotAvailable(1)'.""",
321
+ }, # column
322
+ "hcAlarmValueStatus" : {
323
+ "nodetype" : "column",
324
+ "moduleName" : "HC-ALARM-MIB",
325
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.6",
326
+ "status" : "current",
327
+ "syntax" : {
328
+ "type" : { "module" :"HC-ALARM-MIB", "name" : "HcValueStatus"},
329
+ },
330
+ "access" : "readonly",
331
+ "description" :
332
+ """This object indicates the validity and sign of the data for
333
+ the hcAlarmAbsValue object, as described in the
334
+ HcValueStatus textual convention.""",
335
+ }, # column
336
+ "hcAlarmStartupAlarm" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "HC-ALARM-MIB",
339
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.7",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : {
343
+ "basetype" : "Enumeration",
344
+ "risingAlarm" : {
345
+ "nodetype" : "namednumber",
346
+ "number" : "1"
347
+ },
348
+ "fallingAlarm" : {
349
+ "nodetype" : "namednumber",
350
+ "number" : "2"
351
+ },
352
+ "risingOrFallingAlarm" : {
353
+ "nodetype" : "namednumber",
354
+ "number" : "3"
355
+ },
356
+ },
357
+ },
358
+ "access" : "readwrite",
359
+ "description" :
360
+ """The alarm that may be sent when this entry is first set to
361
+
362
+
363
+
364
+ active. If the first sample after this entry becomes active
365
+ is greater than or equal to the rising threshold and this
366
+ object is equal to risingAlarm(1) or
367
+ risingOrFallingAlarm(3), then a single rising alarm will be
368
+ generated. If the first sample after this entry becomes
369
+ valid is less than or equal to the falling threshold and
370
+ this object is equal to fallingAlarm(2) or
371
+ risingOrFallingAlarm(3), then a single falling alarm will be
372
+ generated.
373
+
374
+ This object may not be modified if the associated
375
+ hcAlarmStatus object is equal to active(1).""",
376
+ }, # column
377
+ "hcAlarmRisingThreshAbsValueLo" : {
378
+ "nodetype" : "column",
379
+ "moduleName" : "HC-ALARM-MIB",
380
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.8",
381
+ "status" : "current",
382
+ "syntax" : {
383
+ "type" : { "module" :"", "name" : "Unsigned32"},
384
+ },
385
+ "access" : "readwrite",
386
+ "description" :
387
+ """The lower 32 bits of the absolute value for threshold for
388
+ the sampled statistic. The actual threshold value is
389
+ determined by the associated instances of the
390
+ hcAlarmRisingThreshAbsValueHi and
391
+ hcAlarmRisingThresholdValStatus objects, as follows:
392
+
393
+ ABS(threshold) = hcAlarmRisingThreshAbsValueLo +
394
+ (hcAlarmRisingThreshAbsValueHi * 2^^32)
395
+
396
+ The absolute value of the threshold is adjusted as required,
397
+ as described in the HcValueStatus textual convention. These
398
+ three object instances are conceptually combined to
399
+ represent the rising threshold for this entry.
400
+
401
+ When the current sampled value is greater than or equal to
402
+ this threshold, and the value at the last sampling interval
403
+ was less than this threshold, a single event will be
404
+ generated. A single event will also be generated if the
405
+ first sample after this entry becomes valid is greater than
406
+ or equal to this threshold and the associated
407
+ hcAlarmStartupAlarm is equal to risingAlarm(1) or
408
+ risingOrFallingAlarm(3).
409
+
410
+ After a rising event is generated, another such event will
411
+ not be generated until the sampled value falls below this
412
+ threshold and reaches the threshold identified by the
413
+ hcAlarmFallingThreshAbsValueLo,
414
+ hcAlarmFallingThreshAbsValueHi, and
415
+ hcAlarmFallingThresholdValStatus objects.
416
+
417
+
418
+
419
+ This object may not be modified if the associated
420
+ hcAlarmStatus object is equal to active(1).""",
421
+ }, # column
422
+ "hcAlarmRisingThreshAbsValueHi" : {
423
+ "nodetype" : "column",
424
+ "moduleName" : "HC-ALARM-MIB",
425
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.9",
426
+ "status" : "current",
427
+ "syntax" : {
428
+ "type" : { "module" :"", "name" : "Unsigned32"},
429
+ },
430
+ "access" : "readwrite",
431
+ "description" :
432
+ """The upper 32 bits of the absolute value for threshold for
433
+ the sampled statistic. The actual threshold value is
434
+ determined by the associated instances of the
435
+ hcAlarmRisingThreshAbsValueLo and
436
+ hcAlarmRisingThresholdValStatus objects, as follows:
437
+
438
+ ABS(threshold) = hcAlarmRisingThreshAbsValueLo +
439
+ (hcAlarmRisingThreshAbsValueHi * 2^^32)
440
+
441
+ The absolute value of the threshold is adjusted as required,
442
+ as described in the HcValueStatus textual convention. These
443
+ three object instances are conceptually combined to
444
+ represent the rising threshold for this entry.
445
+
446
+ When the current sampled value is greater than or equal to
447
+ this threshold, and the value at the last sampling interval
448
+ was less than this threshold, a single event will be
449
+ generated. A single event will also be generated if the
450
+ first sample after this entry becomes valid is greater than
451
+ or equal to this threshold and the associated
452
+ hcAlarmStartupAlarm is equal to risingAlarm(1) or
453
+ risingOrFallingAlarm(3).
454
+
455
+ After a rising event is generated, another such event will
456
+ not be generated until the sampled value falls below this
457
+ threshold and reaches the threshold identified by the
458
+ hcAlarmFallingThreshAbsValueLo,
459
+ hcAlarmFallingThreshAbsValueHi, and
460
+ hcAlarmFallingThresholdValStatus objects.
461
+
462
+ This object may not be modified if the associated
463
+ hcAlarmStatus object is equal to active(1).""",
464
+ }, # column
465
+ "hcAlarmRisingThresholdValStatus" : {
466
+ "nodetype" : "column",
467
+ "moduleName" : "HC-ALARM-MIB",
468
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.10",
469
+ "status" : "current",
470
+ "syntax" : {
471
+ "type" : { "module" :"HC-ALARM-MIB", "name" : "HcValueStatus"},
472
+ },
473
+ "access" : "readwrite",
474
+ "description" :
475
+ """This object indicates the sign of the data for the rising
476
+ threshold, as defined by the hcAlarmRisingThresAbsValueLo
477
+ and hcAlarmRisingThresAbsValueHi objects, as described in
478
+ the HcValueStatus textual convention.
479
+
480
+ The enumeration 'valueNotAvailable(1)' is not allowed, and
481
+ the associated hcAlarmStatus object cannot be equal to
482
+ 'active(1)' if this object is set to this value.
483
+
484
+ This object may not be modified if the associated
485
+ hcAlarmStatus object is equal to active(1).""",
486
+ }, # column
487
+ "hcAlarmFallingThreshAbsValueLo" : {
488
+ "nodetype" : "column",
489
+ "moduleName" : "HC-ALARM-MIB",
490
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.11",
491
+ "status" : "current",
492
+ "syntax" : {
493
+ "type" : { "module" :"", "name" : "Unsigned32"},
494
+ },
495
+ "access" : "readwrite",
496
+ "description" :
497
+ """The lower 32 bits of the absolute value for threshold for
498
+ the sampled statistic. The actual threshold value is
499
+ determined by the associated instances of the
500
+ hcAlarmFallingThreshAbsValueHi and
501
+ hcAlarmFallingThresholdValStatus objects, as follows:
502
+
503
+ ABS(threshold) = hcAlarmFallingThreshAbsValueLo +
504
+ (hcAlarmFallingThreshAbsValueHi * 2^^32)
505
+
506
+ The absolute value of the threshold is adjusted as required,
507
+ as described in the HcValueStatus textual convention. These
508
+ three object instances are conceptually combined to
509
+ represent the falling threshold for this entry.
510
+
511
+ When the current sampled value is less than or equal to this
512
+ threshold, and the value at the last sampling interval was
513
+ greater than this threshold, a single event will be
514
+ generated. A single event will also be generated if the
515
+ first sample after this entry becomes valid is less than or
516
+ equal to this threshold and the associated
517
+ hcAlarmStartupAlarm is equal to fallingAlarm(2) or
518
+ risingOrFallingAlarm(3).
519
+
520
+ After a falling event is generated, another such event will
521
+ not be generated until the sampled value rises above this
522
+ threshold and reaches the threshold identified by the
523
+ hcAlarmRisingThreshAbsValueLo,
524
+ hcAlarmRisingThreshAbsValueHi, and
525
+ hcAlarmRisingThresholdValStatus objects.
526
+
527
+
528
+
529
+ This object may not be modified if the associated
530
+ hcAlarmStatus object is equal to active(1).""",
531
+ }, # column
532
+ "hcAlarmFallingThreshAbsValueHi" : {
533
+ "nodetype" : "column",
534
+ "moduleName" : "HC-ALARM-MIB",
535
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.12",
536
+ "status" : "current",
537
+ "syntax" : {
538
+ "type" : { "module" :"", "name" : "Unsigned32"},
539
+ },
540
+ "access" : "readwrite",
541
+ "description" :
542
+ """The upper 32 bits of the absolute value for threshold for
543
+ the sampled statistic. The actual threshold value is
544
+ determined by the associated instances of the
545
+ hcAlarmFallingThreshAbsValueLo and
546
+ hcAlarmFallingThresholdValStatus objects, as follows:
547
+
548
+ ABS(threshold) = hcAlarmFallingThreshAbsValueLo +
549
+ (hcAlarmFallingThreshAbsValueHi * 2^^32)
550
+
551
+ The absolute value of the threshold is adjusted as required,
552
+ as described in the HcValueStatus textual convention. These
553
+ three object instances are conceptually combined to
554
+ represent the falling threshold for this entry.
555
+
556
+ When the current sampled value is less than or equal to this
557
+ threshold, and the value at the last sampling interval was
558
+ greater than this threshold, a single event will be
559
+ generated. A single event will also be generated if the
560
+ first sample after this entry becomes valid is less than or
561
+ equal to this threshold and the associated
562
+ hcAlarmStartupAlarm is equal to fallingAlarm(2) or
563
+ risingOrFallingAlarm(3).
564
+
565
+ After a falling event is generated, another such event will
566
+ not be generated until the sampled value rises above this
567
+ threshold and reaches the threshold identified by the
568
+ hcAlarmRisingThreshAbsValueLo,
569
+ hcAlarmRisingThreshAbsValueHi, and
570
+ hcAlarmRisingThresholdValStatus objects.
571
+
572
+ This object may not be modified if the associated
573
+ hcAlarmStatus object is equal to active(1).""",
574
+ }, # column
575
+ "hcAlarmFallingThresholdValStatus" : {
576
+ "nodetype" : "column",
577
+ "moduleName" : "HC-ALARM-MIB",
578
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.13",
579
+ "status" : "current",
580
+ "syntax" : {
581
+ "type" : { "module" :"HC-ALARM-MIB", "name" : "HcValueStatus"},
582
+ },
583
+ "access" : "readwrite",
584
+ "description" :
585
+ """This object indicates the sign of the data for the falling
586
+ threshold, as defined by the hcAlarmFallingThreshAbsValueLo
587
+ and hcAlarmFallingThreshAbsValueHi objects, as described in
588
+ the HcValueStatus textual convention.
589
+
590
+ The enumeration 'valueNotAvailable(1)' is not allowed, and
591
+ the associated hcAlarmStatus object cannot be equal to
592
+ 'active(1)' if this object is set to this value.
593
+
594
+ This object may not be modified if the associated
595
+ hcAlarmStatus object is equal to active(1).""",
596
+ }, # column
597
+ "hcAlarmRisingEventIndex" : {
598
+ "nodetype" : "column",
599
+ "moduleName" : "HC-ALARM-MIB",
600
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.14",
601
+ "status" : "current",
602
+ "syntax" : {
603
+ "type" : {
604
+ "basetype" : "Integer32",
605
+ "ranges" : [
606
+ {
607
+ "min" : "0",
608
+ "max" : "65535"
609
+ },
610
+ ],
611
+ "range" : {
612
+ "min" : "0",
613
+ "max" : "65535"
614
+ },
615
+ },
616
+ },
617
+ "access" : "readwrite",
618
+ "description" :
619
+ """The index of the eventEntry that is used when a rising
620
+ threshold is crossed. The eventEntry identified by a
621
+ particular value of this index is the same as identified by
622
+ the same value of the eventIndex object. If there is no
623
+ corresponding entry in the eventTable, then no association
624
+ exists. In particular, if this value is zero, no associated
625
+ event will be generated, as zero is not a valid event index.
626
+
627
+ This object may not be modified if the associated
628
+ hcAlarmStatus object is equal to active(1).""",
629
+ }, # column
630
+ "hcAlarmFallingEventIndex" : {
631
+ "nodetype" : "column",
632
+ "moduleName" : "HC-ALARM-MIB",
633
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.15",
634
+ "status" : "current",
635
+ "syntax" : {
636
+ "type" : {
637
+ "basetype" : "Integer32",
638
+ "ranges" : [
639
+ {
640
+ "min" : "0",
641
+ "max" : "65535"
642
+ },
643
+ ],
644
+ "range" : {
645
+ "min" : "0",
646
+ "max" : "65535"
647
+ },
648
+ },
649
+ },
650
+ "access" : "readwrite",
651
+ "description" :
652
+ """The index of the eventEntry that is used when a falling
653
+ threshold is crossed. The eventEntry identified by a
654
+ particular value of this index is the same as identified by
655
+ the same value of the eventIndex object. If there is no
656
+ corresponding entry in the eventTable, then no association
657
+ exists. In particular, if this value is zero, no associated
658
+ event will be generated, as zero is not a valid event index.
659
+
660
+ This object may not be modified if the associated
661
+ hcAlarmStatus object is equal to active(1).""",
662
+ }, # column
663
+ "hcAlarmValueFailedAttempts" : {
664
+ "nodetype" : "column",
665
+ "moduleName" : "HC-ALARM-MIB",
666
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.16",
667
+ "status" : "current",
668
+ "syntax" : {
669
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
670
+ },
671
+ "access" : "readonly",
672
+ "description" :
673
+ """The number of times the associated hcAlarmVariable instance
674
+ was polled on behalf of this hcAlarmEntry, (while in the
675
+ active state) and the value was not available. This counter
676
+ may experience a discontinuity if the agent restarts,
677
+ indicated by the value of sysUpTime.""",
678
+ }, # column
679
+ "hcAlarmOwner" : {
680
+ "nodetype" : "column",
681
+ "moduleName" : "HC-ALARM-MIB",
682
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.17",
683
+ "status" : "current",
684
+ "syntax" : {
685
+ "type" : { "module" :"RMON-MIB", "name" : "OwnerString"},
686
+ },
687
+ "access" : "readwrite",
688
+ "description" :
689
+ """The entity that configured this entry and is therefore
690
+ using the resources assigned to it.""",
691
+ }, # column
692
+ "hcAlarmStorageType" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "HC-ALARM-MIB",
695
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.18",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
699
+ },
700
+ "access" : "readwrite",
701
+ "description" :
702
+ """The type of non-volatile storage configured for this entry.
703
+ If this object is equal to 'permanent(4)', then the
704
+ associated hcAlarmRisingEventIndex and
705
+ hcAlarmFallingEventIndex objects must be writable.""",
706
+ }, # column
707
+ "hcAlarmStatus" : {
708
+ "nodetype" : "column",
709
+ "moduleName" : "HC-ALARM-MIB",
710
+ "oid" : "1.3.6.1.2.1.16.29.1.1.1.1.19",
711
+ "status" : "current",
712
+ "syntax" : {
713
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
714
+ },
715
+ "access" : "readwrite",
716
+ "description" :
717
+ """The status of this row.
718
+
719
+ An entry MUST NOT exist in the active state unless all
720
+ objects in the entry have an appropriate value, as described
721
+ in the description clause for each writable object.
722
+
723
+ The hcAlarmStatus object may be modified if the associated
724
+ instance of this object is equal to active(1),
725
+ notInService(2), or notReady(3). All other writable objects
726
+ may be modified if the associated instance of this object is
727
+ equal to notInService(2) or notReady(3).""",
728
+ }, # column
729
+ "hcAlarmCapabilitiesObjects" : {
730
+ "nodetype" : "node",
731
+ "moduleName" : "HC-ALARM-MIB",
732
+ "oid" : "1.3.6.1.2.1.16.29.1.2",
733
+ }, # node
734
+ "hcAlarmCapabilities" : {
735
+ "nodetype" : "scalar",
736
+ "moduleName" : "HC-ALARM-MIB",
737
+ "oid" : "1.3.6.1.2.1.16.29.1.2.1",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : {
741
+ "basetype" : "Bits",
742
+ "hcAlarmCreation" : {
743
+ "nodetype" : "namednumber",
744
+ "number" : "0"
745
+ },
746
+ "hcAlarmNvStorage" : {
747
+ "nodetype" : "namednumber",
748
+ "number" : "1"
749
+ },
750
+ },
751
+ },
752
+ "access" : "readonly",
753
+ "description" :
754
+ """An indication of the high capacity alarm capabilities
755
+ supported by this agent.
756
+
757
+ If the 'hcAlarmCreation' BIT is set, then this agent allows
758
+ NMS applications to create entries in the hcAlarmTable.
759
+
760
+ If the 'hcAlarmNvStorage' BIT is set, then this agent allows
761
+ entries in the hcAlarmTable which will be recreated after a
762
+ system restart, as controlled by the hcAlarmStorageType
763
+ object.""",
764
+ }, # scalar
765
+ "hcAlarmNotifications" : {
766
+ "nodetype" : "node",
767
+ "moduleName" : "HC-ALARM-MIB",
768
+ "oid" : "1.3.6.1.2.1.16.29.2",
769
+ }, # node
770
+ "hcAlarmNotifPrefix" : {
771
+ "nodetype" : "node",
772
+ "moduleName" : "HC-ALARM-MIB",
773
+ "oid" : "1.3.6.1.2.1.16.29.2.0",
774
+ }, # node
775
+ "hcAlarmConformance" : {
776
+ "nodetype" : "node",
777
+ "moduleName" : "HC-ALARM-MIB",
778
+ "oid" : "1.3.6.1.2.1.16.29.3",
779
+ }, # node
780
+ "hcAlarmCompliances" : {
781
+ "nodetype" : "node",
782
+ "moduleName" : "HC-ALARM-MIB",
783
+ "oid" : "1.3.6.1.2.1.16.29.3.1",
784
+ }, # node
785
+ "hcAlarmGroups" : {
786
+ "nodetype" : "node",
787
+ "moduleName" : "HC-ALARM-MIB",
788
+ "oid" : "1.3.6.1.2.1.16.29.3.2",
789
+ }, # node
790
+ }, # nodes
791
+
792
+ "notifications" : {
793
+ "hcRisingAlarm" : {
794
+ "nodetype" : "notification",
795
+ "moduleName" : "HC-ALARM-MIB",
796
+ "oid" : "1.3.6.1.2.1.16.29.2.0.1",
797
+ "status" : "current",
798
+ "objects" : {
799
+ "hcAlarmVariable" : {
800
+ "nodetype" : "object",
801
+ "module" : "HC-ALARM-MIB"
802
+ },
803
+ "hcAlarmSampleType" : {
804
+ "nodetype" : "object",
805
+ "module" : "HC-ALARM-MIB"
806
+ },
807
+ "hcAlarmAbsValue" : {
808
+ "nodetype" : "object",
809
+ "module" : "HC-ALARM-MIB"
810
+ },
811
+ "hcAlarmValueStatus" : {
812
+ "nodetype" : "object",
813
+ "module" : "HC-ALARM-MIB"
814
+ },
815
+ "hcAlarmRisingThreshAbsValueLo" : {
816
+ "nodetype" : "object",
817
+ "module" : "HC-ALARM-MIB"
818
+ },
819
+ "hcAlarmRisingThreshAbsValueHi" : {
820
+ "nodetype" : "object",
821
+ "module" : "HC-ALARM-MIB"
822
+ },
823
+ "hcAlarmRisingThresholdValStatus" : {
824
+ "nodetype" : "object",
825
+ "module" : "HC-ALARM-MIB"
826
+ },
827
+ "hcAlarmRisingEventIndex" : {
828
+ "nodetype" : "object",
829
+ "module" : "HC-ALARM-MIB"
830
+ },
831
+ },
832
+ "description" :
833
+ """The SNMP notification that is generated when a high
834
+ capacity alarm entry crosses its rising threshold and
835
+ generates an event that is configured for sending SNMP
836
+ traps.
837
+
838
+ The hcAlarmEntry object instances identified in the OBJECTS
839
+
840
+
841
+
842
+ clause are from the entry that causes this notification to
843
+ be generated.""",
844
+ }, # notification
845
+ "hcFallingAlarm" : {
846
+ "nodetype" : "notification",
847
+ "moduleName" : "HC-ALARM-MIB",
848
+ "oid" : "1.3.6.1.2.1.16.29.2.0.2",
849
+ "status" : "current",
850
+ "objects" : {
851
+ "hcAlarmVariable" : {
852
+ "nodetype" : "object",
853
+ "module" : "HC-ALARM-MIB"
854
+ },
855
+ "hcAlarmSampleType" : {
856
+ "nodetype" : "object",
857
+ "module" : "HC-ALARM-MIB"
858
+ },
859
+ "hcAlarmAbsValue" : {
860
+ "nodetype" : "object",
861
+ "module" : "HC-ALARM-MIB"
862
+ },
863
+ "hcAlarmValueStatus" : {
864
+ "nodetype" : "object",
865
+ "module" : "HC-ALARM-MIB"
866
+ },
867
+ "hcAlarmFallingThreshAbsValueLo" : {
868
+ "nodetype" : "object",
869
+ "module" : "HC-ALARM-MIB"
870
+ },
871
+ "hcAlarmFallingThreshAbsValueHi" : {
872
+ "nodetype" : "object",
873
+ "module" : "HC-ALARM-MIB"
874
+ },
875
+ "hcAlarmFallingThresholdValStatus" : {
876
+ "nodetype" : "object",
877
+ "module" : "HC-ALARM-MIB"
878
+ },
879
+ "hcAlarmFallingEventIndex" : {
880
+ "nodetype" : "object",
881
+ "module" : "HC-ALARM-MIB"
882
+ },
883
+ },
884
+ "description" :
885
+ """The SNMP notification that is generated when a high
886
+ capacity alarm entry crosses its falling threshold and
887
+ generates an event that is configured for sending SNMP
888
+ traps.
889
+
890
+ The hcAlarmEntry object instances identified in the OBJECTS
891
+ clause are from the entry that causes this notification to
892
+ be generated.""",
893
+ }, # notification
894
+ }, # notifications
895
+
896
+ "groups" : {
897
+ "hcAlarmControlGroup" : {
898
+ "nodetype" : "group",
899
+ "moduleName" : "HC-ALARM-MIB",
900
+ "oid" : "1.3.6.1.2.1.16.29.3.2.1",
901
+ "status" : "current",
902
+ "members" : {
903
+ "hcAlarmInterval" : {
904
+ "nodetype" : "member",
905
+ "module" : "HC-ALARM-MIB"
906
+ },
907
+ "hcAlarmVariable" : {
908
+ "nodetype" : "member",
909
+ "module" : "HC-ALARM-MIB"
910
+ },
911
+ "hcAlarmSampleType" : {
912
+ "nodetype" : "member",
913
+ "module" : "HC-ALARM-MIB"
914
+ },
915
+ "hcAlarmAbsValue" : {
916
+ "nodetype" : "member",
917
+ "module" : "HC-ALARM-MIB"
918
+ },
919
+ "hcAlarmValueStatus" : {
920
+ "nodetype" : "member",
921
+ "module" : "HC-ALARM-MIB"
922
+ },
923
+ "hcAlarmStartupAlarm" : {
924
+ "nodetype" : "member",
925
+ "module" : "HC-ALARM-MIB"
926
+ },
927
+ "hcAlarmRisingThreshAbsValueLo" : {
928
+ "nodetype" : "member",
929
+ "module" : "HC-ALARM-MIB"
930
+ },
931
+ "hcAlarmRisingThreshAbsValueHi" : {
932
+ "nodetype" : "member",
933
+ "module" : "HC-ALARM-MIB"
934
+ },
935
+ "hcAlarmRisingThresholdValStatus" : {
936
+ "nodetype" : "member",
937
+ "module" : "HC-ALARM-MIB"
938
+ },
939
+ "hcAlarmFallingThreshAbsValueLo" : {
940
+ "nodetype" : "member",
941
+ "module" : "HC-ALARM-MIB"
942
+ },
943
+ "hcAlarmFallingThreshAbsValueHi" : {
944
+ "nodetype" : "member",
945
+ "module" : "HC-ALARM-MIB"
946
+ },
947
+ "hcAlarmFallingThresholdValStatus" : {
948
+ "nodetype" : "member",
949
+ "module" : "HC-ALARM-MIB"
950
+ },
951
+ "hcAlarmRisingEventIndex" : {
952
+ "nodetype" : "member",
953
+ "module" : "HC-ALARM-MIB"
954
+ },
955
+ "hcAlarmFallingEventIndex" : {
956
+ "nodetype" : "member",
957
+ "module" : "HC-ALARM-MIB"
958
+ },
959
+ "hcAlarmValueFailedAttempts" : {
960
+ "nodetype" : "member",
961
+ "module" : "HC-ALARM-MIB"
962
+ },
963
+ "hcAlarmOwner" : {
964
+ "nodetype" : "member",
965
+ "module" : "HC-ALARM-MIB"
966
+ },
967
+ "hcAlarmStorageType" : {
968
+ "nodetype" : "member",
969
+ "module" : "HC-ALARM-MIB"
970
+ },
971
+ "hcAlarmStatus" : {
972
+ "nodetype" : "member",
973
+ "module" : "HC-ALARM-MIB"
974
+ },
975
+ }, # members
976
+ "description" :
977
+ """A collection of objects used to configure entries for high
978
+ capacity alarm threshold monitoring purposes.""",
979
+ }, # group
980
+ "hcAlarmCapabilitiesGroup" : {
981
+ "nodetype" : "group",
982
+ "moduleName" : "HC-ALARM-MIB",
983
+ "oid" : "1.3.6.1.2.1.16.29.3.2.2",
984
+ "status" : "current",
985
+ "members" : {
986
+ "hcAlarmCapabilities" : {
987
+ "nodetype" : "member",
988
+ "module" : "HC-ALARM-MIB"
989
+ },
990
+ }, # members
991
+ "description" :
992
+ """A collection of objects used to indicate an agent's high
993
+ capacity alarm threshold monitoring capabilities.""",
994
+ }, # group
995
+ "hcAlarmNotificationsGroup" : {
996
+ "nodetype" : "group",
997
+ "moduleName" : "HC-ALARM-MIB",
998
+ "oid" : "1.3.6.1.2.1.16.29.3.2.3",
999
+ "status" : "current",
1000
+ "members" : {
1001
+ "hcRisingAlarm" : {
1002
+ "nodetype" : "member",
1003
+ "module" : "HC-ALARM-MIB"
1004
+ },
1005
+ "hcFallingAlarm" : {
1006
+ "nodetype" : "member",
1007
+ "module" : "HC-ALARM-MIB"
1008
+ },
1009
+ }, # members
1010
+ "description" :
1011
+ """A collection of notifications to deliver information
1012
+ related to a high capacity rising or falling threshold event
1013
+
1014
+
1015
+
1016
+ to a management application.""",
1017
+ }, # group
1018
+ }, # groups
1019
+
1020
+ "compliances" : {
1021
+ "hcAlarmCompliance" : {
1022
+ "nodetype" : "compliance",
1023
+ "moduleName" : "HC-ALARM-MIB",
1024
+ "oid" : "1.3.6.1.2.1.16.29.3.1.1",
1025
+ "status" : "current",
1026
+ "description" :
1027
+ """Describes the requirements for conformance to the High
1028
+ Capacity Alarm MIB.""",
1029
+ "requires" : {
1030
+ "hcAlarmControlGroup" : {
1031
+ "nodetype" : "mandatory",
1032
+ "module" : "HC-ALARM-MIB"
1033
+ },
1034
+ "hcAlarmCapabilitiesGroup" : {
1035
+ "nodetype" : "mandatory",
1036
+ "module" : "HC-ALARM-MIB"
1037
+ },
1038
+ "hcAlarmNotificationsGroup" : {
1039
+ "nodetype" : "mandatory",
1040
+ "module" : "HC-ALARM-MIB"
1041
+ },
1042
+ "rmonEventGroup" : {
1043
+ "nodetype" : "mandatory",
1044
+ "module" : "RMON-MIB"
1045
+ },
1046
+ }, # requires
1047
+ }, # compliance
1048
+ }, # compliances
1049
+
1050
+ }