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,1317 @@
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 TN3270E-RT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TN3270E-RT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TN3270E-RT-MIB",
11
+
12
+ "TN3270E-RT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """TN3270E Working Group""",
17
+ "contact" :
18
+ """Kenneth White (kennethw@vnet.ibm.com)
19
+ IBM Corp. - Dept. BRQA/Bldg. 501/G114
20
+ P.O. Box 12195
21
+ 3039 Cornwallis
22
+ RTP, NC 27709-2195
23
+
24
+ Robert Moore (remoore@us.ibm.com)
25
+ IBM Corp. - Dept. BRQA/Bldg. 501/G114
26
+ P.O. Box 12195
27
+ 3039 Cornwallis
28
+ RTP, NC 27709-2195
29
+ (919) 254-4436""",
30
+ "description" :
31
+ """This module defines a portion of the management
32
+ information base (MIB) that enables monitoring of
33
+ TN3270 and TN3270E clients' response times by a
34
+ TN3270E server.""",
35
+ "revisions" : (
36
+ {
37
+ "date" : "1998-07-27 00:00",
38
+ "description" :
39
+ """RFC nnnn (Proposed Standard)""",
40
+ },
41
+ ),
42
+ "identity node" : "tn3270eRtMIB",
43
+ },
44
+
45
+ "imports" : (
46
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
47
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
48
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
52
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
53
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
54
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
55
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
56
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
57
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
58
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
59
+ {"module" : "TN3270E-MIB", "name" : "tn3270eSrvrConfIndex"},
60
+ {"module" : "TN3270E-MIB", "name" : "tn3270eClientGroupName"},
61
+ {"module" : "TN3270E-MIB", "name" : "tn3270eResMapElementType"},
62
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
63
+ {"module" : "IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
64
+ {"module" : "SNA-NAU-MIB", "name" : "snanauMIB"},
65
+ ),
66
+
67
+ "nodes" : {
68
+ "tn3270eRtMIB" : {
69
+ "nodetype" : "node",
70
+ "moduleName" : "TN3270E-RT-MIB",
71
+ "oid" : "1.3.6.1.2.1.34.9",
72
+ "status" : "current",
73
+ }, # node
74
+ "tn3270eRtNotifications" : {
75
+ "nodetype" : "node",
76
+ "moduleName" : "TN3270E-RT-MIB",
77
+ "oid" : "1.3.6.1.2.1.34.9.0",
78
+ }, # node
79
+ "tn3270eRtObjects" : {
80
+ "nodetype" : "node",
81
+ "moduleName" : "TN3270E-RT-MIB",
82
+ "oid" : "1.3.6.1.2.1.34.9.1",
83
+ }, # node
84
+ "tn3270eRtCollCtlTable" : {
85
+ "nodetype" : "table",
86
+ "moduleName" : "TN3270E-RT-MIB",
87
+ "oid" : "1.3.6.1.2.1.34.9.1.1",
88
+ "status" : "current",
89
+ "description" :
90
+ """The response time monitoring collection control table,
91
+ which allows a management application to control the
92
+ types of response time data being collected, and the
93
+ clients for which it is being collected.
94
+
95
+ This table is indexed by tn3270eSrvrConfIndex and
96
+ tn3270eClientGroupName imported from the
97
+ TN3270E-MIB. tn3270eSrvrConfIndex indicates within
98
+ a host which TN3270E server an entry applies to.
99
+ tn3270eClientGroupName it identifies the set of IP
100
+ clients for which response time data is being collected.
101
+ The particular IP clients making up the set are identified
102
+ in the tn3270eClientGroupTable in the TN3270E-MIB.""",
103
+ }, # table
104
+ "tn3270eRtCollCtlEntry" : {
105
+ "nodetype" : "row",
106
+ "moduleName" : "TN3270E-RT-MIB",
107
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1",
108
+ "create" : "true",
109
+ "status" : "current",
110
+ "linkage" : [
111
+ "tn3270eSrvrConfIndex",
112
+ "tn3270eClientGroupName",
113
+ ],
114
+ "description" :
115
+ """An entry in the TN3270E response time monitoring collection
116
+ control table. To handle the case of multiple TN3270E
117
+ servers on the same host, the first index of this table is
118
+ the tn3270eSrvrConfIndex from the TN3270E-MIB.""",
119
+ }, # row
120
+ "tn3270eRtCollCtlType" : {
121
+ "nodetype" : "column",
122
+ "moduleName" : "TN3270E-RT-MIB",
123
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.2",
124
+ "status" : "current",
125
+ "syntax" : {
126
+ "type" : {
127
+ "basetype" : "Bits",
128
+ "aggregate" : {
129
+ "nodetype" : "namednumber",
130
+ "number" : "0"
131
+ },
132
+ "excludeIpComponent" : {
133
+ "nodetype" : "namednumber",
134
+ "number" : "1"
135
+ },
136
+ "ddr" : {
137
+ "nodetype" : "namednumber",
138
+ "number" : "2"
139
+ },
140
+ "average" : {
141
+ "nodetype" : "namednumber",
142
+ "number" : "3"
143
+ },
144
+ "buckets" : {
145
+ "nodetype" : "namednumber",
146
+ "number" : "4"
147
+ },
148
+ "traps" : {
149
+ "nodetype" : "namednumber",
150
+ "number" : "5"
151
+ },
152
+ },
153
+ },
154
+ "access" : "readwrite",
155
+ "description" :
156
+ """This object controls what types of response time data to
157
+ collect, whether to summarize the data across the members
158
+ of a client group or keep it individually, whether to
159
+ introduce dynamic definite responses, and whether to
160
+ generate traps.
161
+ aggregate(0) - Aggregate response time data for the
162
+ client group as a whole. If this bit
163
+ is set to 0, then maintain response
164
+ time data separately for each member
165
+ of the client group.
166
+ excludeIpComponent(1) - Do not include the IP-network
167
+ component in any response times.
168
+ ddr(2) - Enable dynamic definite response.
169
+ average(3) - Produce an average response time
170
+ based on a specified collection
171
+ interval.
172
+ buckets(4) - Maintain tn3270eRtDataBucket values in
173
+ a corresponding tn3270eRtDataEntry,
174
+ based on the bucket boundaries specified
175
+ in the tn3270eRtCollCtlBucketBndry
176
+ objects .
177
+ traps(5) - generate the notifications specified
178
+ in this MIB module. The
179
+ tn3270eRtExceeded and tn3270eRtOkay
180
+ notifications are generated only if
181
+ average(3) is also specified.""",
182
+ }, # column
183
+ "tn3270eRtCollCtlSPeriod" : {
184
+ "nodetype" : "column",
185
+ "moduleName" : "TN3270E-RT-MIB",
186
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.3",
187
+ "status" : "current",
188
+ "syntax" : {
189
+ "type" : {
190
+ "basetype" : "Unsigned32",
191
+ "ranges" : [
192
+ {
193
+ "min" : "15",
194
+ "max" : "86400"
195
+ },
196
+ ],
197
+ "range" : {
198
+ "min" : "15",
199
+ "max" : "86400"
200
+ },
201
+ },
202
+ },
203
+ "access" : "readwrite",
204
+ "default" : "20",
205
+ "units" : "seconds",
206
+ "description" :
207
+ """The number of seconds that defines the sample period.
208
+ The actual interval is defined as tn3270eRtCollCtlSPeriod
209
+ times tn3270eRtCollCtlSPMult.
210
+
211
+ The value of this object is used only if the corresponding
212
+ tn3270eRtCollCtlType has the average(3) setting.""",
213
+ }, # column
214
+ "tn3270eRtCollCtlSPMult" : {
215
+ "nodetype" : "column",
216
+ "moduleName" : "TN3270E-RT-MIB",
217
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.4",
218
+ "status" : "current",
219
+ "syntax" : {
220
+ "type" : {
221
+ "basetype" : "Unsigned32",
222
+ "ranges" : [
223
+ {
224
+ "min" : "1",
225
+ "max" : "5760"
226
+ },
227
+ ],
228
+ "range" : {
229
+ "min" : "1",
230
+ "max" : "5760"
231
+ },
232
+ },
233
+ },
234
+ "access" : "readwrite",
235
+ "default" : "30",
236
+ "units" : "period",
237
+ "description" :
238
+ """The sample period multiplier; this value is multiplied by
239
+ the sample period, tn3270eRtCollCtlSPeriod, to determine
240
+ the collection interval.
241
+ Sliding-window average calculation can, if necessary, be
242
+ disabled, by setting the sample period multiplier,
243
+ tn3270eRtCollCtlSPMult, to 1, and setting the sample
244
+ period, tn3270eRtCollCtlSPeriod, to the required
245
+ collection interval.
246
+
247
+ The value of this object is used only if the corresponding
248
+ tn3270eRtCollCtlType has the average(3) setting.""",
249
+ }, # column
250
+ "tn3270eRtCollCtlThreshHigh" : {
251
+ "nodetype" : "column",
252
+ "moduleName" : "TN3270E-RT-MIB",
253
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.5",
254
+ "status" : "current",
255
+ "syntax" : {
256
+ "type" : { "module" :"", "name" : "Unsigned32"},
257
+ },
258
+ "access" : "readwrite",
259
+ "default" : "0",
260
+ "units" : "seconds",
261
+ "description" :
262
+ """The threshold for generating a tn3270eRtExceeded
263
+ notification, signalling that a monitored total response
264
+ time has exceeded the specified limit. A value of zero
265
+ for this object suppresses generation of this notification.
266
+ The value of this object is used only if the corresponding
267
+ tn3270eRtCollCtlType has average(3) and traps(5) selected.
268
+
269
+ A tn3270eRtExceeded notification is not generated again for a
270
+ tn3270eRtDataEntry until an average response time falling below
271
+ the low threshold tn3270eRtCollCtlThreshLow specified for the
272
+ client group has occurred for the entry.""",
273
+ }, # column
274
+ "tn3270eRtCollCtlThreshLow" : {
275
+ "nodetype" : "column",
276
+ "moduleName" : "TN3270E-RT-MIB",
277
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.6",
278
+ "status" : "current",
279
+ "syntax" : {
280
+ "type" : { "module" :"", "name" : "Unsigned32"},
281
+ },
282
+ "access" : "readwrite",
283
+ "default" : "0",
284
+ "units" : "seconds",
285
+ "description" :
286
+ """The threshold for generating a tn3270eRtOkay notification,
287
+ signalling that a monitored total response time has fallen
288
+ below the specified limit. A value of zero for this object
289
+ suppresses generation of this notification. The value of
290
+ this object is used only if the corresponding
291
+ tn3270eRtCollCtlType has average(3) and traps(5) selected.
292
+
293
+ A tn3270eRtOkay notification is not generated again for a
294
+ tn3270eRtDataEntry until an average response time
295
+ exceeding the high threshold tn3270eRtCollCtlThreshHigh
296
+ specified for the client group has occurred for the entry.""",
297
+ }, # column
298
+ "tn3270eRtCollCtlIdleCount" : {
299
+ "nodetype" : "column",
300
+ "moduleName" : "TN3270E-RT-MIB",
301
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.7",
302
+ "status" : "current",
303
+ "syntax" : {
304
+ "type" : { "module" :"", "name" : "Unsigned32"},
305
+ },
306
+ "access" : "readwrite",
307
+ "default" : "1",
308
+ "units" : "transactions",
309
+ "description" :
310
+ """The value of this object is used to determine whether a
311
+ sample that yields an average response time exceeding the
312
+ value of tn3270eRtCollCtlThreshHigh was a statistically
313
+ valid one. If the following statement is true, then the
314
+ sample was statistically valid, and so a tn3270eRtExceeded
315
+ notification should be generated:
316
+
317
+ AvgCountTrans * ((AvgRt/ThreshHigh - 1) ** 2) >= IdleCount
318
+
319
+ This comparison is done only if the corresponding
320
+ tn3270eRtCollCtlType has average(3) and traps(5) selected.""",
321
+ }, # column
322
+ "tn3270eRtCollCtlBucketBndry1" : {
323
+ "nodetype" : "column",
324
+ "moduleName" : "TN3270E-RT-MIB",
325
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.8",
326
+ "status" : "current",
327
+ "syntax" : {
328
+ "type" : { "module" :"", "name" : "Unsigned32"},
329
+ },
330
+ "access" : "readwrite",
331
+ "default" : "10",
332
+ "units" : "tenths of seconds",
333
+ "description" :
334
+ """The value of this object defines the range of transaction
335
+ response times counted in the Tn3270eRtDataBucket1Rts
336
+ object: those less than or equal to this value.""",
337
+ }, # column
338
+ "tn3270eRtCollCtlBucketBndry2" : {
339
+ "nodetype" : "column",
340
+ "moduleName" : "TN3270E-RT-MIB",
341
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.9",
342
+ "status" : "current",
343
+ "syntax" : {
344
+ "type" : { "module" :"", "name" : "Unsigned32"},
345
+ },
346
+ "access" : "readwrite",
347
+ "default" : "20",
348
+ "units" : "tenths of seconds",
349
+ "description" :
350
+ """The value of this object, together with that of the
351
+ tn3270eRtCollCtlBucketBndry1 object, defines the range
352
+ of transaction response times counted in the
353
+ Tn3270eRtDataBucket2Rts object: those greater than the
354
+ value of the tn3270eRtCollCtlBucketBndry1 object, and
355
+ less than or equal to the value of this object.""",
356
+ }, # column
357
+ "tn3270eRtCollCtlBucketBndry3" : {
358
+ "nodetype" : "column",
359
+ "moduleName" : "TN3270E-RT-MIB",
360
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.10",
361
+ "status" : "current",
362
+ "syntax" : {
363
+ "type" : { "module" :"", "name" : "Unsigned32"},
364
+ },
365
+ "access" : "readwrite",
366
+ "default" : "50",
367
+ "units" : "tenths of seconds",
368
+ "description" :
369
+ """The value of this object, together with that of the
370
+ tn3270eRtCollCtlBucketBndry2 object, defines the range of
371
+ transaction response times counted in the
372
+ Tn3270eRtDataBucket3Rts object: those greater than the
373
+ value of the tn3270eRtCollCtlBucketBndry2 object, and less
374
+ than or equal to the value of this object.""",
375
+ }, # column
376
+ "tn3270eRtCollCtlBucketBndry4" : {
377
+ "nodetype" : "column",
378
+ "moduleName" : "TN3270E-RT-MIB",
379
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.11",
380
+ "status" : "current",
381
+ "syntax" : {
382
+ "type" : { "module" :"", "name" : "Unsigned32"},
383
+ },
384
+ "access" : "readwrite",
385
+ "default" : "100",
386
+ "units" : "tenths of seconds",
387
+ "description" :
388
+ """The value of this object, together with that of the
389
+ tn3270eRtCollCtlBucketBndry3 object, defines the range
390
+ of transaction response times counted in the
391
+ Tn3270eRtDataBucket4Rts object: those greater than the
392
+ value of the tn3270eRtCollCtlBucketBndry3 object, and
393
+ less than or equal to the value of this object.
394
+
395
+ The value of this object also defines the range of
396
+ transaction response times counted in the
397
+ Tn3270eRtDataBucket5Rts object: those greater than the
398
+ value of this object.""",
399
+ }, # column
400
+ "tn3270eRtCollCtlRowStatus" : {
401
+ "nodetype" : "column",
402
+ "moduleName" : "TN3270E-RT-MIB",
403
+ "oid" : "1.3.6.1.2.1.34.9.1.1.1.12",
404
+ "status" : "current",
405
+ "syntax" : {
406
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
407
+ },
408
+ "access" : "readwrite",
409
+ "description" :
410
+ """This object allows entries to be created and deleted
411
+ in the tn3270eRtCollCtlTable. An entry in this table
412
+ is deleted by setting this object to destroy(6).
413
+ Deleting an entry in this table has the side-effect
414
+ of removing all entries from the tn3270eRtDataTable
415
+ that are associated with the entry being deleted.""",
416
+ }, # column
417
+ "tn3270eRtDataTable" : {
418
+ "nodetype" : "table",
419
+ "moduleName" : "TN3270E-RT-MIB",
420
+ "oid" : "1.3.6.1.2.1.34.9.1.2",
421
+ "status" : "current",
422
+ "description" :
423
+ """The response time data table. Entries in this table are
424
+ created based on entries in the tn3270eRtCollCtlTable.""",
425
+ }, # table
426
+ "tn3270eRtDataEntry" : {
427
+ "nodetype" : "row",
428
+ "moduleName" : "TN3270E-RT-MIB",
429
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1",
430
+ "status" : "current",
431
+ "linkage" : [
432
+ "tn3270eSrvrConfIndex",
433
+ "tn3270eClientGroupName",
434
+ "tn3270eRtDataClientAddrType",
435
+ "tn3270eRtDataClientAddress",
436
+ "tn3270eRtDataClientPort",
437
+ ],
438
+ "description" :
439
+ """Entries in this table are created based upon the
440
+ tn3270eRtCollCtlTable. When the corresponding
441
+ tn3270eRtCollCtlType has aggregate(0) specified, a single
442
+ entry is created in this table, with a tn3270eRtDataClientAddrType
443
+ of unknown(0), a zero-length octet string value for
444
+ tn3270eRtDataClientAddress, and a tn3270eRtDataClientPort value of
445
+ 0. When aggregate(0) is not specified, a separate entry is
446
+ created for each client in the group.
447
+
448
+ Note that the following objects defined within an entry in this
449
+ table can wrap:
450
+ tn3270eRtDataTotalRts
451
+ tn3270eRtDataTotalIpRts
452
+ tn3270eRtDataCountTrans
453
+ tn3270eRtDataCountDrs
454
+ tn3270eRtDataElapsRnTrpSq
455
+ tn3270eRtDataElapsIpRtSq
456
+ tn3270eRtDataBucket1Rts
457
+ tn3270eRtDataBucket2Rts
458
+ tn3270eRtDataBucket3Rts
459
+ tn3270eRtDataBucket4Rts
460
+ tn3270eRtDataBucket5Rts""",
461
+ }, # row
462
+ "tn3270eRtDataClientAddrType" : {
463
+ "nodetype" : "column",
464
+ "moduleName" : "TN3270E-RT-MIB",
465
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.1",
466
+ "status" : "current",
467
+ "syntax" : {
468
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddrType"},
469
+ },
470
+ "access" : "noaccess",
471
+ "description" :
472
+ """Indicates the type of address represented by the value
473
+ of tn3270eRtDataClientAddress. The value unknown(0) is
474
+ used if aggregate data is being collected for the client
475
+ group.""",
476
+ }, # column
477
+ "tn3270eRtDataClientAddress" : {
478
+ "nodetype" : "column",
479
+ "moduleName" : "TN3270E-RT-MIB",
480
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.2",
481
+ "status" : "current",
482
+ "syntax" : {
483
+ "type" : { "module" :"IANATn3270eTC-MIB", "name" : "IANATn3270eAddress"},
484
+ },
485
+ "access" : "noaccess",
486
+ "description" :
487
+ """Contains the IP address of the TN3270 client being
488
+ monitored. A zero-length octet string is used if
489
+ aggregate data is being collected for the client group.""",
490
+ }, # column
491
+ "tn3270eRtDataClientPort" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "TN3270E-RT-MIB",
494
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.3",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : {
498
+ "basetype" : "Unsigned32",
499
+ "ranges" : [
500
+ {
501
+ "min" : "0",
502
+ "max" : "65535"
503
+ },
504
+ ],
505
+ "range" : {
506
+ "min" : "0",
507
+ "max" : "65535"
508
+ },
509
+ },
510
+ },
511
+ "access" : "noaccess",
512
+ "description" :
513
+ """Contains the client port number of the TN3270 client being
514
+ monitored. The value 0 is used if aggregate data is being
515
+ collected for the client group, or if the
516
+ tn3270eRtDataClientAddrType identifies an address type that
517
+ does not support ports.""",
518
+ }, # column
519
+ "tn3270eRtDataAvgRt" : {
520
+ "nodetype" : "column",
521
+ "moduleName" : "TN3270E-RT-MIB",
522
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.4",
523
+ "status" : "current",
524
+ "syntax" : {
525
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
526
+ },
527
+ "access" : "readonly",
528
+ "default" : "0",
529
+ "units" : "tenths of seconds",
530
+ "description" :
531
+ """The average total response time measured over the last
532
+ collection interval.""",
533
+ }, # column
534
+ "tn3270eRtDataAvgIpRt" : {
535
+ "nodetype" : "column",
536
+ "moduleName" : "TN3270E-RT-MIB",
537
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.5",
538
+ "status" : "current",
539
+ "syntax" : {
540
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
541
+ },
542
+ "access" : "readonly",
543
+ "default" : "0",
544
+ "units" : "tenths of seconds",
545
+ "description" :
546
+ """The average IP response time measured over the last
547
+ collection interval.""",
548
+ }, # column
549
+ "tn3270eRtDataAvgCountTrans" : {
550
+ "nodetype" : "column",
551
+ "moduleName" : "TN3270E-RT-MIB",
552
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.6",
553
+ "status" : "current",
554
+ "syntax" : {
555
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
556
+ },
557
+ "access" : "readonly",
558
+ "units" : "transactions",
559
+ "description" :
560
+ """The sliding transaction count used for calculating the
561
+ values of the tn3270eRtDataAvgRt and tn3270eRtDataAvgIpRt
562
+ objects. The actual transaction count is available in
563
+ the tn3270eRtDataCountTrans object.
564
+
565
+ The initial value of this object, before any averages have
566
+ been calculated, is 0.""",
567
+ }, # column
568
+ "tn3270eRtDataIntTimeStamp" : {
569
+ "nodetype" : "column",
570
+ "moduleName" : "TN3270E-RT-MIB",
571
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.7",
572
+ "status" : "current",
573
+ "syntax" : {
574
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
575
+ },
576
+ "access" : "readonly",
577
+ "description" :
578
+ """The date and time of the last interval that
579
+ tn3270eRtDataAvgRt, tn3270eRtDataAvgIpRt, and
580
+ tn3270eRtDataAvgCountTrans were calculated.
581
+
582
+ Prior to the calculation of the first interval
583
+ averages, this object returns the value
584
+ 0x0000000000000000000000. When this value is
585
+ returned, the remaining objects in the entry have
586
+ no significance.""",
587
+ }, # column
588
+ "tn3270eRtDataTotalRts" : {
589
+ "nodetype" : "column",
590
+ "moduleName" : "TN3270E-RT-MIB",
591
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.8",
592
+ "status" : "current",
593
+ "syntax" : {
594
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
595
+ },
596
+ "access" : "readonly",
597
+ "units" : "tenths of seconds",
598
+ "description" :
599
+ """The count of the total response times collected.
600
+
601
+ A management application can detect discontinuities in this
602
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
603
+ object.""",
604
+ }, # column
605
+ "tn3270eRtDataTotalIpRts" : {
606
+ "nodetype" : "column",
607
+ "moduleName" : "TN3270E-RT-MIB",
608
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.9",
609
+ "status" : "current",
610
+ "syntax" : {
611
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
612
+ },
613
+ "access" : "readonly",
614
+ "units" : "tenths of seconds",
615
+ "description" :
616
+ """The count of the total IP-network response times
617
+ collected.
618
+
619
+ A management application can detect discontinuities in this
620
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
621
+ object.""",
622
+ }, # column
623
+ "tn3270eRtDataCountTrans" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "TN3270E-RT-MIB",
626
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.10",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
630
+ },
631
+ "access" : "readonly",
632
+ "units" : "transactions",
633
+ "description" :
634
+ """The count of the total number of transactions detected.
635
+
636
+ A management application can detect discontinuities in this
637
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
638
+ object.""",
639
+ }, # column
640
+ "tn3270eRtDataCountDrs" : {
641
+ "nodetype" : "column",
642
+ "moduleName" : "TN3270E-RT-MIB",
643
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.11",
644
+ "status" : "current",
645
+ "syntax" : {
646
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
647
+ },
648
+ "access" : "readonly",
649
+ "units" : "definite responses",
650
+ "description" :
651
+ """The count of the total number of definite responses
652
+ detected.
653
+
654
+ A management application can detect discontinuities in this
655
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
656
+ object.""",
657
+ }, # column
658
+ "tn3270eRtDataElapsRndTrpSq" : {
659
+ "nodetype" : "column",
660
+ "moduleName" : "TN3270E-RT-MIB",
661
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.12",
662
+ "status" : "current",
663
+ "syntax" : {
664
+ "type" : { "module" :"", "name" : "Unsigned32"},
665
+ },
666
+ "access" : "readonly",
667
+ "default" : "0",
668
+ "units" : "tenths of seconds squared",
669
+ "description" :
670
+ """The sum of the elapsed round trip time squared. The sum
671
+ of the squares is kept in order to enable calculation of
672
+ a variance.""",
673
+ }, # column
674
+ "tn3270eRtDataElapsIpRtSq" : {
675
+ "nodetype" : "column",
676
+ "moduleName" : "TN3270E-RT-MIB",
677
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.13",
678
+ "status" : "current",
679
+ "syntax" : {
680
+ "type" : { "module" :"", "name" : "Unsigned32"},
681
+ },
682
+ "access" : "readonly",
683
+ "default" : "0",
684
+ "units" : "tenths of seconds squared",
685
+ "description" :
686
+ """The sum of the elapsed IP round trip time squared.
687
+ The sum of the squares is kept in order to enable
688
+ calculation of a variance.""",
689
+ }, # column
690
+ "tn3270eRtDataBucket1Rts" : {
691
+ "nodetype" : "column",
692
+ "moduleName" : "TN3270E-RT-MIB",
693
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.14",
694
+ "status" : "current",
695
+ "syntax" : {
696
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
697
+ },
698
+ "access" : "readonly",
699
+ "description" :
700
+ """The count of the response times falling into bucket 1.
701
+
702
+ A management application can detect discontinuities in this
703
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
704
+ object.""",
705
+ }, # column
706
+ "tn3270eRtDataBucket2Rts" : {
707
+ "nodetype" : "column",
708
+ "moduleName" : "TN3270E-RT-MIB",
709
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.15",
710
+ "status" : "current",
711
+ "syntax" : {
712
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
713
+ },
714
+ "access" : "readonly",
715
+ "description" :
716
+ """The count of the response times falling into bucket 2.
717
+
718
+ A management application can detect discontinuities in this
719
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
720
+ object.""",
721
+ }, # column
722
+ "tn3270eRtDataBucket3Rts" : {
723
+ "nodetype" : "column",
724
+ "moduleName" : "TN3270E-RT-MIB",
725
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.16",
726
+ "status" : "current",
727
+ "syntax" : {
728
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
729
+ },
730
+ "access" : "readonly",
731
+ "description" :
732
+ """The count of the response times falling into bucket 3.
733
+
734
+ A management application can detect discontinuities in this
735
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
736
+ object.""",
737
+ }, # column
738
+ "tn3270eRtDataBucket4Rts" : {
739
+ "nodetype" : "column",
740
+ "moduleName" : "TN3270E-RT-MIB",
741
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.17",
742
+ "status" : "current",
743
+ "syntax" : {
744
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
745
+ },
746
+ "access" : "readonly",
747
+ "description" :
748
+ """The count of the response times falling into bucket 4.
749
+
750
+ A management application can detect discontinuities in this
751
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
752
+ object.""",
753
+ }, # column
754
+ "tn3270eRtDataBucket5Rts" : {
755
+ "nodetype" : "column",
756
+ "moduleName" : "TN3270E-RT-MIB",
757
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.18",
758
+ "status" : "current",
759
+ "syntax" : {
760
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
761
+ },
762
+ "access" : "readonly",
763
+ "description" :
764
+ """The count of the response times falling into bucket 5.
765
+
766
+ A management application can detect discontinuities in this
767
+ counter by monitoring the tn3270eRtDataDiscontinuityTime
768
+ object.""",
769
+ }, # column
770
+ "tn3270eRtDataRtMethod" : {
771
+ "nodetype" : "column",
772
+ "moduleName" : "TN3270E-RT-MIB",
773
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.19",
774
+ "status" : "current",
775
+ "syntax" : {
776
+ "type" : {
777
+ "basetype" : "Enumeration",
778
+ "none" : {
779
+ "nodetype" : "namednumber",
780
+ "number" : "0"
781
+ },
782
+ "responses" : {
783
+ "nodetype" : "namednumber",
784
+ "number" : "1"
785
+ },
786
+ "timingMark" : {
787
+ "nodetype" : "namednumber",
788
+ "number" : "2"
789
+ },
790
+ },
791
+ },
792
+ "access" : "readonly",
793
+ "description" :
794
+ """The value of this object indicates the method that was
795
+ used in calculating the IP network time.
796
+
797
+ The value 'none(0) indicates that response times were not
798
+ calculated for the IP network.""",
799
+ }, # column
800
+ "tn3270eRtDataDiscontinuityTime" : {
801
+ "nodetype" : "column",
802
+ "moduleName" : "TN3270E-RT-MIB",
803
+ "oid" : "1.3.6.1.2.1.34.9.1.2.1.20",
804
+ "status" : "current",
805
+ "syntax" : {
806
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
807
+ },
808
+ "access" : "readonly",
809
+ "description" :
810
+ """The value of sysUpTime on the most recent occasion at
811
+ which one or more of this entry's counter objects
812
+ suffered a discontinuity. This may happen if a TN3270E
813
+ server is stopped and then restarted, and local methods
814
+ are used to set up collection policy
815
+ (tn3270eRtCollCtlTable entries).""",
816
+ }, # column
817
+ "tn3270eRtSpinLock" : {
818
+ "nodetype" : "scalar",
819
+ "moduleName" : "TN3270E-RT-MIB",
820
+ "oid" : "1.3.6.1.2.1.34.9.1.3",
821
+ "status" : "current",
822
+ "syntax" : {
823
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
824
+ },
825
+ "access" : "readwrite",
826
+ "description" :
827
+ """An advisory lock used to allow cooperating TN3270E-RT-MIB
828
+ applications to coordinate their use of the
829
+ tn3270eRtCollCtlTable.
830
+ When creating a new entry or altering an existing entry
831
+ in the tn3270eRtCollCtlTable, an application should make
832
+ use of tn3270eRtSpinLock to serialize application changes
833
+ or additions.
834
+
835
+ Since this is an advisory lock, the use of this lock is
836
+ not enforced.""",
837
+ }, # scalar
838
+ "tn3270eRtConformance" : {
839
+ "nodetype" : "node",
840
+ "moduleName" : "TN3270E-RT-MIB",
841
+ "oid" : "1.3.6.1.2.1.34.9.3",
842
+ }, # node
843
+ "tn3270eRtGroups" : {
844
+ "nodetype" : "node",
845
+ "moduleName" : "TN3270E-RT-MIB",
846
+ "oid" : "1.3.6.1.2.1.34.9.3.1",
847
+ }, # node
848
+ "tn3270eRtCompliances" : {
849
+ "nodetype" : "node",
850
+ "moduleName" : "TN3270E-RT-MIB",
851
+ "oid" : "1.3.6.1.2.1.34.9.3.2",
852
+ }, # node
853
+ }, # nodes
854
+
855
+ "notifications" : {
856
+ "tn3270eRtExceeded" : {
857
+ "nodetype" : "notification",
858
+ "moduleName" : "TN3270E-RT-MIB",
859
+ "oid" : "1.3.6.1.2.1.34.9.0.1",
860
+ "status" : "current",
861
+ "objects" : {
862
+ "tn3270eRtDataIntTimeStamp" : {
863
+ "nodetype" : "object",
864
+ "module" : "TN3270E-RT-MIB"
865
+ },
866
+ "tn3270eRtDataAvgRt" : {
867
+ "nodetype" : "object",
868
+ "module" : "TN3270E-RT-MIB"
869
+ },
870
+ "tn3270eRtDataAvgIpRt" : {
871
+ "nodetype" : "object",
872
+ "module" : "TN3270E-RT-MIB"
873
+ },
874
+ "tn3270eRtDataAvgCountTrans" : {
875
+ "nodetype" : "object",
876
+ "module" : "TN3270E-RT-MIB"
877
+ },
878
+ "tn3270eRtDataRtMethod" : {
879
+ "nodetype" : "object",
880
+ "module" : "TN3270E-RT-MIB"
881
+ },
882
+ },
883
+ "description" :
884
+ """This notification is generated when the average response
885
+ time, tn3270eRtDataAvgRt, exceeds
886
+ tn3270eRtCollCtlThresholdHigh at the end of a collection
887
+ interval specified by tn3270eCollCtlSPeriod
888
+ times tn3270eCollCtlSPMult. Note that the corresponding
889
+ tn3270eCollCtlType must have traps(5) and average(3) set
890
+ for this notification to be generated. In addition,
891
+ tn3270eRtDataAvgCountTrans, tn3270eRtCollCtlThreshHigh, and
892
+ tn3270eRtDataAvgRt are algorithmically compared to
893
+ tn3270eRtCollCtlIdleCount for determination if this
894
+ notification will be suppressed.""",
895
+ }, # notification
896
+ "tn3270eRtOkay" : {
897
+ "nodetype" : "notification",
898
+ "moduleName" : "TN3270E-RT-MIB",
899
+ "oid" : "1.3.6.1.2.1.34.9.0.2",
900
+ "status" : "current",
901
+ "objects" : {
902
+ "tn3270eRtDataIntTimeStamp" : {
903
+ "nodetype" : "object",
904
+ "module" : "TN3270E-RT-MIB"
905
+ },
906
+ "tn3270eRtDataAvgRt" : {
907
+ "nodetype" : "object",
908
+ "module" : "TN3270E-RT-MIB"
909
+ },
910
+ "tn3270eRtDataAvgIpRt" : {
911
+ "nodetype" : "object",
912
+ "module" : "TN3270E-RT-MIB"
913
+ },
914
+ "tn3270eRtDataAvgCountTrans" : {
915
+ "nodetype" : "object",
916
+ "module" : "TN3270E-RT-MIB"
917
+ },
918
+ "tn3270eRtDataRtMethod" : {
919
+ "nodetype" : "object",
920
+ "module" : "TN3270E-RT-MIB"
921
+ },
922
+ },
923
+ "description" :
924
+ """This notification is generated when the average response
925
+ time, tn3270eRtDataAvgRt, falls below
926
+ tn3270eRtCollCtlThresholdLow at the end of a collection
927
+ interval specified by tn3270eCollCtlSPeriod times
928
+ tn3270eCollCtlSPMult, after a tn3270eRtExceeded
929
+ notification was generated. Note that the corresponding
930
+ tn3270eCollCtlType must have traps(5) and average(3)
931
+ set for this notification to be generated.""",
932
+ }, # notification
933
+ "tn3270eRtCollStart" : {
934
+ "nodetype" : "notification",
935
+ "moduleName" : "TN3270E-RT-MIB",
936
+ "oid" : "1.3.6.1.2.1.34.9.0.3",
937
+ "status" : "current",
938
+ "objects" : {
939
+ "tn3270eRtDataRtMethod" : {
940
+ "nodetype" : "object",
941
+ "module" : "TN3270E-RT-MIB"
942
+ },
943
+ "tn3270eResMapElementType" : {
944
+ "nodetype" : "object",
945
+ "module" : "TN3270E-MIB"
946
+ },
947
+ },
948
+ "description" :
949
+ """This notification is generated when response time data
950
+ collection is enabled for a member of a client group.
951
+ In order for this notification to occur the corresponding
952
+ tn3270eRtCollCtlType must have traps(5) selected.
953
+
954
+ tn3270eResMapElementType contains a valid value only if
955
+ tn3270eRtDataClientAddress contains a valid address
956
+ (rather than a zero-length octet string).""",
957
+ }, # notification
958
+ "tn3270eRtCollEnd" : {
959
+ "nodetype" : "notification",
960
+ "moduleName" : "TN3270E-RT-MIB",
961
+ "oid" : "1.3.6.1.2.1.34.9.0.4",
962
+ "status" : "current",
963
+ "objects" : {
964
+ "tn3270eRtDataDiscontinuityTime" : {
965
+ "nodetype" : "object",
966
+ "module" : "TN3270E-RT-MIB"
967
+ },
968
+ "tn3270eRtDataAvgRt" : {
969
+ "nodetype" : "object",
970
+ "module" : "TN3270E-RT-MIB"
971
+ },
972
+ "tn3270eRtDataAvgIpRt" : {
973
+ "nodetype" : "object",
974
+ "module" : "TN3270E-RT-MIB"
975
+ },
976
+ "tn3270eRtDataAvgCountTrans" : {
977
+ "nodetype" : "object",
978
+ "module" : "TN3270E-RT-MIB"
979
+ },
980
+ "tn3270eRtDataIntTimeStamp" : {
981
+ "nodetype" : "object",
982
+ "module" : "TN3270E-RT-MIB"
983
+ },
984
+ "tn3270eRtDataTotalRts" : {
985
+ "nodetype" : "object",
986
+ "module" : "TN3270E-RT-MIB"
987
+ },
988
+ "tn3270eRtDataTotalIpRts" : {
989
+ "nodetype" : "object",
990
+ "module" : "TN3270E-RT-MIB"
991
+ },
992
+ "tn3270eRtDataCountTrans" : {
993
+ "nodetype" : "object",
994
+ "module" : "TN3270E-RT-MIB"
995
+ },
996
+ "tn3270eRtDataCountDrs" : {
997
+ "nodetype" : "object",
998
+ "module" : "TN3270E-RT-MIB"
999
+ },
1000
+ "tn3270eRtDataElapsRndTrpSq" : {
1001
+ "nodetype" : "object",
1002
+ "module" : "TN3270E-RT-MIB"
1003
+ },
1004
+ "tn3270eRtDataElapsIpRtSq" : {
1005
+ "nodetype" : "object",
1006
+ "module" : "TN3270E-RT-MIB"
1007
+ },
1008
+ "tn3270eRtDataBucket1Rts" : {
1009
+ "nodetype" : "object",
1010
+ "module" : "TN3270E-RT-MIB"
1011
+ },
1012
+ "tn3270eRtDataBucket2Rts" : {
1013
+ "nodetype" : "object",
1014
+ "module" : "TN3270E-RT-MIB"
1015
+ },
1016
+ "tn3270eRtDataBucket3Rts" : {
1017
+ "nodetype" : "object",
1018
+ "module" : "TN3270E-RT-MIB"
1019
+ },
1020
+ "tn3270eRtDataBucket4Rts" : {
1021
+ "nodetype" : "object",
1022
+ "module" : "TN3270E-RT-MIB"
1023
+ },
1024
+ "tn3270eRtDataBucket5Rts" : {
1025
+ "nodetype" : "object",
1026
+ "module" : "TN3270E-RT-MIB"
1027
+ },
1028
+ "tn3270eRtDataRtMethod" : {
1029
+ "nodetype" : "object",
1030
+ "module" : "TN3270E-RT-MIB"
1031
+ },
1032
+ },
1033
+ "description" :
1034
+ """This notification is generated when an tn3270eRtDataEntry
1035
+ is deleted after being active (actual data collected), in
1036
+ order to enable a management application monitoring an
1037
+ tn3270eRtDataEntry to get the entry's final values. Note
1038
+ that the corresponding tn3270eCollCtlType must have traps(5)
1039
+ set for this notification to be generated.""",
1040
+ }, # notification
1041
+ }, # notifications
1042
+
1043
+ "groups" : {
1044
+ "tn3270eRtGroup" : {
1045
+ "nodetype" : "group",
1046
+ "moduleName" : "TN3270E-RT-MIB",
1047
+ "oid" : "1.3.6.1.2.1.34.9.3.1.1",
1048
+ "status" : "current",
1049
+ "members" : {
1050
+ "tn3270eRtCollCtlType" : {
1051
+ "nodetype" : "member",
1052
+ "module" : "TN3270E-RT-MIB"
1053
+ },
1054
+ "tn3270eRtCollCtlSPeriod" : {
1055
+ "nodetype" : "member",
1056
+ "module" : "TN3270E-RT-MIB"
1057
+ },
1058
+ "tn3270eRtCollCtlSPMult" : {
1059
+ "nodetype" : "member",
1060
+ "module" : "TN3270E-RT-MIB"
1061
+ },
1062
+ "tn3270eRtCollCtlThreshHigh" : {
1063
+ "nodetype" : "member",
1064
+ "module" : "TN3270E-RT-MIB"
1065
+ },
1066
+ "tn3270eRtCollCtlThreshLow" : {
1067
+ "nodetype" : "member",
1068
+ "module" : "TN3270E-RT-MIB"
1069
+ },
1070
+ "tn3270eRtCollCtlIdleCount" : {
1071
+ "nodetype" : "member",
1072
+ "module" : "TN3270E-RT-MIB"
1073
+ },
1074
+ "tn3270eRtCollCtlBucketBndry1" : {
1075
+ "nodetype" : "member",
1076
+ "module" : "TN3270E-RT-MIB"
1077
+ },
1078
+ "tn3270eRtCollCtlBucketBndry2" : {
1079
+ "nodetype" : "member",
1080
+ "module" : "TN3270E-RT-MIB"
1081
+ },
1082
+ "tn3270eRtCollCtlBucketBndry3" : {
1083
+ "nodetype" : "member",
1084
+ "module" : "TN3270E-RT-MIB"
1085
+ },
1086
+ "tn3270eRtCollCtlBucketBndry4" : {
1087
+ "nodetype" : "member",
1088
+ "module" : "TN3270E-RT-MIB"
1089
+ },
1090
+ "tn3270eRtCollCtlRowStatus" : {
1091
+ "nodetype" : "member",
1092
+ "module" : "TN3270E-RT-MIB"
1093
+ },
1094
+ "tn3270eRtDataDiscontinuityTime" : {
1095
+ "nodetype" : "member",
1096
+ "module" : "TN3270E-RT-MIB"
1097
+ },
1098
+ "tn3270eRtDataAvgRt" : {
1099
+ "nodetype" : "member",
1100
+ "module" : "TN3270E-RT-MIB"
1101
+ },
1102
+ "tn3270eRtDataAvgIpRt" : {
1103
+ "nodetype" : "member",
1104
+ "module" : "TN3270E-RT-MIB"
1105
+ },
1106
+ "tn3270eRtDataAvgCountTrans" : {
1107
+ "nodetype" : "member",
1108
+ "module" : "TN3270E-RT-MIB"
1109
+ },
1110
+ "tn3270eRtDataIntTimeStamp" : {
1111
+ "nodetype" : "member",
1112
+ "module" : "TN3270E-RT-MIB"
1113
+ },
1114
+ "tn3270eRtDataTotalRts" : {
1115
+ "nodetype" : "member",
1116
+ "module" : "TN3270E-RT-MIB"
1117
+ },
1118
+ "tn3270eRtDataTotalIpRts" : {
1119
+ "nodetype" : "member",
1120
+ "module" : "TN3270E-RT-MIB"
1121
+ },
1122
+ "tn3270eRtDataCountTrans" : {
1123
+ "nodetype" : "member",
1124
+ "module" : "TN3270E-RT-MIB"
1125
+ },
1126
+ "tn3270eRtDataCountDrs" : {
1127
+ "nodetype" : "member",
1128
+ "module" : "TN3270E-RT-MIB"
1129
+ },
1130
+ "tn3270eRtDataElapsRndTrpSq" : {
1131
+ "nodetype" : "member",
1132
+ "module" : "TN3270E-RT-MIB"
1133
+ },
1134
+ "tn3270eRtDataElapsIpRtSq" : {
1135
+ "nodetype" : "member",
1136
+ "module" : "TN3270E-RT-MIB"
1137
+ },
1138
+ "tn3270eRtDataBucket1Rts" : {
1139
+ "nodetype" : "member",
1140
+ "module" : "TN3270E-RT-MIB"
1141
+ },
1142
+ "tn3270eRtDataBucket2Rts" : {
1143
+ "nodetype" : "member",
1144
+ "module" : "TN3270E-RT-MIB"
1145
+ },
1146
+ "tn3270eRtDataBucket3Rts" : {
1147
+ "nodetype" : "member",
1148
+ "module" : "TN3270E-RT-MIB"
1149
+ },
1150
+ "tn3270eRtDataBucket4Rts" : {
1151
+ "nodetype" : "member",
1152
+ "module" : "TN3270E-RT-MIB"
1153
+ },
1154
+ "tn3270eRtDataBucket5Rts" : {
1155
+ "nodetype" : "member",
1156
+ "module" : "TN3270E-RT-MIB"
1157
+ },
1158
+ "tn3270eRtDataRtMethod" : {
1159
+ "nodetype" : "member",
1160
+ "module" : "TN3270E-RT-MIB"
1161
+ },
1162
+ "tn3270eRtSpinLock" : {
1163
+ "nodetype" : "member",
1164
+ "module" : "TN3270E-RT-MIB"
1165
+ },
1166
+ }, # members
1167
+ "description" :
1168
+ """This group is mandatory for all implementations that
1169
+ support the TN3270E-RT-MIB. """,
1170
+ }, # group
1171
+ "tn3270eRtNotGroup" : {
1172
+ "nodetype" : "group",
1173
+ "moduleName" : "TN3270E-RT-MIB",
1174
+ "oid" : "1.3.6.1.2.1.34.9.3.1.2",
1175
+ "status" : "current",
1176
+ "members" : {
1177
+ "tn3270eRtExceeded" : {
1178
+ "nodetype" : "member",
1179
+ "module" : "TN3270E-RT-MIB"
1180
+ },
1181
+ "tn3270eRtOkay" : {
1182
+ "nodetype" : "member",
1183
+ "module" : "TN3270E-RT-MIB"
1184
+ },
1185
+ "tn3270eRtCollStart" : {
1186
+ "nodetype" : "member",
1187
+ "module" : "TN3270E-RT-MIB"
1188
+ },
1189
+ "tn3270eRtCollEnd" : {
1190
+ "nodetype" : "member",
1191
+ "module" : "TN3270E-RT-MIB"
1192
+ },
1193
+ }, # members
1194
+ "description" :
1195
+ """The notifications that must be supported when the
1196
+ TN3270E-RT-MIB is implemented. """,
1197
+ }, # group
1198
+ }, # groups
1199
+
1200
+ "compliances" : {
1201
+ "tn3270eRtCompliance" : {
1202
+ "nodetype" : "compliance",
1203
+ "moduleName" : "TN3270E-RT-MIB",
1204
+ "oid" : "1.3.6.1.2.1.34.9.3.2.1",
1205
+ "status" : "current",
1206
+ "description" :
1207
+ """The compliance statement for agents that support the
1208
+ TN327E-RT-MIB.""",
1209
+ "requires" : {
1210
+ "tn3270eRtGroup" : {
1211
+ "nodetype" : "mandatory",
1212
+ "module" : "TN3270E-RT-MIB"
1213
+ },
1214
+ "tn3270eRtNotGroup" : {
1215
+ "nodetype" : "mandatory",
1216
+ "module" : "TN3270E-RT-MIB"
1217
+ },
1218
+ }, # requires
1219
+ "refinements" : {
1220
+ "tn3270eRtCollCtlType" : {
1221
+ "module" : "TN3270E-RT-MIB",
1222
+ "access" : "readonly",
1223
+ "description" :
1224
+ """The agent is not required to support a SET operation to
1225
+ this object in the absence of adequate security.""",
1226
+ },
1227
+ "tn3270eRtCollCtlSPeriod" : {
1228
+ "module" : "TN3270E-RT-MIB",
1229
+ "access" : "readonly",
1230
+ "description" :
1231
+ """The agent is not required to allow the user to change
1232
+ the default value of this object, and is allowed to
1233
+ use a different default.""",
1234
+ },
1235
+ "tn3270eRtCollCtlSPMult" : {
1236
+ "module" : "TN3270E-RT-MIB",
1237
+ "access" : "readonly",
1238
+ "description" :
1239
+ """The agent is not required to support a SET operation
1240
+ to this object in the absence of adequate security.""",
1241
+ },
1242
+ "tn3270eRtCollCtlThreshHigh" : {
1243
+ "module" : "TN3270E-RT-MIB",
1244
+ "access" : "readonly",
1245
+ "description" :
1246
+ """The agent is not required to support a SET operation
1247
+ to this object in the absence of adequate security.""",
1248
+ },
1249
+ "tn3270eRtCollCtlThreshLow" : {
1250
+ "module" : "TN3270E-RT-MIB",
1251
+ "access" : "readonly",
1252
+ "description" :
1253
+ """The agent is not required to support a SET operation
1254
+ to this object in the absence of adequate security.""",
1255
+ },
1256
+ "tn3270eRtCollCtlIdleCount" : {
1257
+ "module" : "TN3270E-RT-MIB",
1258
+ "access" : "readonly",
1259
+ "description" :
1260
+ """The agent is not required to support a SET operation
1261
+ to this object in the absence of adequate security.""",
1262
+ },
1263
+ "tn3270eRtCollCtlBucketBndry1" : {
1264
+ "module" : "TN3270E-RT-MIB",
1265
+ "access" : "readonly",
1266
+ "description" :
1267
+ """The agent is not required to support a SET operation
1268
+ to this object in the absence of adequate security.""",
1269
+ },
1270
+ "tn3270eRtCollCtlBucketBndry2" : {
1271
+ "module" : "TN3270E-RT-MIB",
1272
+ "access" : "readonly",
1273
+ "description" :
1274
+ """The agent is not required to support a SET operation
1275
+ to this object in the absence of adequate security.""",
1276
+ },
1277
+ "tn3270eRtCollCtlBucketBndry3" : {
1278
+ "module" : "TN3270E-RT-MIB",
1279
+ "access" : "readonly",
1280
+ "description" :
1281
+ """The agent is not required to support a SET operation
1282
+ to this object in the absence of adequate security.""",
1283
+ },
1284
+ "tn3270eRtCollCtlBucketBndry4" : {
1285
+ "module" : "TN3270E-RT-MIB",
1286
+ "access" : "readonly",
1287
+ "description" :
1288
+ """The agent is not required to support a SET operation
1289
+ to this object in the absence of adequate security.""",
1290
+ },
1291
+ "tn3270eRtCollCtlRowStatus" : {
1292
+ "module" : "TN3270E-RT-MIB",
1293
+ "syntax" : {
1294
+ "type" : {
1295
+ "basetype" : "Enumeration",
1296
+ "parent module" : {
1297
+ "name" : "SNMPv2-TC",
1298
+ "type" : "RowStatus",
1299
+ },
1300
+ "active" : {
1301
+ "nodetype" : "namednumber",
1302
+ "number" : "1"
1303
+ },
1304
+ },
1305
+ }, # syntax
1306
+ "access" : "readonly",
1307
+ "description" :
1308
+ """Write access is not required, and only one of the six
1309
+ enumerated values for the RowStatus textual convention
1310
+ need be supported, specifically: active(1).""",
1311
+ },
1312
+ }, # refinements
1313
+
1314
+ }, # compliance
1315
+ }, # compliances
1316
+
1317
+ }