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,3750 @@
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 APPLICATION-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/APPLICATION-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "APPLICATION-MIB",
11
+
12
+ "APPLICATION-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Application MIB Working Group""",
17
+ "contact" :
18
+ """http://www.ietf.org/html.charters/applmib-charter.html
19
+
20
+ Randy Presuhn
21
+ BMC Software, Inc.
22
+ 965 Stewart Drive
23
+ Sunnyvale, CA 94086
24
+ USA
25
+
26
+ Telephone: +1 408 616-3100
27
+ Facsimile: +1 408 616-3101
28
+ EMail: randy_presuhn@bmc.com""",
29
+ "description" :
30
+ """This MIB defines objects representing generic aspects of
31
+ applications that are of interest to management but typically
32
+ require instrumentation within managed application elements.""",
33
+ "revisions" : (
34
+ {
35
+ "date" : "1998-11-17 18:15",
36
+ "description" :
37
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
38
+ },
39
+ ),
40
+ "identity node" : "applicationMib",
41
+ },
42
+
43
+ "imports" : (
44
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
45
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
46
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
49
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "zeroDotZero"},
52
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
53
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
54
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
55
+ {"module" : "SNMPv2-TC", "name" : "TDomain"},
56
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
57
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
58
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
59
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
60
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
61
+ {"module" : "SYSAPPL-MIB", "name" : "LongUtf8String"},
62
+ {"module" : "SYSAPPL-MIB", "name" : "sysApplElmtRunIndex"},
63
+ ),
64
+
65
+ "typedefs" : {
66
+ "Unsigned64TC" : {
67
+ "basetype" : "Unsigned64",
68
+ "status" : "current",
69
+ "parent module" : {
70
+ "name" : "SNMPv2-SMI",
71
+ "type" : "Counter64",
72
+ },
73
+ "description" :
74
+ """A non-negative 64-bit bit integer, without counter
75
+ semantics.""",
76
+ },
77
+ "ApplTAddress" : {
78
+ "basetype" : "OctetString",
79
+ "status" : "current",
80
+ "ranges" : [
81
+ {
82
+ "min" : "0",
83
+ "max" : "255"
84
+ },
85
+ ],
86
+ "range" : {
87
+ "min" : "0",
88
+ "max" : "255"
89
+ },
90
+ "description" :
91
+ """Denotes a transport service address.
92
+
93
+ For snmpUDPDomain, an ApplTAddress is 6 octets long,
94
+ the initial 4 octets containing the IP-address in
95
+ network-byte order and the last 2 containing the UDP
96
+ port in network-byte order. Consult 'Transport Mappings
97
+ for Version 2 of the Simple Network Management Protocol
98
+ (SNMPv2)' for further information on snmpUDPDomain.""",
99
+ },
100
+ }, # typedefs
101
+
102
+ "nodes" : {
103
+ "applicationMib" : {
104
+ "nodetype" : "node",
105
+ "moduleName" : "APPLICATION-MIB",
106
+ "oid" : "1.3.6.1.2.1.62",
107
+ "status" : "current",
108
+ }, # node
109
+ "applicationMibObjects" : {
110
+ "nodetype" : "node",
111
+ "moduleName" : "APPLICATION-MIB",
112
+ "oid" : "1.3.6.1.2.1.62.1",
113
+ }, # node
114
+ "applServiceGroup" : {
115
+ "nodetype" : "node",
116
+ "moduleName" : "APPLICATION-MIB",
117
+ "oid" : "1.3.6.1.2.1.62.1.1",
118
+ }, # node
119
+ "applSrvNameToSrvInstTable" : {
120
+ "nodetype" : "table",
121
+ "moduleName" : "APPLICATION-MIB",
122
+ "oid" : "1.3.6.1.2.1.62.1.1.1",
123
+ "status" : "current",
124
+ "description" :
125
+ """The service name to service instance table uses
126
+ service name as its primary key, and service instance
127
+ identifier as its secondary key. It facilitates the
128
+ identification and lookup of the instances of a given
129
+ service in a system.""",
130
+ }, # table
131
+ "applSrvNameToSrvInstEntry" : {
132
+ "nodetype" : "row",
133
+ "moduleName" : "APPLICATION-MIB",
134
+ "oid" : "1.3.6.1.2.1.62.1.1.1.1",
135
+ "status" : "current",
136
+ "linkage" : [
137
+ "applSrvName",
138
+ "applSrvIndex",
139
+ ],
140
+ "description" :
141
+ """An applSrvNameToSrvInstEntry identifies an instance of
142
+ a given service. The allocation and reservation
143
+ of unique values for applSrvIndex is an administrative
144
+ issue.
145
+
146
+ An applSrvNameToSrvInstEntry exists for the lifetime of
147
+ that instance of that service; the index values may not
148
+ change during that lifetime. """,
149
+ }, # row
150
+ "applSrvInstQual" : {
151
+ "nodetype" : "column",
152
+ "moduleName" : "APPLICATION-MIB",
153
+ "oid" : "1.3.6.1.2.1.62.1.1.1.1.1",
154
+ "status" : "current",
155
+ "syntax" : {
156
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
157
+ },
158
+ "access" : "readonly",
159
+ "description" :
160
+ """The value of applSrcInstQual provides additional
161
+ information about this particular instance of this
162
+ service.
163
+
164
+ Although not used for indexing purposes, the value of
165
+ this attribute should be sufficiently unique to be
166
+ helpful to an administrator in distinguishing among
167
+ service instances. """,
168
+ }, # column
169
+ "applSrvInstToSrvNameTable" : {
170
+ "nodetype" : "table",
171
+ "moduleName" : "APPLICATION-MIB",
172
+ "oid" : "1.3.6.1.2.1.62.1.1.2",
173
+ "status" : "current",
174
+ "description" :
175
+ """The service instance to service name table uses
176
+ service instance identifier as its primary key, and
177
+ service name as its secondary key. Given a service
178
+ instance identifier, it facilitates the lookup of the
179
+ name of the service being provided.""",
180
+ }, # table
181
+ "applSrvInstToSrvNameEntry" : {
182
+ "nodetype" : "row",
183
+ "moduleName" : "APPLICATION-MIB",
184
+ "oid" : "1.3.6.1.2.1.62.1.1.2.1",
185
+ "status" : "current",
186
+ "linkage" : [
187
+ "applSrvIndex",
188
+ "applSrvName",
189
+ ],
190
+ "description" :
191
+ """An applSrvInstToSrvNameEntry maps a service instance
192
+ identifier back to a service name.""",
193
+ }, # row
194
+ "applSrvName" : {
195
+ "nodetype" : "column",
196
+ "moduleName" : "APPLICATION-MIB",
197
+ "oid" : "1.3.6.1.2.1.62.1.1.2.1.1",
198
+ "status" : "current",
199
+ "syntax" : {
200
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
201
+ },
202
+ "access" : "readonly",
203
+ "description" :
204
+ """The human-readable name of a service. Where
205
+ appropriate, as in the case where a service can be
206
+ identified in terms of a single protocol, the strings
207
+ should be established names such as those assigned by
208
+ IANA and found in STD 2 [13], or defined by some other
209
+ authority. In some cases private conventions apply
210
+ and the string should in these cases be consistent
211
+ with these non-standard conventions. An applicability
212
+ statement may specify the service name(s) to be used.""",
213
+ }, # column
214
+ "applSrvInstToRunApplElmtTable" : {
215
+ "nodetype" : "table",
216
+ "moduleName" : "APPLICATION-MIB",
217
+ "oid" : "1.3.6.1.2.1.62.1.1.3",
218
+ "status" : "current",
219
+ "description" :
220
+ """The service instance to running application element
221
+ table uses the service instance identifier as its primary
222
+ key, and the running application element index as its
223
+ secondary key. This facilitates the identification
224
+ of the set of running application elements providing a
225
+ given instance of a service.""",
226
+ }, # table
227
+ "applSrvInstToRunApplElmtEntry" : {
228
+ "nodetype" : "row",
229
+ "moduleName" : "APPLICATION-MIB",
230
+ "oid" : "1.3.6.1.2.1.62.1.1.3.1",
231
+ "status" : "current",
232
+ "linkage" : [
233
+ "applSrvIndex",
234
+ "sysApplElmtRunIndex",
235
+ ],
236
+ "description" :
237
+ """An applSrvInstToRunApplElmtEntry identifies a running
238
+ application element providing an instance of a service.
239
+ Note that there may be multiple running application
240
+ elements involved in the provision of an instance of
241
+ a service.""",
242
+ }, # row
243
+ "applSrvIndex" : {
244
+ "nodetype" : "column",
245
+ "moduleName" : "APPLICATION-MIB",
246
+ "oid" : "1.3.6.1.2.1.62.1.1.3.1.1",
247
+ "status" : "current",
248
+ "syntax" : {
249
+ "type" : {
250
+ "basetype" : "Unsigned32",
251
+ "ranges" : [
252
+ {
253
+ "min" : "1",
254
+ "max" : "4294967295"
255
+ },
256
+ ],
257
+ "range" : {
258
+ "min" : "1",
259
+ "max" : "4294967295"
260
+ },
261
+ },
262
+ },
263
+ "access" : "readonly",
264
+ "description" :
265
+ """An applSrvIndex is the system-unique identifier of
266
+ an instance of a service. The value is unique not only
267
+ across all instances of a given service, but also across
268
+ all services in a system.
269
+
270
+ Re-use of values for this index should be avoided.
271
+ No two service instances in a given system shall
272
+ concurrently have the same value for this index.
273
+
274
+ The value zero is excluded from the set of permitted
275
+ values for this index. This allows other tables to
276
+ potentially represent things which cannot be associated
277
+ with a specific service instance.""",
278
+ }, # column
279
+ "applRunApplElmtToSrvInstTable" : {
280
+ "nodetype" : "table",
281
+ "moduleName" : "APPLICATION-MIB",
282
+ "oid" : "1.3.6.1.2.1.62.1.1.4",
283
+ "status" : "current",
284
+ "description" :
285
+ """The running application element to service instance
286
+ table uses the running application element index as
287
+ its primary key and the service instance identifier as
288
+ its secondary key. It identifies the set of services
289
+ provided by a given running application element.""",
290
+ }, # table
291
+ "applRunApplElmtToSrvInstEntry" : {
292
+ "nodetype" : "row",
293
+ "moduleName" : "APPLICATION-MIB",
294
+ "oid" : "1.3.6.1.2.1.62.1.1.4.1",
295
+ "status" : "current",
296
+ "linkage" : [
297
+ "sysApplElmtRunIndex",
298
+ "applSrvInstance",
299
+ ],
300
+ "description" :
301
+ """An applRunApplElmtToSrvInstEntry serves to identify an
302
+ instance of a service being provided by a given running
303
+ application element. Note that a particular running
304
+ application element may provide multiple services.""",
305
+ }, # row
306
+ "applSrvInstance" : {
307
+ "nodetype" : "column",
308
+ "moduleName" : "APPLICATION-MIB",
309
+ "oid" : "1.3.6.1.2.1.62.1.1.4.1.1",
310
+ "status" : "current",
311
+ "syntax" : {
312
+ "type" : {
313
+ "basetype" : "Unsigned32",
314
+ "ranges" : [
315
+ {
316
+ "min" : "1",
317
+ "max" : "4294967295"
318
+ },
319
+ ],
320
+ "range" : {
321
+ "min" : "1",
322
+ "max" : "4294967295"
323
+ },
324
+ },
325
+ },
326
+ "access" : "readonly",
327
+ "description" :
328
+ """An applSrvInstance is the system-unique identifier of an
329
+ instance of a service. The value is unique not only
330
+ across all instances of a given service, but also across
331
+ all services.
332
+
333
+ Re-use of values for this index should be avoided.
334
+ No two service instances in a given system shall
335
+ concurrently have the same value for this index.
336
+ The value zero is excluded from the set of permitted
337
+ values for this index. This allows other tables to
338
+ potentially represent things which cannot be associated
339
+ with a specific service instance.
340
+
341
+ This attribute is semantically identical to
342
+ applSrvIndex.""",
343
+ }, # column
344
+ "applChannelGroup" : {
345
+ "nodetype" : "node",
346
+ "moduleName" : "APPLICATION-MIB",
347
+ "oid" : "1.3.6.1.2.1.62.1.2",
348
+ }, # node
349
+ "applOpenChannelTable" : {
350
+ "nodetype" : "table",
351
+ "moduleName" : "APPLICATION-MIB",
352
+ "oid" : "1.3.6.1.2.1.62.1.2.1",
353
+ "status" : "current",
354
+ "description" :
355
+ """The applOpenChannelTable reports information on open
356
+ channels for running application elements
357
+ and for service instances. This table is
358
+ indexed by applElmtOrSvc, applElmtOrSvcId, and
359
+ applOpenChannelIndex. This effectively groups all
360
+ entries for a given running application element
361
+ or service instance together. ApplChannelIndex uniquely
362
+ identifies an open channel (and, consequently, a file
363
+ or connection) within the context of a particular
364
+ running application element or service instance.
365
+
366
+ Some of the information in this table is available
367
+ through both sixty-four and thirty-two bit counters.
368
+ The sixty-four bit counters are not accessible in
369
+ protocols that do not support this data type.""",
370
+ }, # table
371
+ "applOpenChannelEntry" : {
372
+ "nodetype" : "row",
373
+ "moduleName" : "APPLICATION-MIB",
374
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1",
375
+ "status" : "current",
376
+ "linkage" : [
377
+ "applElmtOrSvc",
378
+ "applElmtOrSvcId",
379
+ "applOpenChannelIndex",
380
+ ],
381
+ "description" :
382
+ """An applOpenChannelEntry indicates that a channel has been
383
+ opened by this running application element or service
384
+ instance and is still open. Note that if a file has been
385
+ opened multiple times, even by the same process, it will
386
+ have multiple channel entries.""",
387
+ }, # row
388
+ "applElmtOrSvc" : {
389
+ "nodetype" : "column",
390
+ "moduleName" : "APPLICATION-MIB",
391
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.1",
392
+ "status" : "current",
393
+ "syntax" : {
394
+ "type" : {
395
+ "basetype" : "Enumeration",
396
+ "service" : {
397
+ "nodetype" : "namednumber",
398
+ "number" : "1"
399
+ },
400
+ "element" : {
401
+ "nodetype" : "namednumber",
402
+ "number" : "2"
403
+ },
404
+ },
405
+ },
406
+ "access" : "noaccess",
407
+ "description" :
408
+ """The applElmtOrSvc attribute serves as an index for tables
409
+ that can hold information both for individual running
410
+ application elements as well as for service instances.
411
+
412
+ If the value is service(1), the row contains information
413
+ gathered at the level of a service.
414
+
415
+ If the value is element(2), the row contains information
416
+ for an individual running application element.""",
417
+ }, # column
418
+ "applElmtOrSvcId" : {
419
+ "nodetype" : "column",
420
+ "moduleName" : "APPLICATION-MIB",
421
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.2",
422
+ "status" : "current",
423
+ "syntax" : {
424
+ "type" : {
425
+ "basetype" : "Unsigned32",
426
+ "ranges" : [
427
+ {
428
+ "min" : "1",
429
+ "max" : "4294967295"
430
+ },
431
+ ],
432
+ "range" : {
433
+ "min" : "1",
434
+ "max" : "4294967295"
435
+ },
436
+ },
437
+ },
438
+ "access" : "noaccess",
439
+ "description" :
440
+ """The applElmtOrSvcId attribute is used as an index in
441
+ conjunction with the applElmtOrSvc attribute.
442
+
443
+ When the value of applElmtOrSvc is service(1), this
444
+ attribute's value corresponds to that of applSrvIndex,
445
+ when the value of applElmtOrSvc is element(2), this
446
+ attribute's value corresponds to sysApplElmtRunIndex.""",
447
+ }, # column
448
+ "applOpenChannelIndex" : {
449
+ "nodetype" : "column",
450
+ "moduleName" : "APPLICATION-MIB",
451
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.3",
452
+ "status" : "current",
453
+ "syntax" : {
454
+ "type" : { "module" :"", "name" : "Unsigned32"},
455
+ },
456
+ "access" : "noaccess",
457
+ "description" :
458
+ """This attribute serves to uniquely identify this open
459
+ connection in the context of the running application
460
+ element or service instance. Where suitable, the
461
+ application's native descriptor number should be used.""",
462
+ }, # column
463
+ "applOpenChannelOpenTime" : {
464
+ "nodetype" : "column",
465
+ "moduleName" : "APPLICATION-MIB",
466
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.4",
467
+ "status" : "current",
468
+ "syntax" : {
469
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
470
+ },
471
+ "access" : "readonly",
472
+ "description" :
473
+ """This attribute records the value of sysUpTime.0
474
+ when this channel was opened and this entry was added to
475
+ this table. This attribute serves as a discontinuity
476
+ indicator for the counter attributes in this entry
477
+ and for any corresponding entries in the
478
+ applOpenConnectionTable, applOpenFileTable, and the
479
+ applTransactionStreamTable.""",
480
+ }, # column
481
+ "applOpenChannelReadRequests" : {
482
+ "nodetype" : "column",
483
+ "moduleName" : "APPLICATION-MIB",
484
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.5",
485
+ "status" : "current",
486
+ "syntax" : {
487
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
488
+ },
489
+ "access" : "readonly",
490
+ "units" : "read requests",
491
+ "description" :
492
+ """This attribute reports the number of read requests
493
+ for this channel. All read requests for this channel
494
+ by this entity, regardless of completion status, are
495
+ included in this count.
496
+
497
+ Read requests are counted in terms of system calls,
498
+ rather than API calls.
499
+
500
+ Discontinuities in this counter can be detected by
501
+ monitoring the applOpenChannelOpenTime value for this
502
+ entry.""",
503
+ }, # column
504
+ "applOpenChannelReadRequestsLow" : {
505
+ "nodetype" : "column",
506
+ "moduleName" : "APPLICATION-MIB",
507
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.6",
508
+ "status" : "current",
509
+ "syntax" : {
510
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
511
+ },
512
+ "access" : "readonly",
513
+ "units" : "read requests",
514
+ "description" :
515
+ """This attribute reports the low thirty-two bits of
516
+ applOpenChannelReadRequests.
517
+
518
+ Discontinuities in this counter can be detected by
519
+ monitoring the applOpenChannelOpenTime value for this
520
+ entry.""",
521
+ }, # column
522
+ "applOpenChannelReadFailures" : {
523
+ "nodetype" : "column",
524
+ "moduleName" : "APPLICATION-MIB",
525
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.7",
526
+ "status" : "current",
527
+ "syntax" : {
528
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
529
+ },
530
+ "access" : "readonly",
531
+ "units" : "failed read requests",
532
+ "description" :
533
+ """This attribute reports the number of failed read
534
+ requests.
535
+
536
+ Discontinuities in this counter can be detected by
537
+ monitoring the applOpenChannelOpenTime value for this
538
+ entry.""",
539
+ }, # column
540
+ "applOpenChannelBytesRead" : {
541
+ "nodetype" : "column",
542
+ "moduleName" : "APPLICATION-MIB",
543
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.8",
544
+ "status" : "current",
545
+ "syntax" : {
546
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
547
+ },
548
+ "access" : "readonly",
549
+ "units" : "bytes",
550
+ "description" :
551
+ """This attribute reports the number of bytes read from
552
+ this channel. Only bytes successfully read are included
553
+ in this count.
554
+
555
+ Discontinuities in this counter can be detected by
556
+ monitoring the applOpenChannelOpenTime value for this
557
+ entry.""",
558
+ }, # column
559
+ "applOpenChannelBytesReadLow" : {
560
+ "nodetype" : "column",
561
+ "moduleName" : "APPLICATION-MIB",
562
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.9",
563
+ "status" : "current",
564
+ "syntax" : {
565
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
566
+ },
567
+ "access" : "readonly",
568
+ "units" : "bytes",
569
+ "description" :
570
+ """This attribute corresponds to the low thirty-two bits
571
+ of applOpenChannelBytesRead.
572
+
573
+ Discontinuities in this counter can be detected by
574
+ monitoring the applOpenChannelOpenTime value for this
575
+ entry.""",
576
+ }, # column
577
+ "applOpenChannelLastReadTime" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "APPLICATION-MIB",
580
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.10",
581
+ "status" : "current",
582
+ "syntax" : {
583
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
584
+ },
585
+ "access" : "readonly",
586
+ "default" : "0x0000000000000000",
587
+ "description" :
588
+ """This attribute reports the time of the most recent read
589
+ request made by this entity, regardless of completion
590
+ status, for this open channel.
591
+
592
+ If no read requests have been made the value of this
593
+ attribute shall be '0000000000000000'H """,
594
+ }, # column
595
+ "applOpenChannelWriteRequests" : {
596
+ "nodetype" : "column",
597
+ "moduleName" : "APPLICATION-MIB",
598
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.11",
599
+ "status" : "current",
600
+ "syntax" : {
601
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
602
+ },
603
+ "access" : "readonly",
604
+ "units" : "write requests",
605
+ "description" :
606
+ """This attribute reports the number of write requests for
607
+ this channel made by this entity. All write requests
608
+ for this channel, regardless of completion status, are
609
+ included in this count.
610
+
611
+ Write requests are counted in terms of system calls,
612
+ rather than API calls.
613
+
614
+ Discontinuities in this counter can be detected by
615
+ monitoring the applOpenChannelOpenTime value for this
616
+ entry.""",
617
+ }, # column
618
+ "applOpenChannelWriteRequestsLow" : {
619
+ "nodetype" : "column",
620
+ "moduleName" : "APPLICATION-MIB",
621
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.12",
622
+ "status" : "current",
623
+ "syntax" : {
624
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
625
+ },
626
+ "access" : "readonly",
627
+ "units" : "write requests",
628
+ "description" :
629
+ """This attribute corresponds to the low thirty-two bits
630
+ of applOpenChannelWriteRequests.
631
+
632
+ Discontinuities in this counter can be detected
633
+ by monitoring the applOpenChannelOpenTime value for
634
+ this entry.""",
635
+ }, # column
636
+ "applOpenChannelWriteFailures" : {
637
+ "nodetype" : "column",
638
+ "moduleName" : "APPLICATION-MIB",
639
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.13",
640
+ "status" : "current",
641
+ "syntax" : {
642
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
643
+ },
644
+ "access" : "readonly",
645
+ "units" : "failed write requests",
646
+ "description" :
647
+ """This attribute reports the number of failed write
648
+ requests.
649
+
650
+ Discontinuities in this counter can be detected
651
+ by monitoring the applOpenChannelOpenTime value for
652
+ this entry.""",
653
+ }, # column
654
+ "applOpenChannelBytesWritten" : {
655
+ "nodetype" : "column",
656
+ "moduleName" : "APPLICATION-MIB",
657
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.14",
658
+ "status" : "current",
659
+ "syntax" : {
660
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
661
+ },
662
+ "access" : "readonly",
663
+ "units" : "bytes",
664
+ "description" :
665
+ """This attribute reports the number of bytes written to
666
+ this channel. Only bytes successfully written (without
667
+ errors reported by the system to the API in use by the
668
+ application) are included in this count.
669
+
670
+ Discontinuities in this counter can be detected by
671
+ monitoring the applOpenChannelOpenTime value for this
672
+ entry.""",
673
+ }, # column
674
+ "applOpenChannelBytesWrittenLow" : {
675
+ "nodetype" : "column",
676
+ "moduleName" : "APPLICATION-MIB",
677
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.15",
678
+ "status" : "current",
679
+ "syntax" : {
680
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
681
+ },
682
+ "access" : "readonly",
683
+ "units" : "bytes",
684
+ "description" :
685
+ """This attribute corresponds to the low thirty-two bits
686
+ of applOpenChannelBytesWritten.
687
+
688
+ Discontinuities in this counter can be detected by
689
+ monitoring the applOpenChannelOpenTime value for this
690
+ entry.""",
691
+ }, # column
692
+ "applOpenChannelLastWriteTime" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "APPLICATION-MIB",
695
+ "oid" : "1.3.6.1.2.1.62.1.2.1.1.16",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
699
+ },
700
+ "access" : "readonly",
701
+ "default" : "0x0000000000000000",
702
+ "description" :
703
+ """This attribute reports the time of the most recent write
704
+ request made by this running application element or
705
+ service instance, regardless of completion status, for
706
+ this open channel.
707
+ If no write requests have been made, the value
708
+ of this attribute shall be '0000000000000000'H """,
709
+ }, # column
710
+ "applOpenFileTable" : {
711
+ "nodetype" : "table",
712
+ "moduleName" : "APPLICATION-MIB",
713
+ "oid" : "1.3.6.1.2.1.62.1.2.2",
714
+ "status" : "current",
715
+ "description" :
716
+ """The applOpenFileTable reports information on open files
717
+ for service instances or application elements. This
718
+ table is indexed by applElmtOrSvc and applElmtOrSvcId,
719
+ effectively grouping all entries for a given running
720
+ service instance or application element together, and
721
+ by applOpenChannelIndex, uniquely identifying an open
722
+ channel (and, consequently, a file) within the context
723
+ of a particular service instance or application element.
724
+
725
+ Elements in this table correspond to elements in the
726
+ applOpenChannelTable that represent files. For rows in
727
+ the applOpenChannelTable that do not represent files,
728
+ corresponding rows in this table will not exist.""",
729
+ }, # table
730
+ "applOpenFileEntry" : {
731
+ "nodetype" : "row",
732
+ "moduleName" : "APPLICATION-MIB",
733
+ "oid" : "1.3.6.1.2.1.62.1.2.2.1",
734
+ "status" : "current",
735
+ "linkage" : [
736
+ "applElmtOrSvc",
737
+ "applElmtOrSvcId",
738
+ "applOpenChannelIndex",
739
+ ],
740
+ "description" :
741
+ """An applOpenFileEntry indicates that a file has been
742
+ opened by this running application element and is
743
+ still open. Note that if a file has been opened
744
+ multiple times, even by the same process, it will have
745
+ multiple entries.""",
746
+ }, # row
747
+ "applOpenFileName" : {
748
+ "nodetype" : "column",
749
+ "moduleName" : "APPLICATION-MIB",
750
+ "oid" : "1.3.6.1.2.1.62.1.2.2.1.1",
751
+ "status" : "current",
752
+ "syntax" : {
753
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "LongUtf8String"},
754
+ },
755
+ "access" : "readonly",
756
+ "description" :
757
+ """This attribute reports the name of this open file.
758
+ Wherever practical, a fully qualified path name should
759
+ be reported.
760
+
761
+ The values 'stdin', 'stdout', and 'stderr' are reserved
762
+ in accordance with common usage when the fully qualified
763
+ path name cannot be determined.""",
764
+ }, # column
765
+ "applOpenFileSizeHigh" : {
766
+ "nodetype" : "column",
767
+ "moduleName" : "APPLICATION-MIB",
768
+ "oid" : "1.3.6.1.2.1.62.1.2.2.1.2",
769
+ "status" : "current",
770
+ "syntax" : {
771
+ "type" : { "module" :"", "name" : "Unsigned32"},
772
+ },
773
+ "access" : "readonly",
774
+ "units" : "2^32 byte blocks",
775
+ "description" :
776
+ """This file's current size in 2^32 byte blocks.
777
+
778
+ For example, for a file with a total size of 4,294,967,296
779
+ bytes, this attribute would have a value of 1; for a file
780
+ with a total size of 4,294,967,295 bytes this attribute's
781
+ value would be 0.""",
782
+ }, # column
783
+ "applOpenFileSizeLow" : {
784
+ "nodetype" : "column",
785
+ "moduleName" : "APPLICATION-MIB",
786
+ "oid" : "1.3.6.1.2.1.62.1.2.2.1.3",
787
+ "status" : "current",
788
+ "syntax" : {
789
+ "type" : { "module" :"", "name" : "Unsigned32"},
790
+ },
791
+ "access" : "readonly",
792
+ "units" : "bytes",
793
+ "description" :
794
+ """This file's current size modulo 2^32 bytes.
795
+
796
+ For example, for a file with a total size of
797
+ 4,294,967,296 bytes this attribute would have a value
798
+ of 0; for a file with a total size of 4,294,967,295
799
+ bytes this attribute's value would be 4,294,967,295.""",
800
+ }, # column
801
+ "applOpenFileMode" : {
802
+ "nodetype" : "column",
803
+ "moduleName" : "APPLICATION-MIB",
804
+ "oid" : "1.3.6.1.2.1.62.1.2.2.1.4",
805
+ "status" : "current",
806
+ "syntax" : {
807
+ "type" : {
808
+ "basetype" : "Enumeration",
809
+ "read" : {
810
+ "nodetype" : "namednumber",
811
+ "number" : "1"
812
+ },
813
+ "write" : {
814
+ "nodetype" : "namednumber",
815
+ "number" : "2"
816
+ },
817
+ "readWrite" : {
818
+ "nodetype" : "namednumber",
819
+ "number" : "3"
820
+ },
821
+ },
822
+ },
823
+ "access" : "readonly",
824
+ "description" :
825
+ """This attribute reports the current mode of this file from
826
+ the perspective of this running application element.
827
+
828
+ These values have the following meanings:
829
+
830
+ read(1) - file opened for reading only
831
+ write(2) - file opened for writing only
832
+ readWrite(3) - file opened for read and write.
833
+
834
+ These values correspond to the POSIX/ANSI C library
835
+ function fopen() 'type' parameter, using the following
836
+ mappings:
837
+
838
+ r -> read(1)
839
+ w -> write(2)
840
+ a -> write(2)
841
+ + -> readWrite(3)""",
842
+ }, # column
843
+ "applOpenConnectionTable" : {
844
+ "nodetype" : "table",
845
+ "moduleName" : "APPLICATION-MIB",
846
+ "oid" : "1.3.6.1.2.1.62.1.2.3",
847
+ "status" : "current",
848
+ "description" :
849
+ """The applOpenConnectionTable provides information about
850
+ open and listening connections from the perspective
851
+ of a running application element or service instance.
852
+ Entries in this table are indexed by applElmtOrSvc,
853
+ applElmtOrSvcID, and by applOpenChannelIndex, which
854
+ serves to uniquely identify each connection in the
855
+ context of a service instance or running application
856
+ element.
857
+
858
+ For each row in this table, a corresponding row will
859
+ exist in the applOpenChannel table. For rows in the
860
+ applOpenChannelTable which do not represent open or
861
+ listening connections, no corresponding rows will exist
862
+ in this table.""",
863
+ }, # table
864
+ "applOpenConnectionEntry" : {
865
+ "nodetype" : "row",
866
+ "moduleName" : "APPLICATION-MIB",
867
+ "oid" : "1.3.6.1.2.1.62.1.2.3.1",
868
+ "status" : "current",
869
+ "linkage" : [
870
+ "applElmtOrSvc",
871
+ "applElmtOrSvcId",
872
+ "applOpenChannelIndex",
873
+ ],
874
+ "description" :
875
+ """An applOpenConnectionEntry indicates that a running
876
+ application element or service instance has an open
877
+ connection. The entry has information describing that
878
+ connection.
879
+
880
+ In the case of a TCP transport, the element
881
+ applOpenConnectionNearEndAddr and that row's
882
+ applOpenConnectionFarEndAddr would correspond
883
+ to a tcpConnEntry. For a UDP transport, a
884
+ similar relationship exists with respect to
885
+ a udpEntry.""",
886
+ }, # row
887
+ "applOpenConnectionTransport" : {
888
+ "nodetype" : "column",
889
+ "moduleName" : "APPLICATION-MIB",
890
+ "oid" : "1.3.6.1.2.1.62.1.2.3.1.1",
891
+ "status" : "current",
892
+ "syntax" : {
893
+ "type" : { "module" :"SNMPv2-TC", "name" : "TDomain"},
894
+ },
895
+ "access" : "readonly",
896
+ "default" : "0.0",
897
+ "description" :
898
+ """The applOpenConnectionTransport attribute identifies the
899
+ transport protocol in use for this connection. If it is
900
+ not practical to determine the underlying transport, this
901
+ attribute's value shall have a value of {0 0}.""",
902
+ }, # column
903
+ "applOpenConnectionNearEndAddr" : {
904
+ "nodetype" : "column",
905
+ "moduleName" : "APPLICATION-MIB",
906
+ "oid" : "1.3.6.1.2.1.62.1.2.3.1.2",
907
+ "status" : "current",
908
+ "syntax" : {
909
+ "type" : { "module" :"APPLICATION-MIB", "name" : "ApplTAddress"},
910
+ },
911
+ "access" : "readonly",
912
+ "default" : "",
913
+ "description" :
914
+ """The applOpenConnectionNearEndAddr attribute reports the
915
+ transport address and port information for the near end
916
+ of this connection.
917
+
918
+ If the value is not known, the value has a length
919
+ of zero.""",
920
+ }, # column
921
+ "applOpenConnectionNearEndpoint" : {
922
+ "nodetype" : "column",
923
+ "moduleName" : "APPLICATION-MIB",
924
+ "oid" : "1.3.6.1.2.1.62.1.2.3.1.3",
925
+ "status" : "current",
926
+ "syntax" : {
927
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
928
+ },
929
+ "access" : "readonly",
930
+ "default" : "",
931
+ "description" :
932
+ """The applOpenConnectionNearEndpoint attribute reports the
933
+ fully-qualified domain name and port information for the
934
+ near end of this connection.
935
+
936
+ The format of this attribute for TCP and UDP-based
937
+ protocols is the fully-qualified domain name immediately
938
+ followed by a colon which is immediately followed by
939
+ the decimal representation of the port number.
940
+
941
+ If the value is not known, the value has a length
942
+ of zero.""",
943
+ }, # column
944
+ "applOpenConnectionFarEndAddr" : {
945
+ "nodetype" : "column",
946
+ "moduleName" : "APPLICATION-MIB",
947
+ "oid" : "1.3.6.1.2.1.62.1.2.3.1.4",
948
+ "status" : "current",
949
+ "syntax" : {
950
+ "type" : { "module" :"APPLICATION-MIB", "name" : "ApplTAddress"},
951
+ },
952
+ "access" : "readonly",
953
+ "default" : "",
954
+ "description" :
955
+ """The applOpenConnectionFarEndAddr attribute reports the
956
+ transport address and port information for the far end
957
+ of this connection.
958
+
959
+ If not known, as in the case of a connectionless
960
+ transport, the value of this attribute shall be a
961
+ zero-length string.""",
962
+ }, # column
963
+ "applOpenConnectionFarEndpoint" : {
964
+ "nodetype" : "column",
965
+ "moduleName" : "APPLICATION-MIB",
966
+ "oid" : "1.3.6.1.2.1.62.1.2.3.1.5",
967
+ "status" : "current",
968
+ "syntax" : {
969
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
970
+ },
971
+ "access" : "readonly",
972
+ "default" : "",
973
+ "description" :
974
+ """The applOpenConnectionFarEndpoint attribute reports
975
+ the fully-qualified domain name and port information
976
+ for the far end of this connection.
977
+
978
+ The format of this attribute for TCP and UDP-based
979
+ protocols is the fully-qualified domain name immediately
980
+ followed by a colon which is immediately followed by
981
+ the decimal representation of the port number.
982
+
983
+ If not known, as in the case of a connectionless
984
+ transport, the value of this attribute shall be a
985
+ zero-length string.""",
986
+ }, # column
987
+ "applOpenConnectionApplication" : {
988
+ "nodetype" : "column",
989
+ "moduleName" : "APPLICATION-MIB",
990
+ "oid" : "1.3.6.1.2.1.62.1.2.3.1.6",
991
+ "status" : "current",
992
+ "syntax" : {
993
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
994
+ },
995
+ "access" : "readonly",
996
+ "default" : "",
997
+ "description" :
998
+ """The applOpenConnectionApplication attribute identifies
999
+ the application layer protocol in use. If not known,
1000
+ the value of this attribute shall be a zero-length
1001
+ string.
1002
+
1003
+ When possible, protocol names should be those used in
1004
+ the 'ASSIGNED NUMBERS' [13]. For example, an SMTP mail
1005
+ server would use 'SMTP'.""",
1006
+ }, # column
1007
+ "applTransactionStreamTable" : {
1008
+ "nodetype" : "table",
1009
+ "moduleName" : "APPLICATION-MIB",
1010
+ "oid" : "1.3.6.1.2.1.62.1.2.4",
1011
+ "status" : "current",
1012
+ "description" :
1013
+ """The applTransactionStreamTable contains common
1014
+ information for transaction statistic accumulation.""",
1015
+ }, # table
1016
+ "applTransactionStreamEntry" : {
1017
+ "nodetype" : "row",
1018
+ "moduleName" : "APPLICATION-MIB",
1019
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1",
1020
+ "status" : "current",
1021
+ "linkage" : [
1022
+ "applElmtOrSvc",
1023
+ "applElmtOrSvcId",
1024
+ "applOpenChannelIndex",
1025
+ ],
1026
+ "description" :
1027
+ """An applTransactionStreamEntry contains information for
1028
+ a single transaction stream. A transaction stream
1029
+ can be a network connection, file, or other source
1030
+ of transactions.""",
1031
+ }, # row
1032
+ "applTransactStreamDescr" : {
1033
+ "nodetype" : "column",
1034
+ "moduleName" : "APPLICATION-MIB",
1035
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.1",
1036
+ "status" : "current",
1037
+ "syntax" : {
1038
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1039
+ },
1040
+ "access" : "readonly",
1041
+ "default" : "",
1042
+ "description" :
1043
+ """The applTransactStreamDescr attribute provides a
1044
+ human-readable description of this transaction stream.
1045
+ If no descriptive information is available, this
1046
+ attribute's value shall be a zero-length string.""",
1047
+ }, # column
1048
+ "applTransactStreamUnitOfWork" : {
1049
+ "nodetype" : "column",
1050
+ "moduleName" : "APPLICATION-MIB",
1051
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.2",
1052
+ "status" : "current",
1053
+ "syntax" : {
1054
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1055
+ },
1056
+ "access" : "readonly",
1057
+ "default" : "",
1058
+ "description" :
1059
+ """The applTransactStreamUnitOfWork attribute provides a
1060
+ human-readable definition of what the unit of work is
1061
+ for this transaction stream.
1062
+
1063
+ If no descriptive information is available, this
1064
+ attribute's value shall be a zero-length string.""",
1065
+ }, # column
1066
+ "applTransactStreamInvokes" : {
1067
+ "nodetype" : "column",
1068
+ "moduleName" : "APPLICATION-MIB",
1069
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.3",
1070
+ "status" : "current",
1071
+ "syntax" : {
1072
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1073
+ },
1074
+ "access" : "readonly",
1075
+ "units" : "transactions",
1076
+ "description" :
1077
+ """Cumulative count of requests / invocations issued.
1078
+
1079
+ Discontinuities in this counter can be detected
1080
+ by monitoring the corresponding instance of
1081
+ applOpenChannelOpenTime.""",
1082
+ }, # column
1083
+ "applTransactStreamInvokesLow" : {
1084
+ "nodetype" : "column",
1085
+ "moduleName" : "APPLICATION-MIB",
1086
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.4",
1087
+ "status" : "current",
1088
+ "syntax" : {
1089
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1090
+ },
1091
+ "access" : "readonly",
1092
+ "units" : "transactions",
1093
+ "description" :
1094
+ """This counter corresponds to the low thirty-two
1095
+ bits of applTransactStreamInvokes.
1096
+
1097
+ Discontinuities in this counter can be detected
1098
+ by monitoring the corresponding instance of
1099
+ applOpenChannelOpenTime.""",
1100
+ }, # column
1101
+ "applTransactStreamInvCumTimes" : {
1102
+ "nodetype" : "column",
1103
+ "moduleName" : "APPLICATION-MIB",
1104
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.5",
1105
+ "status" : "current",
1106
+ "syntax" : {
1107
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1108
+ },
1109
+ "access" : "readonly",
1110
+ "units" : "milliseconds",
1111
+ "description" :
1112
+ """The applTransactStreamInvCumTimes attribute reports the
1113
+ cumulative sum of the lengths of the intervals measured
1114
+ between the transmission of requests and the receipt of
1115
+ (the first of) the corresponding response(s).
1116
+
1117
+ Discontinuities in this counter can be detected
1118
+ by monitoring the corresponding instance of
1119
+ applOpenChannelOpenTime.""",
1120
+ }, # column
1121
+ "applTransactStreamInvRspTimes" : {
1122
+ "nodetype" : "column",
1123
+ "moduleName" : "APPLICATION-MIB",
1124
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.6",
1125
+ "status" : "current",
1126
+ "syntax" : {
1127
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1128
+ },
1129
+ "access" : "readonly",
1130
+ "units" : "milliseconds",
1131
+ "description" :
1132
+ """The applTransactStreamInvRspTimes attribute reports the
1133
+ cumulative sum of the lengths of the intervals measured
1134
+ between the receipt of the first and last of multiple
1135
+ responses to a request.
1136
+
1137
+ For transaction streams which do not permit multiple
1138
+ responses to a single request, this attribute will be
1139
+ constant.
1140
+
1141
+ Discontinuities in this counter can be detected
1142
+ by monitoring the corresponding instance of
1143
+ applOpenChannelOpenTime.""",
1144
+ }, # column
1145
+ "applTransactStreamPerforms" : {
1146
+ "nodetype" : "column",
1147
+ "moduleName" : "APPLICATION-MIB",
1148
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.7",
1149
+ "status" : "current",
1150
+ "syntax" : {
1151
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1152
+ },
1153
+ "access" : "readonly",
1154
+ "units" : "transactions",
1155
+ "description" :
1156
+ """Cumulative count of transactions performed.
1157
+
1158
+ Discontinuities in this counter can be detected
1159
+ by monitoring the corresponding instance of
1160
+ applOpenChannelOpenTime.""",
1161
+ }, # column
1162
+ "applTransactStreamPerformsLow" : {
1163
+ "nodetype" : "column",
1164
+ "moduleName" : "APPLICATION-MIB",
1165
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.8",
1166
+ "status" : "current",
1167
+ "syntax" : {
1168
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1169
+ },
1170
+ "access" : "readonly",
1171
+ "units" : "transactions",
1172
+ "description" :
1173
+ """This counter reports the low thirty-two bits of
1174
+ applTransactStreamPerforms.
1175
+
1176
+ Discontinuities in this counter can be detected
1177
+ by monitoring the corresponding instance of
1178
+ applOpenChannelOpenTime.""",
1179
+ }, # column
1180
+ "applTransactStreamPrfCumTimes" : {
1181
+ "nodetype" : "column",
1182
+ "moduleName" : "APPLICATION-MIB",
1183
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.9",
1184
+ "status" : "current",
1185
+ "syntax" : {
1186
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1187
+ },
1188
+ "access" : "readonly",
1189
+ "units" : "milliseconds",
1190
+ "description" :
1191
+ """The applTransactStreamPrfCumTimes attribute reports the
1192
+ cumulative sum of the interval lengths measured between
1193
+ receipt of requests and the transmission of the
1194
+ corresponding responses.
1195
+
1196
+ Discontinuities in this counter can be detected
1197
+ by monitoring the corresponding instance of
1198
+ applOpenChannelOpenTime.""",
1199
+ }, # column
1200
+ "applTransactStreamPrfRspTimes" : {
1201
+ "nodetype" : "column",
1202
+ "moduleName" : "APPLICATION-MIB",
1203
+ "oid" : "1.3.6.1.2.1.62.1.2.4.1.10",
1204
+ "status" : "current",
1205
+ "syntax" : {
1206
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1207
+ },
1208
+ "access" : "readonly",
1209
+ "units" : "milliseconds",
1210
+ "description" :
1211
+ """For each transaction performed, the elapsed time between
1212
+ when the first response is enqueued and when the last
1213
+ response is enqueued is added to this cumulative sum.
1214
+
1215
+ For single-response protocols, the value of
1216
+ applTransactStreamPrfRspTimes will be constant.
1217
+
1218
+ Discontinuities in this counter can be detected
1219
+ by monitoring the corresponding instance of
1220
+ applOpenChannelOpenTime.""",
1221
+ }, # column
1222
+ "applTransactFlowTable" : {
1223
+ "nodetype" : "table",
1224
+ "moduleName" : "APPLICATION-MIB",
1225
+ "oid" : "1.3.6.1.2.1.62.1.2.5",
1226
+ "status" : "current",
1227
+ "description" :
1228
+ """The applTransactFlowTable contains entries, organized by
1229
+ application instance or running application element,
1230
+ direction of flow, and type (request/response) for each
1231
+ open transaction stream.
1232
+
1233
+ The simple model of a transaction used here looks like
1234
+ this:
1235
+
1236
+ invoker | Request | performer
1237
+ | - - - - - - > |
1238
+ | |
1239
+ | Response |
1240
+ | < - - - - - - |
1241
+ | |
1242
+
1243
+ Since in some protocols it is possible for an entity
1244
+ to take on both the invoker and performer roles,
1245
+ information here is accumulated for transmitted and
1246
+ received requests, as well as for transmitted and
1247
+ received responses. Counts are maintained for both
1248
+ transactions and bytes transferred.""",
1249
+ }, # table
1250
+ "applTransactFlowEntry" : {
1251
+ "nodetype" : "row",
1252
+ "moduleName" : "APPLICATION-MIB",
1253
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1",
1254
+ "status" : "current",
1255
+ "linkage" : [
1256
+ "applElmtOrSvc",
1257
+ "applElmtOrSvcId",
1258
+ "applOpenChannelIndex",
1259
+ "applTransactFlowDirection",
1260
+ "applTransactFlowReqRsp",
1261
+ ],
1262
+ "description" :
1263
+ """An applTransactFlowEntry reports transaction throughput
1264
+ information for requests or response in a particular
1265
+ direction (transmit / receive) for a transaction stream.
1266
+
1267
+ Entries in this table correspond to those in the
1268
+ applTransactionStreamTable with identical values for the
1269
+ applElmtOrSvc, applElmtOrSvcId, and applOpenChannelIndex.
1270
+
1271
+ For all counter objects in one of these entries,
1272
+ the corresponding (same value for applElmtOrSvc,
1273
+ applElmtOrSvcId, and applOpenChannelIndex)
1274
+ applOpenChannelOpenTime object serves as a discontinuity
1275
+ indicator. """,
1276
+ }, # row
1277
+ "applTransactFlowDirection" : {
1278
+ "nodetype" : "column",
1279
+ "moduleName" : "APPLICATION-MIB",
1280
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1.1",
1281
+ "status" : "current",
1282
+ "syntax" : {
1283
+ "type" : {
1284
+ "basetype" : "Enumeration",
1285
+ "transmit" : {
1286
+ "nodetype" : "namednumber",
1287
+ "number" : "1"
1288
+ },
1289
+ "receive" : {
1290
+ "nodetype" : "namednumber",
1291
+ "number" : "2"
1292
+ },
1293
+ },
1294
+ },
1295
+ "access" : "noaccess",
1296
+ "description" :
1297
+ """The applTransactFlowDirection index serves to identify
1298
+ an entry as containing information pertaining to the
1299
+ transmit (1) or receive (2) flow of a transaction
1300
+ stream.""",
1301
+ }, # column
1302
+ "applTransactFlowReqRsp" : {
1303
+ "nodetype" : "column",
1304
+ "moduleName" : "APPLICATION-MIB",
1305
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1.2",
1306
+ "status" : "current",
1307
+ "syntax" : {
1308
+ "type" : {
1309
+ "basetype" : "Enumeration",
1310
+ "request" : {
1311
+ "nodetype" : "namednumber",
1312
+ "number" : "1"
1313
+ },
1314
+ "response" : {
1315
+ "nodetype" : "namednumber",
1316
+ "number" : "2"
1317
+ },
1318
+ },
1319
+ },
1320
+ "access" : "noaccess",
1321
+ "description" :
1322
+ """The value of the applTransactFlowReqRsp index indicates
1323
+ whether this entry contains information on requests
1324
+ (1), or responses (2).""",
1325
+ }, # column
1326
+ "applTransactFlowTrans" : {
1327
+ "nodetype" : "column",
1328
+ "moduleName" : "APPLICATION-MIB",
1329
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1.3",
1330
+ "status" : "current",
1331
+ "syntax" : {
1332
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1333
+ },
1334
+ "access" : "readonly",
1335
+ "units" : "transactions",
1336
+ "description" :
1337
+ """The applTransactFlowTrans attribute reports the number
1338
+ of request/response transactions (as indicated by
1339
+ the applTransactFlowReqRsp index) received/generated
1340
+ (as indicated by the applTransactFlowDirection index)
1341
+ that this service instance or running application
1342
+ element has processed for this transaction stream.
1343
+
1344
+ Discontinuities in this counter can be detected
1345
+ by monitoring the corresponding instance of
1346
+ applOpenChannelOpenTime.""",
1347
+ }, # column
1348
+ "applTransactFlowTransLow" : {
1349
+ "nodetype" : "column",
1350
+ "moduleName" : "APPLICATION-MIB",
1351
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1.4",
1352
+ "status" : "current",
1353
+ "syntax" : {
1354
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1355
+ },
1356
+ "access" : "readonly",
1357
+ "units" : "transactions",
1358
+ "description" :
1359
+ """This attribute corresponds to the low thirty-two
1360
+ bits of applTransactFlowTrans.
1361
+
1362
+ Discontinuities in this counter can be detected
1363
+ by monitoring the corresponding instance of
1364
+ applOpenChannelOpenTime.""",
1365
+ }, # column
1366
+ "applTransactFlowBytes" : {
1367
+ "nodetype" : "column",
1368
+ "moduleName" : "APPLICATION-MIB",
1369
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1.5",
1370
+ "status" : "current",
1371
+ "syntax" : {
1372
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1373
+ },
1374
+ "access" : "readonly",
1375
+ "units" : "bytes",
1376
+ "description" :
1377
+ """The applTransactFlowBytes attribute reports the number
1378
+ of request/response (as indicated by the
1379
+ applTransactFlowReqRsp index) bytes received/generated
1380
+ (as indicated by the applTransactFlowDirection index)
1381
+ handled by this application element or service instance
1382
+ on this transaction stream.
1383
+
1384
+ All application layer bytes are included in this count,
1385
+ including any application layer wrappers, headers, or
1386
+ other overhead.
1387
+
1388
+ Discontinuities in this counter can be detected
1389
+ by monitoring the corresponding instance of
1390
+ applOpenChannelOpenTime.""",
1391
+ }, # column
1392
+ "applTransactFlowBytesLow" : {
1393
+ "nodetype" : "column",
1394
+ "moduleName" : "APPLICATION-MIB",
1395
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1.6",
1396
+ "status" : "current",
1397
+ "syntax" : {
1398
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1399
+ },
1400
+ "access" : "readonly",
1401
+ "units" : "bytes",
1402
+ "description" :
1403
+ """This attribute corresponds to the low thirty-two
1404
+ bits of applTransactFlowBytes.
1405
+
1406
+ Discontinuities in this counter can be detected
1407
+ by monitoring the corresponding instance of
1408
+ applOpenChannelOpenTime.""",
1409
+ }, # column
1410
+ "applTransactFlowTime" : {
1411
+ "nodetype" : "column",
1412
+ "moduleName" : "APPLICATION-MIB",
1413
+ "oid" : "1.3.6.1.2.1.62.1.2.5.1.7",
1414
+ "status" : "current",
1415
+ "syntax" : {
1416
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1417
+ },
1418
+ "access" : "readonly",
1419
+ "default" : "0x0000000000000000",
1420
+ "description" :
1421
+ """The applTransactFlowTime attribute records the time of
1422
+ the processing (receipt or transmission as indicated
1423
+ by the applTransactFlowDirection index) by this
1424
+ running application element or service instance of
1425
+ the most recent request/response (as indicated by
1426
+ the applTransactFlowReqRsp index) on this transaction
1427
+ stream.
1428
+
1429
+ If no requests/responses been received/transmitted by
1430
+ this entity over this transaction stream, the value
1431
+ of this attribute shall be '0000000000000000'H """,
1432
+ }, # column
1433
+ "applTransactKindTable" : {
1434
+ "nodetype" : "table",
1435
+ "moduleName" : "APPLICATION-MIB",
1436
+ "oid" : "1.3.6.1.2.1.62.1.2.6",
1437
+ "status" : "current",
1438
+ "description" :
1439
+ """The applTransactKindTable provides transaction statistics
1440
+ broken down by kinds of transaction. The definition of
1441
+ the kinds of transactions is specific to the application
1442
+ protocol in use, and may be documented in the form of an
1443
+ applicability statement. """,
1444
+ }, # table
1445
+ "applTransactKindEntry" : {
1446
+ "nodetype" : "row",
1447
+ "moduleName" : "APPLICATION-MIB",
1448
+ "oid" : "1.3.6.1.2.1.62.1.2.6.1",
1449
+ "status" : "current",
1450
+ "linkage" : [
1451
+ "applElmtOrSvc",
1452
+ "applElmtOrSvcId",
1453
+ "applOpenChannelIndex",
1454
+ "applTransactFlowDirection",
1455
+ "applTransactFlowReqRsp",
1456
+ "applTransactKind",
1457
+ ],
1458
+ "description" :
1459
+ """An applTransactKindEntry reports information for a
1460
+ specific service instance or running application
1461
+ element's use of a specific transaction stream in
1462
+ a particular direction in requests or responses
1463
+ (as indicated by the applTransactFlowReqRsp index)
1464
+ broken down by transaction kind, as indicated by the
1465
+ applTransactKind index.
1466
+
1467
+ Discontinuities in any of the counters in an entry can
1468
+ be detected by monitoring the corresponding instance of
1469
+ applOpenChannelOpenTime.""",
1470
+ }, # row
1471
+ "applTransactKind" : {
1472
+ "nodetype" : "column",
1473
+ "moduleName" : "APPLICATION-MIB",
1474
+ "oid" : "1.3.6.1.2.1.62.1.2.6.1.1",
1475
+ "status" : "current",
1476
+ "syntax" : {
1477
+ "type" : {
1478
+ "basetype" : "OctetString",
1479
+ "parent module" : {
1480
+ "name" : "SNMP-FRAMEWORK-MIB",
1481
+ "type" : "SnmpAdminString",
1482
+ },
1483
+ "ranges" : [
1484
+ {
1485
+ "min" : "1",
1486
+ "max" : "32"
1487
+ },
1488
+ ],
1489
+ "range" : {
1490
+ "min" : "1",
1491
+ "max" : "32"
1492
+ },
1493
+ },
1494
+ },
1495
+ "access" : "noaccess",
1496
+ "description" :
1497
+ """The applTransactKind index is the human-readable
1498
+ identifier for a particular transaction kind within
1499
+ the context of an application protocol. The values
1500
+ to be used for a particular protocol may be identified
1501
+ in an applicability statement.""",
1502
+ }, # column
1503
+ "applTransactKindTrans" : {
1504
+ "nodetype" : "column",
1505
+ "moduleName" : "APPLICATION-MIB",
1506
+ "oid" : "1.3.6.1.2.1.62.1.2.6.1.2",
1507
+ "status" : "current",
1508
+ "syntax" : {
1509
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1510
+ },
1511
+ "access" : "readonly",
1512
+ "units" : "transactions",
1513
+ "description" :
1514
+ """The applTransactKindTrans attribute reports the number
1515
+ of request/response (as indicated by the
1516
+ applTransactFlowReqRsp index) transactions
1517
+ received/generated (as indicated by the
1518
+ applTransactFlowDirection index) handled by this
1519
+ application instance or application element on this
1520
+ transaction stream for this transaction kind.
1521
+
1522
+ Discontinuities in this counter can be detected
1523
+ by monitoring the corresponding instance of
1524
+ applOpenChannelOpenTime.""",
1525
+ }, # column
1526
+ "applTransactKindTransLow" : {
1527
+ "nodetype" : "column",
1528
+ "moduleName" : "APPLICATION-MIB",
1529
+ "oid" : "1.3.6.1.2.1.62.1.2.6.1.3",
1530
+ "status" : "current",
1531
+ "syntax" : {
1532
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1533
+ },
1534
+ "access" : "readonly",
1535
+ "units" : "transactions",
1536
+ "description" :
1537
+ """The applTransactKindTransLow attribute reports
1538
+ the low thirty-two bits of applTransactKindTrans.
1539
+
1540
+ Discontinuities in this counter can be detected
1541
+ by monitoring the corresponding instance of
1542
+ applOpenChannelOpenTime.""",
1543
+ }, # column
1544
+ "applTransactKindBytes" : {
1545
+ "nodetype" : "column",
1546
+ "moduleName" : "APPLICATION-MIB",
1547
+ "oid" : "1.3.6.1.2.1.62.1.2.6.1.4",
1548
+ "status" : "current",
1549
+ "syntax" : {
1550
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1551
+ },
1552
+ "access" : "readonly",
1553
+ "units" : "bytes",
1554
+ "description" :
1555
+ """The applTransactKindBytes attribute reports the number
1556
+ of request/response (as indicated by the
1557
+ applTransactFlowReqRsp index) bytes received/generated
1558
+ (as indicated by the applTransactFlowDirection index)
1559
+ handled by this application element on this transaction
1560
+ stream for this transaction kind.
1561
+
1562
+ All application layer bytes are included in this count,
1563
+ including any application layer wrappers, headers, or
1564
+ other overhead.
1565
+
1566
+ Discontinuities in this counter can be detected
1567
+ by monitoring the corresponding instance of
1568
+ applOpenChannelOpenTime.""",
1569
+ }, # column
1570
+ "applTransactKindBytesLow" : {
1571
+ "nodetype" : "column",
1572
+ "moduleName" : "APPLICATION-MIB",
1573
+ "oid" : "1.3.6.1.2.1.62.1.2.6.1.5",
1574
+ "status" : "current",
1575
+ "syntax" : {
1576
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1577
+ },
1578
+ "access" : "readonly",
1579
+ "units" : "bytes",
1580
+ "description" :
1581
+ """The applTransactKindBytesLow attribute corresponds
1582
+ to the low thirty-two bits of applTransactKindBytes.
1583
+
1584
+ Discontinuities in this counter can be detected
1585
+ by monitoring the corresponding instance of
1586
+ applOpenChannelOpenTime.""",
1587
+ }, # column
1588
+ "applTransactKindTime" : {
1589
+ "nodetype" : "column",
1590
+ "moduleName" : "APPLICATION-MIB",
1591
+ "oid" : "1.3.6.1.2.1.62.1.2.6.1.6",
1592
+ "status" : "current",
1593
+ "syntax" : {
1594
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1595
+ },
1596
+ "access" : "readonly",
1597
+ "default" : "0x0000000000000000",
1598
+ "description" :
1599
+ """The applTransactKindTime attribute records the time of
1600
+ the processing (receipt or transmission as indicated
1601
+ by the applTransactFlowDirection index) by this
1602
+ running application element or service instance of
1603
+ the most recent request/response (as indicated by
1604
+ the applTransactFlowReqRsp index) of this kind of
1605
+ transaction on this transaction stream.
1606
+
1607
+ If no requests/responses of this kind been
1608
+ received/transmitted by this running application element
1609
+ or service instance over this transaction stream, the
1610
+ value of this attribute shall be '0000000000000000'H """,
1611
+ }, # column
1612
+ "applPastChannelGroup" : {
1613
+ "nodetype" : "node",
1614
+ "moduleName" : "APPLICATION-MIB",
1615
+ "oid" : "1.3.6.1.2.1.62.1.3",
1616
+ }, # node
1617
+ "applPastChannelControlTable" : {
1618
+ "nodetype" : "table",
1619
+ "moduleName" : "APPLICATION-MIB",
1620
+ "oid" : "1.3.6.1.2.1.62.1.3.1",
1621
+ "status" : "current",
1622
+ "description" :
1623
+ """The applPastChannelControlTable controls the
1624
+ accumulation of history information about channels
1625
+ from the perspective of service instances and running
1626
+ application elements. Entries in this table are indexed
1627
+ by applElmtOrSvc and applElmtOrSvcId, giving control
1628
+ of channel history accumulation at the level of each
1629
+ service instance and running application element.""",
1630
+ }, # table
1631
+ "applPastChannelControlEntry" : {
1632
+ "nodetype" : "row",
1633
+ "moduleName" : "APPLICATION-MIB",
1634
+ "oid" : "1.3.6.1.2.1.62.1.3.1.1",
1635
+ "status" : "current",
1636
+ "linkage" : [
1637
+ "applElmtOrSvc",
1638
+ "applElmtOrSvcId",
1639
+ ],
1640
+ "description" :
1641
+ """An applPastChannelControlEntry provides the ability
1642
+ to control the retention of channel history information
1643
+ by service instances and running application elements.""",
1644
+ }, # row
1645
+ "applPastChannelControlCollect" : {
1646
+ "nodetype" : "column",
1647
+ "moduleName" : "APPLICATION-MIB",
1648
+ "oid" : "1.3.6.1.2.1.62.1.3.1.1.1",
1649
+ "status" : "current",
1650
+ "syntax" : {
1651
+ "type" : {
1652
+ "basetype" : "Enumeration",
1653
+ "enabled" : {
1654
+ "nodetype" : "namednumber",
1655
+ "number" : "1"
1656
+ },
1657
+ "frozen" : {
1658
+ "nodetype" : "namednumber",
1659
+ "number" : "2"
1660
+ },
1661
+ "disabled" : {
1662
+ "nodetype" : "namednumber",
1663
+ "number" : "3"
1664
+ },
1665
+ },
1666
+ },
1667
+ "access" : "readwrite",
1668
+ "default" : "enabled",
1669
+ "description" :
1670
+ """When the value of applPastChannelControlCollect is
1671
+ 'enabled', each time the corresponding running
1672
+ application element or service instance closes
1673
+ an open channel a new entry will be added to the
1674
+ applPastChannelTable.
1675
+
1676
+ When the value of applPastChannelControlCollect
1677
+ is 'frozen', no new entries are added to the
1678
+ applPastChannelTable for this running application
1679
+ element or service instance, and old entries are not
1680
+ aged out.
1681
+
1682
+ When the value of applPastChannelControlCollect
1683
+ is 'disabled', all entries are removed from
1684
+ applPastChannelTable for this running application or
1685
+ service instance, and no new entries are added.""",
1686
+ }, # column
1687
+ "applPastChannelControlMaxRows" : {
1688
+ "nodetype" : "column",
1689
+ "moduleName" : "APPLICATION-MIB",
1690
+ "oid" : "1.3.6.1.2.1.62.1.3.1.1.2",
1691
+ "status" : "current",
1692
+ "syntax" : {
1693
+ "type" : { "module" :"", "name" : "Unsigned32"},
1694
+ },
1695
+ "access" : "readwrite",
1696
+ "default" : "500",
1697
+ "units" : "channel history entries",
1698
+ "description" :
1699
+ """The maximum number of entries allowed in the
1700
+ applPastChannelTable for this running application element
1701
+ or service instance. Once the number of rows for this
1702
+ running application element or service instance in the
1703
+ applPastChannelTable reaches this value, when new
1704
+ entries are to be added the management subsystem will
1705
+ make room for them by removing the oldest entries.
1706
+ Entries will be removed on the basis of oldest
1707
+ applPastChannelCloseTime value first.""",
1708
+ }, # column
1709
+ "applPastChannelControlTimeLimit" : {
1710
+ "nodetype" : "column",
1711
+ "moduleName" : "APPLICATION-MIB",
1712
+ "oid" : "1.3.6.1.2.1.62.1.3.1.1.3",
1713
+ "status" : "current",
1714
+ "syntax" : {
1715
+ "type" : { "module" :"", "name" : "Unsigned32"},
1716
+ },
1717
+ "access" : "readwrite",
1718
+ "default" : "7200",
1719
+ "units" : "seconds",
1720
+ "description" :
1721
+ """The maximum time in seconds which an entry for this
1722
+ running application element or service instance
1723
+ may exist in the applPastChannelTable before it
1724
+ is removed. Any entry that is older than this value
1725
+ will be removed (aged out) from the table, unless the
1726
+ applPastChannelControlCollect is set to 'frozen'.
1727
+
1728
+ Note that an entry may be aged out prior to reaching
1729
+ this time limit if it is the oldest entry in the table
1730
+ and must be removed to make space for a new entry so
1731
+ as to not exceed applPastChannelControlMaxRows, or if the
1732
+ applPastChannelControlCollect is set to 'disabled'.""",
1733
+ }, # column
1734
+ "applPastChannelControlRemItems" : {
1735
+ "nodetype" : "column",
1736
+ "moduleName" : "APPLICATION-MIB",
1737
+ "oid" : "1.3.6.1.2.1.62.1.3.1.1.4",
1738
+ "status" : "current",
1739
+ "syntax" : {
1740
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1741
+ },
1742
+ "access" : "readonly",
1743
+ "units" : "channel history entries",
1744
+ "description" :
1745
+ """The applPastChannelControlRemItems attribute reports the
1746
+ number of applPastChannelControlTable entries for this
1747
+ running application element or service instance that
1748
+ were deleted in order to make room for new history
1749
+ entries.
1750
+
1751
+ This count does NOT include entries deleted for the
1752
+ following reasons:
1753
+ - the corresponding applPastChannelControlCollect
1754
+ attribute has been set to 'disabled'
1755
+
1756
+ - the entry has been in the table longer that the
1757
+ time limit indicated by the corresponding
1758
+ applPastChannelControlTimeLimit.""",
1759
+ }, # column
1760
+ "applPastChannelTable" : {
1761
+ "nodetype" : "table",
1762
+ "moduleName" : "APPLICATION-MIB",
1763
+ "oid" : "1.3.6.1.2.1.62.1.3.2",
1764
+ "status" : "current",
1765
+ "description" :
1766
+ """The applPastChannelTable provides history information
1767
+ about channels from the perspective of running
1768
+ application elements and service instances.
1769
+ Entries in this table are indexed by applElmtOrSvc,
1770
+ applElmtOrSvcId, and by applPastChannelIndex, which
1771
+ serves to uniquely identify each former channel in the
1772
+ context of a running application element or service
1773
+ instance.
1774
+
1775
+ Note that the value of applPastChannelIndex is
1776
+ independent of the value applOpenChannelIndex had when
1777
+ this channel was open.
1778
+
1779
+ Entries for closed channels for a given running
1780
+ application element or service instance can
1781
+ be added to this table only if its entry in the
1782
+ applPastChannelControlTable has the value 'enabled'
1783
+ for the attribute applPastChannelControlCollect.
1784
+
1785
+ Entries for closed channels are removed under the
1786
+ following circumstances:
1787
+
1788
+ - the running application element or service
1789
+ instance no longer exists
1790
+
1791
+ - the corresponding applPastChannelControlCollect
1792
+ attribute has been set to 'disabled'
1793
+
1794
+ - the entry has been in the table longer that the
1795
+ time limit indicated by the corresponding
1796
+ applPastChannelControlTimeLimit and the value of
1797
+ applPastChannelControlCollect is not 'frozen'
1798
+
1799
+ - this is the oldest entry for the running
1800
+ application element or service instance in
1801
+ question and the addition of a new element would
1802
+ otherwise cause applPastChannelControlMaxRows to
1803
+ be exceeded for this running application element
1804
+ or service instance.
1805
+
1806
+ - a value of applPastChannelIndex has been re-used.
1807
+ Note that under normal circumstances, this is
1808
+ unlikely.
1809
+
1810
+ Removal/replacement of an entry under the
1811
+ last two conditions causes the corresponding
1812
+ applPastChannelControlRemItems to be incremented.""",
1813
+ }, # table
1814
+ "applPastChannelEntry" : {
1815
+ "nodetype" : "row",
1816
+ "moduleName" : "APPLICATION-MIB",
1817
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1",
1818
+ "status" : "current",
1819
+ "linkage" : [
1820
+ "applElmtOrSvc",
1821
+ "applElmtOrSvcId",
1822
+ "applPastChannelIndex",
1823
+ ],
1824
+ "description" :
1825
+ """An applPastChannelEntry indicates that a running
1826
+ application element or service instance once had an open
1827
+ channel, which is now closed. The entry has information
1828
+ describing that channel.""",
1829
+ }, # row
1830
+ "applPastChannelIndex" : {
1831
+ "nodetype" : "column",
1832
+ "moduleName" : "APPLICATION-MIB",
1833
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.1",
1834
+ "status" : "current",
1835
+ "syntax" : {
1836
+ "type" : {
1837
+ "basetype" : "Unsigned32",
1838
+ "ranges" : [
1839
+ {
1840
+ "min" : "1",
1841
+ "max" : "4294967295"
1842
+ },
1843
+ ],
1844
+ "range" : {
1845
+ "min" : "1",
1846
+ "max" : "4294967295"
1847
+ },
1848
+ },
1849
+ },
1850
+ "access" : "noaccess",
1851
+ "description" :
1852
+ """This attribute serves to uniquely identify this closed
1853
+ channel in the context of the running application
1854
+ element or service instance. This attribute has no
1855
+ other semantics.
1856
+
1857
+ Note that the value of applPastChannelIndex is
1858
+ independent of the value applOpenChannelIndex had when
1859
+ this channel was active.
1860
+
1861
+ In issuing this index value, the implementation must
1862
+ avoid re-issuing an index value which has already been
1863
+ assigned to an entry which has not yet been deleted due
1864
+ to age or space considerations.
1865
+
1866
+ The value zero is excluded from the set of permitted
1867
+ values for this index in order to permit other tables to
1868
+ possibly represent information that cannot be associated
1869
+ with a specific entry in this table. """,
1870
+ }, # column
1871
+ "applPastChannelOpenTime" : {
1872
+ "nodetype" : "column",
1873
+ "moduleName" : "APPLICATION-MIB",
1874
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.2",
1875
+ "status" : "current",
1876
+ "syntax" : {
1877
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1878
+ },
1879
+ "access" : "readonly",
1880
+ "description" :
1881
+ """This attribute records the time when this channel was
1882
+ originally opened. Note that this information is quite
1883
+ different from applOpenChannelOpenTime, which is used
1884
+ for the detection of counter discontinuities.""",
1885
+ }, # column
1886
+ "applPastChannelCloseTime" : {
1887
+ "nodetype" : "column",
1888
+ "moduleName" : "APPLICATION-MIB",
1889
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.3",
1890
+ "status" : "current",
1891
+ "syntax" : {
1892
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1893
+ },
1894
+ "access" : "readonly",
1895
+ "description" :
1896
+ """This attribute records the time when this channel
1897
+ was closed.""",
1898
+ }, # column
1899
+ "applPastChannelReadRequests" : {
1900
+ "nodetype" : "column",
1901
+ "moduleName" : "APPLICATION-MIB",
1902
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.4",
1903
+ "status" : "current",
1904
+ "syntax" : {
1905
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
1906
+ },
1907
+ "access" : "readonly",
1908
+ "units" : "read requests",
1909
+ "description" :
1910
+ """This attribute records the number of read requests for
1911
+ this channel made by this running application element or
1912
+ service instance. All read requests for this channel by
1913
+ this running application element or service instance,
1914
+ regardless of completion status, are included in this
1915
+ count. Read requests are counted in terms of system
1916
+ calls, rather than API calls.""",
1917
+ }, # column
1918
+ "applPastChannelReadReqsLow" : {
1919
+ "nodetype" : "column",
1920
+ "moduleName" : "APPLICATION-MIB",
1921
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.5",
1922
+ "status" : "current",
1923
+ "syntax" : {
1924
+ "type" : { "module" :"", "name" : "Unsigned32"},
1925
+ },
1926
+ "access" : "readonly",
1927
+ "units" : "read requests",
1928
+ "description" :
1929
+ """This attribute corresponds to the low thirty-two bits
1930
+ of applPastChannelReadRequests.""",
1931
+ }, # column
1932
+ "applPastChannelReadFailures" : {
1933
+ "nodetype" : "column",
1934
+ "moduleName" : "APPLICATION-MIB",
1935
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.6",
1936
+ "status" : "current",
1937
+ "syntax" : {
1938
+ "type" : { "module" :"", "name" : "Unsigned32"},
1939
+ },
1940
+ "access" : "readonly",
1941
+ "units" : "failed read requests",
1942
+ "description" :
1943
+ """This attribute reports the number of failed read
1944
+ requests.""",
1945
+ }, # column
1946
+ "applPastChannelBytesRead" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "APPLICATION-MIB",
1949
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.7",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
1953
+ },
1954
+ "access" : "readonly",
1955
+ "units" : "bytes",
1956
+ "description" :
1957
+ """This attribute reports the number of bytes read from this
1958
+ channel by this running application element or service
1959
+ instance. Only bytes successfully read are included in
1960
+ this count. """,
1961
+ }, # column
1962
+ "applPastChannelBytesReadLow" : {
1963
+ "nodetype" : "column",
1964
+ "moduleName" : "APPLICATION-MIB",
1965
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.8",
1966
+ "status" : "current",
1967
+ "syntax" : {
1968
+ "type" : { "module" :"", "name" : "Unsigned32"},
1969
+ },
1970
+ "access" : "readonly",
1971
+ "units" : "bytes",
1972
+ "description" :
1973
+ """This attribute corresponds to the low thirty-two bits
1974
+ of applPastChannelBytesRead.""",
1975
+ }, # column
1976
+ "applPastChannelLastReadTime" : {
1977
+ "nodetype" : "column",
1978
+ "moduleName" : "APPLICATION-MIB",
1979
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.9",
1980
+ "status" : "current",
1981
+ "syntax" : {
1982
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1983
+ },
1984
+ "access" : "readonly",
1985
+ "default" : "0x0000000000000000",
1986
+ "description" :
1987
+ """This attribute reports the time of the most recent read
1988
+ request made by this running application element or
1989
+ service instance regardless of completion status, for
1990
+ this former channel.
1991
+
1992
+ If no read requests have been made , the value of this
1993
+ attribute shall be '0000000000000000'H """,
1994
+ }, # column
1995
+ "applPastChannelWriteRequests" : {
1996
+ "nodetype" : "column",
1997
+ "moduleName" : "APPLICATION-MIB",
1998
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.10",
1999
+ "status" : "current",
2000
+ "syntax" : {
2001
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2002
+ },
2003
+ "access" : "readonly",
2004
+ "units" : "write requests",
2005
+ "description" :
2006
+ """The applPastChannelWriteRequests attribute reports
2007
+ the number of write requests, regardless of completion
2008
+ status, made by this running application element or
2009
+ service instance for this former channel.
2010
+
2011
+ Write requests are counted in terms of system calls,
2012
+ rather than API calls.""",
2013
+ }, # column
2014
+ "applPastChannelWriteReqsLow" : {
2015
+ "nodetype" : "column",
2016
+ "moduleName" : "APPLICATION-MIB",
2017
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.11",
2018
+ "status" : "current",
2019
+ "syntax" : {
2020
+ "type" : { "module" :"", "name" : "Unsigned32"},
2021
+ },
2022
+ "access" : "readonly",
2023
+ "units" : "write requests",
2024
+ "description" :
2025
+ """This attribute corresponds to the low thirty-two
2026
+ bits of applPastChannelWriteRequests.""",
2027
+ }, # column
2028
+ "applPastChannelWriteFailures" : {
2029
+ "nodetype" : "column",
2030
+ "moduleName" : "APPLICATION-MIB",
2031
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.12",
2032
+ "status" : "current",
2033
+ "syntax" : {
2034
+ "type" : { "module" :"", "name" : "Unsigned32"},
2035
+ },
2036
+ "access" : "readonly",
2037
+ "units" : "failed write requests",
2038
+ "description" :
2039
+ """This attribute reports the number of failed write
2040
+ requests.""",
2041
+ }, # column
2042
+ "applPastChannelBytesWritten" : {
2043
+ "nodetype" : "column",
2044
+ "moduleName" : "APPLICATION-MIB",
2045
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.13",
2046
+ "status" : "current",
2047
+ "syntax" : {
2048
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2049
+ },
2050
+ "access" : "readonly",
2051
+ "units" : "bytes",
2052
+ "description" :
2053
+ """This attribute reports the number of bytes written to
2054
+ this former channel by this running application element
2055
+ or service instance. Only bytes successfully written
2056
+ (no errors reported by the API in use by the application)
2057
+ are included in this count.""",
2058
+ }, # column
2059
+ "applPastChannelBytesWritLow" : {
2060
+ "nodetype" : "column",
2061
+ "moduleName" : "APPLICATION-MIB",
2062
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.14",
2063
+ "status" : "current",
2064
+ "syntax" : {
2065
+ "type" : { "module" :"", "name" : "Unsigned32"},
2066
+ },
2067
+ "access" : "readonly",
2068
+ "units" : "bytes",
2069
+ "description" :
2070
+ """This attribute corresponds to the low thirty-two bits of
2071
+ applPastChannelBytesWritten.""",
2072
+ }, # column
2073
+ "applPastChannelLastWriteTime" : {
2074
+ "nodetype" : "column",
2075
+ "moduleName" : "APPLICATION-MIB",
2076
+ "oid" : "1.3.6.1.2.1.62.1.3.2.1.15",
2077
+ "status" : "current",
2078
+ "syntax" : {
2079
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2080
+ },
2081
+ "access" : "readonly",
2082
+ "default" : "0x0000000000000000",
2083
+ "description" :
2084
+ """The applPastChannelLastWriteTime attribute reports
2085
+ the time of the most recent write request made by
2086
+ this running application element or service instance,
2087
+ regardless of completion status, for this former
2088
+ channel.
2089
+
2090
+ If no write requests have been made the value of this
2091
+ attribute shall be '0000000000000000'H """,
2092
+ }, # column
2093
+ "applPastFileTable" : {
2094
+ "nodetype" : "table",
2095
+ "moduleName" : "APPLICATION-MIB",
2096
+ "oid" : "1.3.6.1.2.1.62.1.3.3",
2097
+ "status" : "current",
2098
+ "description" :
2099
+ """The applPastFileTable supplements the
2100
+ applPastChannelTable for entries corresponding to
2101
+ channels which were files. The indexing structure is
2102
+ identical to applPastChannelTable. An entry exists in
2103
+ the applPastFileTable only if there is a corresponding
2104
+ (same index values) entry in the applPastChannelTable
2105
+ and if the channel was a file.
2106
+
2107
+ Entries for closed files are removed when the
2108
+ corresponding entries are removed from the
2109
+ applPastChannelTable.""",
2110
+ }, # table
2111
+ "applPastFileEntry" : {
2112
+ "nodetype" : "row",
2113
+ "moduleName" : "APPLICATION-MIB",
2114
+ "oid" : "1.3.6.1.2.1.62.1.3.3.1",
2115
+ "status" : "current",
2116
+ "linkage" : [
2117
+ "applElmtOrSvc",
2118
+ "applElmtOrSvcId",
2119
+ "applPastChannelIndex",
2120
+ ],
2121
+ "description" :
2122
+ """An applPastFileEntry provides additional, file-specific
2123
+ information to complement the corresponding
2124
+ applPastChannelEntry for a channel which was a file.""",
2125
+ }, # row
2126
+ "applPastFileName" : {
2127
+ "nodetype" : "column",
2128
+ "moduleName" : "APPLICATION-MIB",
2129
+ "oid" : "1.3.6.1.2.1.62.1.3.3.1.1",
2130
+ "status" : "current",
2131
+ "syntax" : {
2132
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "LongUtf8String"},
2133
+ },
2134
+ "access" : "readonly",
2135
+ "description" :
2136
+ """This attribute records the last known value of
2137
+ applOpenFileName before the channel was closed.""",
2138
+ }, # column
2139
+ "applPastFileSizeHigh" : {
2140
+ "nodetype" : "column",
2141
+ "moduleName" : "APPLICATION-MIB",
2142
+ "oid" : "1.3.6.1.2.1.62.1.3.3.1.2",
2143
+ "status" : "current",
2144
+ "syntax" : {
2145
+ "type" : { "module" :"", "name" : "Unsigned32"},
2146
+ },
2147
+ "access" : "readonly",
2148
+ "units" : "2^32 byte blocks",
2149
+ "description" :
2150
+ """This attribute records the value of applOpenFileSizeHigh
2151
+ at the time this channel was closed.
2152
+
2153
+ For example, for a file with a total size of
2154
+ 4,294,967,296 bytes, this attribute would have a value
2155
+ of 1; for a file with a total size of 4,294,967,295
2156
+ bytes this attribute's value would be 0.""",
2157
+ }, # column
2158
+ "applPastFileSizeLow" : {
2159
+ "nodetype" : "column",
2160
+ "moduleName" : "APPLICATION-MIB",
2161
+ "oid" : "1.3.6.1.2.1.62.1.3.3.1.3",
2162
+ "status" : "current",
2163
+ "syntax" : {
2164
+ "type" : { "module" :"", "name" : "Unsigned32"},
2165
+ },
2166
+ "access" : "readonly",
2167
+ "units" : "bytes",
2168
+ "description" :
2169
+ """This attribute records the value of applOpenFileSizeLow
2170
+ at the time this channel was closed.
2171
+
2172
+ For example, for a file with a total size of
2173
+ 4,294,967,296 bytes this attribute would have a value
2174
+ of 0; for a file with a total size of 4,294,967,295
2175
+ bytes this attribute's value would be 4,294,967,295.""",
2176
+ }, # column
2177
+ "applPastFileMode" : {
2178
+ "nodetype" : "column",
2179
+ "moduleName" : "APPLICATION-MIB",
2180
+ "oid" : "1.3.6.1.2.1.62.1.3.3.1.4",
2181
+ "status" : "current",
2182
+ "syntax" : {
2183
+ "type" : {
2184
+ "basetype" : "Enumeration",
2185
+ "read" : {
2186
+ "nodetype" : "namednumber",
2187
+ "number" : "1"
2188
+ },
2189
+ "write" : {
2190
+ "nodetype" : "namednumber",
2191
+ "number" : "2"
2192
+ },
2193
+ "readWrite" : {
2194
+ "nodetype" : "namednumber",
2195
+ "number" : "3"
2196
+ },
2197
+ },
2198
+ },
2199
+ "access" : "readonly",
2200
+ "description" :
2201
+ """This attribute records the value of applOpenFileMode
2202
+ at the time this channel was closed. """,
2203
+ }, # column
2204
+ "applPastConTable" : {
2205
+ "nodetype" : "table",
2206
+ "moduleName" : "APPLICATION-MIB",
2207
+ "oid" : "1.3.6.1.2.1.62.1.3.4",
2208
+ "status" : "current",
2209
+ "description" :
2210
+ """The applPastConTable supplements the applPastChannelTable
2211
+ for entries corresponding to channels which were
2212
+ connections. The indexing structure is identical
2213
+ to applPastChannelTable. An entry exists in the
2214
+ applPastConTable only if there is a corresponding
2215
+ (same index values) entry in the applPastChannelTable
2216
+ and if the channel was a connection.
2217
+
2218
+ Entries for closed connections are removed when
2219
+ the corresponding entries are removed from the
2220
+ applPastChannelTable.""",
2221
+ }, # table
2222
+ "applPastConEntry" : {
2223
+ "nodetype" : "row",
2224
+ "moduleName" : "APPLICATION-MIB",
2225
+ "oid" : "1.3.6.1.2.1.62.1.3.4.1",
2226
+ "status" : "current",
2227
+ "linkage" : [
2228
+ "applElmtOrSvc",
2229
+ "applElmtOrSvcId",
2230
+ "applPastChannelIndex",
2231
+ ],
2232
+ "description" :
2233
+ """An applPastConEntry provides additional,
2234
+ connection-specific information to complement the
2235
+ corresponding applPastChannelEntry for a channel which
2236
+ was a connection.""",
2237
+ }, # row
2238
+ "applPastConTransport" : {
2239
+ "nodetype" : "column",
2240
+ "moduleName" : "APPLICATION-MIB",
2241
+ "oid" : "1.3.6.1.2.1.62.1.3.4.1.1",
2242
+ "status" : "current",
2243
+ "syntax" : {
2244
+ "type" : { "module" :"SNMPv2-TC", "name" : "TDomain"},
2245
+ },
2246
+ "access" : "readonly",
2247
+ "default" : "0.0",
2248
+ "description" :
2249
+ """The applPastConTransport attribute identifies the
2250
+ transport protocol that was in use for this former
2251
+ connection. If the transport protocol could not be
2252
+ determined, the value { 0 0 } shall be used.""",
2253
+ }, # column
2254
+ "applPastConNearEndAddr" : {
2255
+ "nodetype" : "column",
2256
+ "moduleName" : "APPLICATION-MIB",
2257
+ "oid" : "1.3.6.1.2.1.62.1.3.4.1.2",
2258
+ "status" : "current",
2259
+ "syntax" : {
2260
+ "type" : { "module" :"APPLICATION-MIB", "name" : "ApplTAddress"},
2261
+ },
2262
+ "access" : "readonly",
2263
+ "default" : "",
2264
+ "description" :
2265
+ """The applPastConNearEndAddr attribute reports the
2266
+ transport address and port information for the near
2267
+ end of this former connection.
2268
+
2269
+ If the information could not be determined, the value
2270
+ shall be a zero-length string.""",
2271
+ }, # column
2272
+ "applPastConNearEndpoint" : {
2273
+ "nodetype" : "column",
2274
+ "moduleName" : "APPLICATION-MIB",
2275
+ "oid" : "1.3.6.1.2.1.62.1.3.4.1.3",
2276
+ "status" : "current",
2277
+ "syntax" : {
2278
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2279
+ },
2280
+ "access" : "readonly",
2281
+ "default" : "",
2282
+ "description" :
2283
+ """The applPastConNearEndpoint attribute reports the
2284
+ fully-qualified domain name and port information for the
2285
+ near end of this former connection.
2286
+
2287
+ The format of this attribute for TCP and UDP-based
2288
+ protocols is the fully-qualified domain name immediately
2289
+ followed by a colon which is immediately followed by
2290
+ the decimal representation of the port number.
2291
+
2292
+ If the information could not be determined, the value
2293
+ shall be a zero-length string.""",
2294
+ }, # column
2295
+ "applPastConFarEndAddr" : {
2296
+ "nodetype" : "column",
2297
+ "moduleName" : "APPLICATION-MIB",
2298
+ "oid" : "1.3.6.1.2.1.62.1.3.4.1.4",
2299
+ "status" : "current",
2300
+ "syntax" : {
2301
+ "type" : { "module" :"APPLICATION-MIB", "name" : "ApplTAddress"},
2302
+ },
2303
+ "access" : "readonly",
2304
+ "default" : "",
2305
+ "description" :
2306
+ """The applPastConFarEnd attribute reports the transport
2307
+ address and port information for the far end of this
2308
+ former connection.
2309
+
2310
+ If not known, as in the case of a connectionless
2311
+ transport, the value of this attribute shall be a
2312
+ zero-length string.""",
2313
+ }, # column
2314
+ "applPastConFarEndpoint" : {
2315
+ "nodetype" : "column",
2316
+ "moduleName" : "APPLICATION-MIB",
2317
+ "oid" : "1.3.6.1.2.1.62.1.3.4.1.5",
2318
+ "status" : "current",
2319
+ "syntax" : {
2320
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2321
+ },
2322
+ "access" : "readonly",
2323
+ "default" : "",
2324
+ "description" :
2325
+ """The applPastConFarEndpoint attribute reports the
2326
+ transport address and port information for the far
2327
+ end of this former connection.
2328
+
2329
+ The format of this attribute for TCP and UDP-based
2330
+ protocols is the fully-qualified domain name immediately
2331
+ followed by a colon which is immediately followed by
2332
+ the decimal representation of the port number.
2333
+
2334
+ If not known, as in the case of a connectionless
2335
+ transport, the value of this attribute shall be a
2336
+ zero-length string.""",
2337
+ }, # column
2338
+ "applPastConApplication" : {
2339
+ "nodetype" : "column",
2340
+ "moduleName" : "APPLICATION-MIB",
2341
+ "oid" : "1.3.6.1.2.1.62.1.3.4.1.6",
2342
+ "status" : "current",
2343
+ "syntax" : {
2344
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2345
+ },
2346
+ "access" : "readonly",
2347
+ "default" : "",
2348
+ "description" :
2349
+ """The applPastConApplication attribute identifies the
2350
+ application layer protocol that was in use. Where
2351
+ possible, the values defined in [13] shall be used.
2352
+ If not known, the value of this attribute shall be a
2353
+ zero-length string.""",
2354
+ }, # column
2355
+ "applPastTransStreamTable" : {
2356
+ "nodetype" : "table",
2357
+ "moduleName" : "APPLICATION-MIB",
2358
+ "oid" : "1.3.6.1.2.1.62.1.3.5",
2359
+ "status" : "current",
2360
+ "description" :
2361
+ """The applPastTransStreamTable contains common
2362
+ information for historical transaction statistics.""",
2363
+ }, # table
2364
+ "applPastTransStreamEntry" : {
2365
+ "nodetype" : "row",
2366
+ "moduleName" : "APPLICATION-MIB",
2367
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1",
2368
+ "status" : "current",
2369
+ "linkage" : [
2370
+ "applElmtOrSvc",
2371
+ "applElmtOrSvcId",
2372
+ "applPastChannelIndex",
2373
+ ],
2374
+ "description" :
2375
+ """An applPastTransStreamEntry contains information for
2376
+ a single former transaction stream. A transaction
2377
+ stream could have been a network connection, file, or
2378
+ other source of transactions.""",
2379
+ }, # row
2380
+ "applPastTransStreamDescr" : {
2381
+ "nodetype" : "column",
2382
+ "moduleName" : "APPLICATION-MIB",
2383
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.1",
2384
+ "status" : "current",
2385
+ "syntax" : {
2386
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2387
+ },
2388
+ "access" : "readonly",
2389
+ "default" : "",
2390
+ "description" :
2391
+ """The applPastTransStreamDescr attribute provides a
2392
+ human-readable description of this transaction stream.
2393
+
2394
+ If no descriptive information is available, this
2395
+ attribute's value shall be a zero-length string.""",
2396
+ }, # column
2397
+ "applPastTransStreamUnitOfWork" : {
2398
+ "nodetype" : "column",
2399
+ "moduleName" : "APPLICATION-MIB",
2400
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.2",
2401
+ "status" : "current",
2402
+ "syntax" : {
2403
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2404
+ },
2405
+ "access" : "readonly",
2406
+ "default" : "",
2407
+ "description" :
2408
+ """The applPastTransStreamUnitOfWork attribute provides a
2409
+ human-readable definition of what the unit of work is
2410
+ for this transaction stream.
2411
+
2412
+ If no descriptive information is available, this
2413
+ attribute's value shall be a zero-length string.""",
2414
+ }, # column
2415
+ "applPastTransStreamInvokes" : {
2416
+ "nodetype" : "column",
2417
+ "moduleName" : "APPLICATION-MIB",
2418
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.3",
2419
+ "status" : "current",
2420
+ "syntax" : {
2421
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2422
+ },
2423
+ "access" : "readonly",
2424
+ "units" : "transactions",
2425
+ "description" :
2426
+ """Cumulative count of requests / invocations issued
2427
+ for this transaction stream when it was active.""",
2428
+ }, # column
2429
+ "applPastTransStreamInvokesLow" : {
2430
+ "nodetype" : "column",
2431
+ "moduleName" : "APPLICATION-MIB",
2432
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.4",
2433
+ "status" : "current",
2434
+ "syntax" : {
2435
+ "type" : { "module" :"", "name" : "Unsigned32"},
2436
+ },
2437
+ "access" : "readonly",
2438
+ "units" : "transactions",
2439
+ "description" :
2440
+ """This object corresponds to the low thirty-two
2441
+ bits of applPastTransStreamInvokes.""",
2442
+ }, # column
2443
+ "applPastTransStreamInvCumTimes" : {
2444
+ "nodetype" : "column",
2445
+ "moduleName" : "APPLICATION-MIB",
2446
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.5",
2447
+ "status" : "current",
2448
+ "syntax" : {
2449
+ "type" : { "module" :"", "name" : "Unsigned32"},
2450
+ },
2451
+ "access" : "readonly",
2452
+ "units" : "milliseconds",
2453
+ "description" :
2454
+ """The applPastTransStreamInvCumTimes attribute reports the
2455
+ cumulative sum of the lengths of the intervals times
2456
+ measured between the transmission of requests and the
2457
+ receipt of (the first of) the corresponding response(s).""",
2458
+ }, # column
2459
+ "applPastTransStreamInvRspTimes" : {
2460
+ "nodetype" : "column",
2461
+ "moduleName" : "APPLICATION-MIB",
2462
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.6",
2463
+ "status" : "current",
2464
+ "syntax" : {
2465
+ "type" : { "module" :"", "name" : "Unsigned32"},
2466
+ },
2467
+ "access" : "readonly",
2468
+ "units" : "milliseconds",
2469
+ "description" :
2470
+ """The applPastTransStreamInvRspTimes attribute reports the
2471
+ cumulative sum of the lengths of the intervals measured
2472
+ between the receipt of the first and last of multiple
2473
+ responses to a request.
2474
+
2475
+ For transaction streams which do not permit multiple
2476
+ responses to a single request, this attribute will be
2477
+ zero.""",
2478
+ }, # column
2479
+ "applPastTransStreamPerforms" : {
2480
+ "nodetype" : "column",
2481
+ "moduleName" : "APPLICATION-MIB",
2482
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.7",
2483
+ "status" : "current",
2484
+ "syntax" : {
2485
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2486
+ },
2487
+ "access" : "readonly",
2488
+ "units" : "transactions",
2489
+ "description" :
2490
+ """Total number of transactions performed.""",
2491
+ }, # column
2492
+ "applPastTransStreamPerformsLow" : {
2493
+ "nodetype" : "column",
2494
+ "moduleName" : "APPLICATION-MIB",
2495
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.8",
2496
+ "status" : "current",
2497
+ "syntax" : {
2498
+ "type" : { "module" :"", "name" : "Unsigned32"},
2499
+ },
2500
+ "access" : "readonly",
2501
+ "units" : "transactions",
2502
+ "description" :
2503
+ """This objecy reports the low thirty-two bits of
2504
+ applPastTransStreamPerforms.""",
2505
+ }, # column
2506
+ "applPastTransStreamPrfCumTimes" : {
2507
+ "nodetype" : "column",
2508
+ "moduleName" : "APPLICATION-MIB",
2509
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.9",
2510
+ "status" : "current",
2511
+ "syntax" : {
2512
+ "type" : { "module" :"", "name" : "Unsigned32"},
2513
+ },
2514
+ "access" : "readonly",
2515
+ "units" : "milliseconds",
2516
+ "description" :
2517
+ """The applPastTransStreamPrfCumTimes attribute reports the
2518
+ cumulative sum of the lengths of the intervals measured
2519
+ between receipt of requests and the transmission of the
2520
+ corresponding responses.""",
2521
+ }, # column
2522
+ "applPastTransStreamPrfRspTimes" : {
2523
+ "nodetype" : "column",
2524
+ "moduleName" : "APPLICATION-MIB",
2525
+ "oid" : "1.3.6.1.2.1.62.1.3.5.1.10",
2526
+ "status" : "current",
2527
+ "syntax" : {
2528
+ "type" : { "module" :"", "name" : "Unsigned32"},
2529
+ },
2530
+ "access" : "readonly",
2531
+ "units" : "milliseconds",
2532
+ "description" :
2533
+ """For each transaction performed, the elapsed time between
2534
+ when the first response is enqueued and when the last
2535
+ response is enqueued is added to this cumulative sum.
2536
+
2537
+ For single-response protocols, the value of
2538
+ applPastTransStreamPrfRspTimes will be zero.""",
2539
+ }, # column
2540
+ "applPastTransFlowTable" : {
2541
+ "nodetype" : "table",
2542
+ "moduleName" : "APPLICATION-MIB",
2543
+ "oid" : "1.3.6.1.2.1.62.1.3.6",
2544
+ "status" : "current",
2545
+ "description" :
2546
+ """The applPastTransFlowTable contains entries, organized by
2547
+ application instance or running application element,
2548
+ direction of flow, and type (request/response) for each
2549
+ former transaction stream.
2550
+
2551
+ The simple model of a transaction used here looks like
2552
+ this:
2553
+
2554
+ invoker | Request | performer
2555
+ | - - - - - - > |
2556
+ | |
2557
+ | Response |
2558
+ | < - - - - - - |
2559
+ | |
2560
+
2561
+ Since in some protocols it is possible for an entity
2562
+ to take on both the invoker and performer roles,
2563
+ information here is accumulated for transmitted and
2564
+ received requests, as well as for transmitted and
2565
+ received responses. Counts are maintained for both
2566
+ transactions and bytes transferred.""",
2567
+ }, # table
2568
+ "applPastTransFlowEntry" : {
2569
+ "nodetype" : "row",
2570
+ "moduleName" : "APPLICATION-MIB",
2571
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1",
2572
+ "status" : "current",
2573
+ "linkage" : [
2574
+ "applElmtOrSvc",
2575
+ "applElmtOrSvcId",
2576
+ "applPastChannelIndex",
2577
+ "applPastTransFlowDirection",
2578
+ "applPastTransFlowReqRsp",
2579
+ ],
2580
+ "description" :
2581
+ """An applPastTransFlowEntry records transaction throughput
2582
+ information for requests or response in a particular
2583
+ direction (transmit / receive) for a transaction stream.
2584
+
2585
+ Entries in this table correspond to those in the
2586
+ applPastTransStreamTable with identical values
2587
+ for the applElmtOrSvc, applElmtOrSvcId, and the
2588
+ applPastChannelIndex.""",
2589
+ }, # row
2590
+ "applPastTransFlowDirection" : {
2591
+ "nodetype" : "column",
2592
+ "moduleName" : "APPLICATION-MIB",
2593
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1.1",
2594
+ "status" : "current",
2595
+ "syntax" : {
2596
+ "type" : {
2597
+ "basetype" : "Enumeration",
2598
+ "transmit" : {
2599
+ "nodetype" : "namednumber",
2600
+ "number" : "1"
2601
+ },
2602
+ "receive" : {
2603
+ "nodetype" : "namednumber",
2604
+ "number" : "2"
2605
+ },
2606
+ },
2607
+ },
2608
+ "access" : "noaccess",
2609
+ "description" :
2610
+ """The applPastTransFlowDirection index serves
2611
+ to identify an entry as containing information
2612
+ pertaining to the transmit (1) or receive (2) flow
2613
+ of a past transaction stream. This index corresponds
2614
+ to applTransactFlowDirection.""",
2615
+ }, # column
2616
+ "applPastTransFlowReqRsp" : {
2617
+ "nodetype" : "column",
2618
+ "moduleName" : "APPLICATION-MIB",
2619
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1.2",
2620
+ "status" : "current",
2621
+ "syntax" : {
2622
+ "type" : {
2623
+ "basetype" : "Enumeration",
2624
+ "request" : {
2625
+ "nodetype" : "namednumber",
2626
+ "number" : "1"
2627
+ },
2628
+ "response" : {
2629
+ "nodetype" : "namednumber",
2630
+ "number" : "2"
2631
+ },
2632
+ },
2633
+ },
2634
+ "access" : "noaccess",
2635
+ "description" :
2636
+ """The value of the applPastTransFlowReqRsp index indicates
2637
+ whether this entry contains information on requests
2638
+ (1), or responses (2). This index corresponds to
2639
+ applTransactFlowReqRsp.""",
2640
+ }, # column
2641
+ "applPastTransFlowTrans" : {
2642
+ "nodetype" : "column",
2643
+ "moduleName" : "APPLICATION-MIB",
2644
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1.3",
2645
+ "status" : "current",
2646
+ "syntax" : {
2647
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2648
+ },
2649
+ "access" : "readonly",
2650
+ "units" : "transactions",
2651
+ "description" :
2652
+ """The applPastTransFlowTrans attribute reports the number
2653
+ of request/response (as indicated by the
2654
+ applPastTransFlowReqRsp index) transactions
2655
+ received/generated (as indicated by the
2656
+ applPastTransFlowDirection index) handled on this
2657
+ transaction stream.""",
2658
+ }, # column
2659
+ "applPastTransFlowTransLow" : {
2660
+ "nodetype" : "column",
2661
+ "moduleName" : "APPLICATION-MIB",
2662
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1.4",
2663
+ "status" : "current",
2664
+ "syntax" : {
2665
+ "type" : { "module" :"", "name" : "Unsigned32"},
2666
+ },
2667
+ "access" : "readonly",
2668
+ "units" : "transactions",
2669
+ "description" :
2670
+ """This attribute corresponds to the low thirty-two
2671
+ bits of applPastTransFlowTrans.""",
2672
+ }, # column
2673
+ "applPastTransFlowBytes" : {
2674
+ "nodetype" : "column",
2675
+ "moduleName" : "APPLICATION-MIB",
2676
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1.5",
2677
+ "status" : "current",
2678
+ "syntax" : {
2679
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2680
+ },
2681
+ "access" : "readonly",
2682
+ "units" : "bytes",
2683
+ "description" :
2684
+ """The applPastTransFlowBytes attribute reports the number
2685
+ of request/response (as indicated by the
2686
+ applPastTransFlowReqRsp index) bytes received/generated
2687
+ (as indicated by the applPastTransFlowDirection index)
2688
+ handled on this transaction stream.
2689
+
2690
+ All application layer bytes are included in this count,
2691
+ including any application layer wrappers, headers, or
2692
+ other overhead.""",
2693
+ }, # column
2694
+ "applPastTransFlowBytesLow" : {
2695
+ "nodetype" : "column",
2696
+ "moduleName" : "APPLICATION-MIB",
2697
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1.6",
2698
+ "status" : "current",
2699
+ "syntax" : {
2700
+ "type" : { "module" :"", "name" : "Unsigned32"},
2701
+ },
2702
+ "access" : "readonly",
2703
+ "units" : "bytes",
2704
+ "description" :
2705
+ """This attribute corresponds to the low thirty-two
2706
+ bits of applPastTransFlowBytes.""",
2707
+ }, # column
2708
+ "applPastTransFlowTime" : {
2709
+ "nodetype" : "column",
2710
+ "moduleName" : "APPLICATION-MIB",
2711
+ "oid" : "1.3.6.1.2.1.62.1.3.6.1.7",
2712
+ "status" : "current",
2713
+ "syntax" : {
2714
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2715
+ },
2716
+ "access" : "readonly",
2717
+ "default" : "0x0000000000000000",
2718
+ "description" :
2719
+ """The applPastTransFlowTime attribute records the time of
2720
+ the processing (receipt or transmission as
2721
+ indicated by the applPastTransFlowDirection index)
2722
+ of the last request/response (as indicated by the
2723
+ applPastTransFlowReqRsp index) on this transaction
2724
+ stream.
2725
+
2726
+ If no requests/responses been received/transmitted by
2727
+ this entity over this transaction stream, the value
2728
+ of this attribute shall be '0000000000000000'H """,
2729
+ }, # column
2730
+ "applPastTransKindTable" : {
2731
+ "nodetype" : "table",
2732
+ "moduleName" : "APPLICATION-MIB",
2733
+ "oid" : "1.3.6.1.2.1.62.1.3.7",
2734
+ "status" : "current",
2735
+ "description" :
2736
+ """The applPastTransKindTable provides transaction
2737
+ statistics broken down by kinds of transaction.
2738
+ The definition of the kinds of transactions is
2739
+ specific to the application protocol in use, and may be
2740
+ documented in the form of an applicability statement. """,
2741
+ }, # table
2742
+ "applPastTransKindEntry" : {
2743
+ "nodetype" : "row",
2744
+ "moduleName" : "APPLICATION-MIB",
2745
+ "oid" : "1.3.6.1.2.1.62.1.3.7.1",
2746
+ "status" : "current",
2747
+ "linkage" : [
2748
+ "applElmtOrSvc",
2749
+ "applElmtOrSvcId",
2750
+ "applPastChannelIndex",
2751
+ "applPastTransFlowDirection",
2752
+ "applPastTransFlowReqRsp",
2753
+ "applPastTransKind",
2754
+ ],
2755
+ "description" :
2756
+ """An applPastTransKindEntry reports historical data for a
2757
+ specific service instance or running application
2758
+ element's use of a specific transaction stream in
2759
+ a particular direction in requests or responses
2760
+ (as indicated by the applPastTransFlowReqRsp index)
2761
+ broken down by transaction kind, as indicated by the
2762
+ applPastTransKind index.""",
2763
+ }, # row
2764
+ "applPastTransKind" : {
2765
+ "nodetype" : "column",
2766
+ "moduleName" : "APPLICATION-MIB",
2767
+ "oid" : "1.3.6.1.2.1.62.1.3.7.1.1",
2768
+ "status" : "current",
2769
+ "syntax" : {
2770
+ "type" : {
2771
+ "basetype" : "OctetString",
2772
+ "parent module" : {
2773
+ "name" : "SNMP-FRAMEWORK-MIB",
2774
+ "type" : "SnmpAdminString",
2775
+ },
2776
+ "ranges" : [
2777
+ {
2778
+ "min" : "1",
2779
+ "max" : "32"
2780
+ },
2781
+ ],
2782
+ "range" : {
2783
+ "min" : "1",
2784
+ "max" : "32"
2785
+ },
2786
+ },
2787
+ },
2788
+ "access" : "noaccess",
2789
+ "description" :
2790
+ """The applPastTransKind index is the human-readable
2791
+ identifier for a particular transaction kind within
2792
+ the context of an application protocol. The values
2793
+ to be used for a particular protocol may be identified
2794
+ in an applicability statement. This index corresponds
2795
+ to applTransactKind.""",
2796
+ }, # column
2797
+ "applPastTransKindTrans" : {
2798
+ "nodetype" : "column",
2799
+ "moduleName" : "APPLICATION-MIB",
2800
+ "oid" : "1.3.6.1.2.1.62.1.3.7.1.2",
2801
+ "status" : "current",
2802
+ "syntax" : {
2803
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2804
+ },
2805
+ "access" : "readonly",
2806
+ "units" : "transactions",
2807
+ "description" :
2808
+ """For this transaction stream, this attribute records
2809
+ the total number of transactions of the type
2810
+ identified by the indexes. The type is characterized
2811
+ according to the receive/transmit direction
2812
+ (applPastTransFlowDirecton), whether it was a request
2813
+ or a response (applPastTransFlowReqRsp), and the
2814
+ protocol-specific transaction kind (applPastTransKind).
2815
+ stream for this transaction kind.""",
2816
+ }, # column
2817
+ "applPastTransKindTransLow" : {
2818
+ "nodetype" : "column",
2819
+ "moduleName" : "APPLICATION-MIB",
2820
+ "oid" : "1.3.6.1.2.1.62.1.3.7.1.3",
2821
+ "status" : "current",
2822
+ "syntax" : {
2823
+ "type" : { "module" :"", "name" : "Unsigned32"},
2824
+ },
2825
+ "access" : "readonly",
2826
+ "units" : "transactions",
2827
+ "description" :
2828
+ """The applPastTransKindTransLow attribute reports
2829
+ the low thirty-two bits of applPastTransKindTrans.""",
2830
+ }, # column
2831
+ "applPastTransKindBytes" : {
2832
+ "nodetype" : "column",
2833
+ "moduleName" : "APPLICATION-MIB",
2834
+ "oid" : "1.3.6.1.2.1.62.1.3.7.1.4",
2835
+ "status" : "current",
2836
+ "syntax" : {
2837
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
2838
+ },
2839
+ "access" : "readonly",
2840
+ "units" : "bytes",
2841
+ "description" :
2842
+ """For this transaction stream and transaction kind, the
2843
+ applPastTransKindBytes attribute reports the number
2844
+ of bytes received or generated (as indicated by
2845
+ the applPastTransFlowDirection index) in requests or
2846
+ responses (as indicated by the applPastTransFlowReqRsp
2847
+ index).
2848
+
2849
+ All application layer bytes are included in this count,
2850
+ including any application layer wrappers, headers, or
2851
+ other overhead.""",
2852
+ }, # column
2853
+ "applPastTransKindBytesLow" : {
2854
+ "nodetype" : "column",
2855
+ "moduleName" : "APPLICATION-MIB",
2856
+ "oid" : "1.3.6.1.2.1.62.1.3.7.1.5",
2857
+ "status" : "current",
2858
+ "syntax" : {
2859
+ "type" : { "module" :"", "name" : "Unsigned32"},
2860
+ },
2861
+ "access" : "readonly",
2862
+ "units" : "bytes",
2863
+ "description" :
2864
+ """The applPastTransKindBytesLow attribute corresponds
2865
+ to the low thirty-two bits of applPastTransKindBytes.""",
2866
+ }, # column
2867
+ "applPastTransKindTime" : {
2868
+ "nodetype" : "column",
2869
+ "moduleName" : "APPLICATION-MIB",
2870
+ "oid" : "1.3.6.1.2.1.62.1.3.7.1.6",
2871
+ "status" : "current",
2872
+ "syntax" : {
2873
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2874
+ },
2875
+ "access" : "readonly",
2876
+ "default" : "0x0000000000000000",
2877
+ "description" :
2878
+ """The applPastTransKindTime attribute records the time of
2879
+ the processing (receipt or transmission as
2880
+ indicated by the applPastTransFlowDirection index)
2881
+ of the last request/response (as indicated by the
2882
+ applPastTransFlowReqRsp index) of this kind of
2883
+ transaction on this transaction stream.
2884
+
2885
+ If no requests/responses of this kind were
2886
+ received/transmitted over this transaction stream, the
2887
+ value of this attribute shall be '0000000000000000'H """,
2888
+ }, # column
2889
+ "applElmtRunControlGroup" : {
2890
+ "nodetype" : "node",
2891
+ "moduleName" : "APPLICATION-MIB",
2892
+ "oid" : "1.3.6.1.2.1.62.1.4",
2893
+ }, # node
2894
+ "applElmtRunStatusTable" : {
2895
+ "nodetype" : "table",
2896
+ "moduleName" : "APPLICATION-MIB",
2897
+ "oid" : "1.3.6.1.2.1.62.1.4.1",
2898
+ "status" : "current",
2899
+ "description" :
2900
+ """This table provides information on running application
2901
+ elements, complementing information available in the
2902
+ correspondingly indexed sysApplElmtRunTable [31].""",
2903
+ }, # table
2904
+ "applElmtRunStatusEntry" : {
2905
+ "nodetype" : "row",
2906
+ "moduleName" : "APPLICATION-MIB",
2907
+ "oid" : "1.3.6.1.2.1.62.1.4.1.1",
2908
+ "status" : "current",
2909
+ "linkage" : [
2910
+ "sysApplElmtRunIndex",
2911
+ ],
2912
+ "description" :
2913
+ """An applElmtRunStatusEntry contains information to support
2914
+ the control and monitoring of a single running application
2915
+ element.""",
2916
+ }, # row
2917
+ "applElmtRunStatusSuspended" : {
2918
+ "nodetype" : "column",
2919
+ "moduleName" : "APPLICATION-MIB",
2920
+ "oid" : "1.3.6.1.2.1.62.1.4.1.1.1",
2921
+ "status" : "current",
2922
+ "syntax" : {
2923
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2924
+ },
2925
+ "access" : "readonly",
2926
+ "description" :
2927
+ """The applElmtRunStatusSuspended attribute reports
2928
+ whether processing by this running application element
2929
+ has been suspended, whether by management request or by
2930
+ other means.""",
2931
+ }, # column
2932
+ "applElmtRunStatusHeapUsage" : {
2933
+ "nodetype" : "column",
2934
+ "moduleName" : "APPLICATION-MIB",
2935
+ "oid" : "1.3.6.1.2.1.62.1.4.1.1.2",
2936
+ "status" : "current",
2937
+ "syntax" : {
2938
+ "type" : { "module" :"", "name" : "Unsigned32"},
2939
+ },
2940
+ "access" : "readonly",
2941
+ "units" : "bytes",
2942
+ "description" :
2943
+ """The applElmtRunStatusHeapUsage reports the current
2944
+ approximate heap usage by this running application
2945
+ element.""",
2946
+ }, # column
2947
+ "applElmtRunStatusOpenConnections" : {
2948
+ "nodetype" : "column",
2949
+ "moduleName" : "APPLICATION-MIB",
2950
+ "oid" : "1.3.6.1.2.1.62.1.4.1.1.3",
2951
+ "status" : "current",
2952
+ "syntax" : {
2953
+ "type" : { "module" :"", "name" : "Unsigned32"},
2954
+ },
2955
+ "access" : "readonly",
2956
+ "units" : "connections",
2957
+ "description" :
2958
+ """The applElmtRunStatusOpenConnections attribute reports
2959
+ the current number of open connections in use by this
2960
+ running application element.""",
2961
+ }, # column
2962
+ "applElmtRunStatusOpenFiles" : {
2963
+ "nodetype" : "column",
2964
+ "moduleName" : "APPLICATION-MIB",
2965
+ "oid" : "1.3.6.1.2.1.62.1.4.1.1.4",
2966
+ "status" : "current",
2967
+ "syntax" : {
2968
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2969
+ },
2970
+ "access" : "readonly",
2971
+ "units" : "files",
2972
+ "description" :
2973
+ """The applElmtRunStatusOpenFiles attribute reports the
2974
+ current number of open files in use by this running
2975
+ application element.""",
2976
+ }, # column
2977
+ "applElmtRunStatusLastErrorMsg" : {
2978
+ "nodetype" : "column",
2979
+ "moduleName" : "APPLICATION-MIB",
2980
+ "oid" : "1.3.6.1.2.1.62.1.4.1.1.5",
2981
+ "status" : "current",
2982
+ "syntax" : {
2983
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2984
+ },
2985
+ "access" : "readonly",
2986
+ "default" : "",
2987
+ "description" :
2988
+ """The applElmtRunStatusLastErrorMessage attribute reports
2989
+ the most recent error message (typically written to
2990
+ stderr or a system error logging facility) from this
2991
+ running application element. If no such message has yet
2992
+ been generated, the value of this attribute shall be a
2993
+ zero-length string.""",
2994
+ }, # column
2995
+ "applElmtRunStatusLastErrorTime" : {
2996
+ "nodetype" : "column",
2997
+ "moduleName" : "APPLICATION-MIB",
2998
+ "oid" : "1.3.6.1.2.1.62.1.4.1.1.6",
2999
+ "status" : "current",
3000
+ "syntax" : {
3001
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
3002
+ },
3003
+ "access" : "readonly",
3004
+ "default" : "0x0000000000000000",
3005
+ "description" :
3006
+ """The applElmtRunStatusLastErrorTime attribute reports the
3007
+ time of the most recent error message in
3008
+ applElmtRunStatusLastErrorMsg.
3009
+
3010
+ If no such message has yet been generated, the value
3011
+ of this attribute shall be '0000000000000000'H """,
3012
+ }, # column
3013
+ "applElmtRunControlTable" : {
3014
+ "nodetype" : "table",
3015
+ "moduleName" : "APPLICATION-MIB",
3016
+ "oid" : "1.3.6.1.2.1.62.1.4.2",
3017
+ "status" : "current",
3018
+ "description" :
3019
+ """This table provides the ability to control application
3020
+ elements, complementing information available in the
3021
+ correspondingly indexed sysApplElmtRunTable [31].""",
3022
+ }, # table
3023
+ "applElmtRunControlEntry" : {
3024
+ "nodetype" : "row",
3025
+ "moduleName" : "APPLICATION-MIB",
3026
+ "oid" : "1.3.6.1.2.1.62.1.4.2.1",
3027
+ "status" : "current",
3028
+ "linkage" : [
3029
+ "sysApplElmtRunIndex",
3030
+ ],
3031
+ "description" :
3032
+ """An applElmtRunControlEntry contains information to
3033
+ support the control of a single running application
3034
+ element.""",
3035
+ }, # row
3036
+ "applElmtRunControlSuspend" : {
3037
+ "nodetype" : "column",
3038
+ "moduleName" : "APPLICATION-MIB",
3039
+ "oid" : "1.3.6.1.2.1.62.1.4.2.1.1",
3040
+ "status" : "current",
3041
+ "syntax" : {
3042
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3043
+ },
3044
+ "access" : "readwrite",
3045
+ "default" : "false",
3046
+ "description" :
3047
+ """Setting this variable to 'true' requests the suspension
3048
+ of processing by this running application element.
3049
+ Setting this variable to 'false' requests that processing
3050
+ be resumed. The effect, if any, will be reported by the
3051
+ applElmtRunStatusSuspended attribute.""",
3052
+ }, # column
3053
+ "applElmtRunControlReconfigure" : {
3054
+ "nodetype" : "column",
3055
+ "moduleName" : "APPLICATION-MIB",
3056
+ "oid" : "1.3.6.1.2.1.62.1.4.2.1.2",
3057
+ "status" : "current",
3058
+ "syntax" : {
3059
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
3060
+ },
3061
+ "access" : "readwrite",
3062
+ "description" :
3063
+ """Changing the value of this variable requests that the
3064
+ running application element re-load its configuration
3065
+ (like SIGHUP for many UNIX-based daemons).
3066
+
3067
+ Note that completion of a SET on this object only implies
3068
+ that configuration reload was initiated, not necessarily
3069
+ that the reload has been completed.""",
3070
+ }, # column
3071
+ "applElmtRunControlTerminate" : {
3072
+ "nodetype" : "column",
3073
+ "moduleName" : "APPLICATION-MIB",
3074
+ "oid" : "1.3.6.1.2.1.62.1.4.2.1.3",
3075
+ "status" : "current",
3076
+ "syntax" : {
3077
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3078
+ },
3079
+ "access" : "readwrite",
3080
+ "default" : "false",
3081
+ "description" :
3082
+ """Setting the value of applElmtRunControlTerminate to
3083
+ 'true' requests that the running application element
3084
+ terminate processing and exit in an orderly manner.
3085
+ This is a 'polite' shutdown request.
3086
+
3087
+ When read, this object's value will be 'false' except
3088
+ when orderly termination is in progress.
3089
+
3090
+ Note that completion of a SET on this object only implies
3091
+ that termination was initiated, not necessarily that the
3092
+ termination has been completed.""",
3093
+ }, # column
3094
+ "applicationMibConformance" : {
3095
+ "nodetype" : "node",
3096
+ "moduleName" : "APPLICATION-MIB",
3097
+ "oid" : "1.3.6.1.2.1.62.2",
3098
+ }, # node
3099
+ "applicationMibGroups" : {
3100
+ "nodetype" : "node",
3101
+ "moduleName" : "APPLICATION-MIB",
3102
+ "oid" : "1.3.6.1.2.1.62.2.1",
3103
+ }, # node
3104
+ }, # nodes
3105
+
3106
+ "groups" : {
3107
+ "applicationMonitorGroup" : {
3108
+ "nodetype" : "group",
3109
+ "moduleName" : "APPLICATION-MIB",
3110
+ "oid" : "1.3.6.1.2.1.62.2.1.1",
3111
+ "status" : "current",
3112
+ "members" : {
3113
+ "applSrvInstQual" : {
3114
+ "nodetype" : "member",
3115
+ "module" : "APPLICATION-MIB"
3116
+ },
3117
+ "applSrvName" : {
3118
+ "nodetype" : "member",
3119
+ "module" : "APPLICATION-MIB"
3120
+ },
3121
+ "applSrvIndex" : {
3122
+ "nodetype" : "member",
3123
+ "module" : "APPLICATION-MIB"
3124
+ },
3125
+ "applSrvInstance" : {
3126
+ "nodetype" : "member",
3127
+ "module" : "APPLICATION-MIB"
3128
+ },
3129
+ "applOpenChannelOpenTime" : {
3130
+ "nodetype" : "member",
3131
+ "module" : "APPLICATION-MIB"
3132
+ },
3133
+ "applOpenChannelReadRequestsLow" : {
3134
+ "nodetype" : "member",
3135
+ "module" : "APPLICATION-MIB"
3136
+ },
3137
+ "applOpenChannelReadFailures" : {
3138
+ "nodetype" : "member",
3139
+ "module" : "APPLICATION-MIB"
3140
+ },
3141
+ "applOpenChannelBytesReadLow" : {
3142
+ "nodetype" : "member",
3143
+ "module" : "APPLICATION-MIB"
3144
+ },
3145
+ "applOpenChannelLastReadTime" : {
3146
+ "nodetype" : "member",
3147
+ "module" : "APPLICATION-MIB"
3148
+ },
3149
+ "applOpenChannelWriteRequestsLow" : {
3150
+ "nodetype" : "member",
3151
+ "module" : "APPLICATION-MIB"
3152
+ },
3153
+ "applOpenChannelWriteFailures" : {
3154
+ "nodetype" : "member",
3155
+ "module" : "APPLICATION-MIB"
3156
+ },
3157
+ "applOpenChannelBytesWrittenLow" : {
3158
+ "nodetype" : "member",
3159
+ "module" : "APPLICATION-MIB"
3160
+ },
3161
+ "applOpenChannelLastWriteTime" : {
3162
+ "nodetype" : "member",
3163
+ "module" : "APPLICATION-MIB"
3164
+ },
3165
+ "applOpenFileName" : {
3166
+ "nodetype" : "member",
3167
+ "module" : "APPLICATION-MIB"
3168
+ },
3169
+ "applOpenFileSizeHigh" : {
3170
+ "nodetype" : "member",
3171
+ "module" : "APPLICATION-MIB"
3172
+ },
3173
+ "applOpenFileSizeLow" : {
3174
+ "nodetype" : "member",
3175
+ "module" : "APPLICATION-MIB"
3176
+ },
3177
+ "applOpenFileMode" : {
3178
+ "nodetype" : "member",
3179
+ "module" : "APPLICATION-MIB"
3180
+ },
3181
+ "applOpenConnectionTransport" : {
3182
+ "nodetype" : "member",
3183
+ "module" : "APPLICATION-MIB"
3184
+ },
3185
+ "applOpenConnectionNearEndAddr" : {
3186
+ "nodetype" : "member",
3187
+ "module" : "APPLICATION-MIB"
3188
+ },
3189
+ "applOpenConnectionNearEndpoint" : {
3190
+ "nodetype" : "member",
3191
+ "module" : "APPLICATION-MIB"
3192
+ },
3193
+ "applOpenConnectionFarEndAddr" : {
3194
+ "nodetype" : "member",
3195
+ "module" : "APPLICATION-MIB"
3196
+ },
3197
+ "applOpenConnectionFarEndpoint" : {
3198
+ "nodetype" : "member",
3199
+ "module" : "APPLICATION-MIB"
3200
+ },
3201
+ "applOpenConnectionApplication" : {
3202
+ "nodetype" : "member",
3203
+ "module" : "APPLICATION-MIB"
3204
+ },
3205
+ }, # members
3206
+ "description" :
3207
+ """This group represents the basic capabilities of this MIB.""",
3208
+ }, # group
3209
+ "applicationFastMonitorGroup" : {
3210
+ "nodetype" : "group",
3211
+ "moduleName" : "APPLICATION-MIB",
3212
+ "oid" : "1.3.6.1.2.1.62.2.1.2",
3213
+ "status" : "current",
3214
+ "members" : {
3215
+ "applOpenChannelReadRequests" : {
3216
+ "nodetype" : "member",
3217
+ "module" : "APPLICATION-MIB"
3218
+ },
3219
+ "applOpenChannelBytesRead" : {
3220
+ "nodetype" : "member",
3221
+ "module" : "APPLICATION-MIB"
3222
+ },
3223
+ "applOpenChannelWriteRequests" : {
3224
+ "nodetype" : "member",
3225
+ "module" : "APPLICATION-MIB"
3226
+ },
3227
+ "applOpenChannelBytesWritten" : {
3228
+ "nodetype" : "member",
3229
+ "module" : "APPLICATION-MIB"
3230
+ },
3231
+ }, # members
3232
+ "description" :
3233
+ """This group comprises 64-bit counters mandatory in
3234
+ high-throughput environments, where 32-bit counters
3235
+ could wrap in less than an hour.""",
3236
+ }, # group
3237
+ "applicationTransactGroup" : {
3238
+ "nodetype" : "group",
3239
+ "moduleName" : "APPLICATION-MIB",
3240
+ "oid" : "1.3.6.1.2.1.62.2.1.3",
3241
+ "status" : "current",
3242
+ "members" : {
3243
+ "applTransactStreamDescr" : {
3244
+ "nodetype" : "member",
3245
+ "module" : "APPLICATION-MIB"
3246
+ },
3247
+ "applTransactStreamUnitOfWork" : {
3248
+ "nodetype" : "member",
3249
+ "module" : "APPLICATION-MIB"
3250
+ },
3251
+ "applTransactStreamInvokesLow" : {
3252
+ "nodetype" : "member",
3253
+ "module" : "APPLICATION-MIB"
3254
+ },
3255
+ "applTransactStreamInvCumTimes" : {
3256
+ "nodetype" : "member",
3257
+ "module" : "APPLICATION-MIB"
3258
+ },
3259
+ "applTransactStreamInvRspTimes" : {
3260
+ "nodetype" : "member",
3261
+ "module" : "APPLICATION-MIB"
3262
+ },
3263
+ "applTransactStreamPerformsLow" : {
3264
+ "nodetype" : "member",
3265
+ "module" : "APPLICATION-MIB"
3266
+ },
3267
+ "applTransactStreamPrfCumTimes" : {
3268
+ "nodetype" : "member",
3269
+ "module" : "APPLICATION-MIB"
3270
+ },
3271
+ "applTransactStreamPrfRspTimes" : {
3272
+ "nodetype" : "member",
3273
+ "module" : "APPLICATION-MIB"
3274
+ },
3275
+ "applTransactFlowTransLow" : {
3276
+ "nodetype" : "member",
3277
+ "module" : "APPLICATION-MIB"
3278
+ },
3279
+ "applTransactFlowBytesLow" : {
3280
+ "nodetype" : "member",
3281
+ "module" : "APPLICATION-MIB"
3282
+ },
3283
+ "applTransactFlowTime" : {
3284
+ "nodetype" : "member",
3285
+ "module" : "APPLICATION-MIB"
3286
+ },
3287
+ "applTransactKindTransLow" : {
3288
+ "nodetype" : "member",
3289
+ "module" : "APPLICATION-MIB"
3290
+ },
3291
+ "applTransactKindBytesLow" : {
3292
+ "nodetype" : "member",
3293
+ "module" : "APPLICATION-MIB"
3294
+ },
3295
+ "applTransactKindTime" : {
3296
+ "nodetype" : "member",
3297
+ "module" : "APPLICATION-MIB"
3298
+ },
3299
+ }, # members
3300
+ "description" :
3301
+ """This group comprises objects appropriate from monitoring
3302
+ transaction-structured flows.""",
3303
+ }, # group
3304
+ "applicationFastTransactGroup" : {
3305
+ "nodetype" : "group",
3306
+ "moduleName" : "APPLICATION-MIB",
3307
+ "oid" : "1.3.6.1.2.1.62.2.1.4",
3308
+ "status" : "current",
3309
+ "members" : {
3310
+ "applTransactStreamInvokes" : {
3311
+ "nodetype" : "member",
3312
+ "module" : "APPLICATION-MIB"
3313
+ },
3314
+ "applTransactStreamPerforms" : {
3315
+ "nodetype" : "member",
3316
+ "module" : "APPLICATION-MIB"
3317
+ },
3318
+ "applTransactFlowTrans" : {
3319
+ "nodetype" : "member",
3320
+ "module" : "APPLICATION-MIB"
3321
+ },
3322
+ "applTransactFlowBytes" : {
3323
+ "nodetype" : "member",
3324
+ "module" : "APPLICATION-MIB"
3325
+ },
3326
+ "applTransactKindTrans" : {
3327
+ "nodetype" : "member",
3328
+ "module" : "APPLICATION-MIB"
3329
+ },
3330
+ "applTransactKindBytes" : {
3331
+ "nodetype" : "member",
3332
+ "module" : "APPLICATION-MIB"
3333
+ },
3334
+ }, # members
3335
+ "description" :
3336
+ """This group comprises 64-bit transaction counters required in
3337
+ high-throughput environments, where 32-bit counters could
3338
+ wrap in less than an hour.""",
3339
+ }, # group
3340
+ "applicationHistoryGroup" : {
3341
+ "nodetype" : "group",
3342
+ "moduleName" : "APPLICATION-MIB",
3343
+ "oid" : "1.3.6.1.2.1.62.2.1.5",
3344
+ "status" : "current",
3345
+ "members" : {
3346
+ "applPastChannelControlCollect" : {
3347
+ "nodetype" : "member",
3348
+ "module" : "APPLICATION-MIB"
3349
+ },
3350
+ "applPastChannelControlMaxRows" : {
3351
+ "nodetype" : "member",
3352
+ "module" : "APPLICATION-MIB"
3353
+ },
3354
+ "applPastChannelControlTimeLimit" : {
3355
+ "nodetype" : "member",
3356
+ "module" : "APPLICATION-MIB"
3357
+ },
3358
+ "applPastChannelControlRemItems" : {
3359
+ "nodetype" : "member",
3360
+ "module" : "APPLICATION-MIB"
3361
+ },
3362
+ "applPastChannelOpenTime" : {
3363
+ "nodetype" : "member",
3364
+ "module" : "APPLICATION-MIB"
3365
+ },
3366
+ "applPastChannelCloseTime" : {
3367
+ "nodetype" : "member",
3368
+ "module" : "APPLICATION-MIB"
3369
+ },
3370
+ "applPastChannelReadReqsLow" : {
3371
+ "nodetype" : "member",
3372
+ "module" : "APPLICATION-MIB"
3373
+ },
3374
+ "applPastChannelReadFailures" : {
3375
+ "nodetype" : "member",
3376
+ "module" : "APPLICATION-MIB"
3377
+ },
3378
+ "applPastChannelBytesReadLow" : {
3379
+ "nodetype" : "member",
3380
+ "module" : "APPLICATION-MIB"
3381
+ },
3382
+ "applPastChannelLastReadTime" : {
3383
+ "nodetype" : "member",
3384
+ "module" : "APPLICATION-MIB"
3385
+ },
3386
+ "applPastChannelWriteReqsLow" : {
3387
+ "nodetype" : "member",
3388
+ "module" : "APPLICATION-MIB"
3389
+ },
3390
+ "applPastChannelWriteFailures" : {
3391
+ "nodetype" : "member",
3392
+ "module" : "APPLICATION-MIB"
3393
+ },
3394
+ "applPastChannelBytesWritLow" : {
3395
+ "nodetype" : "member",
3396
+ "module" : "APPLICATION-MIB"
3397
+ },
3398
+ "applPastChannelLastWriteTime" : {
3399
+ "nodetype" : "member",
3400
+ "module" : "APPLICATION-MIB"
3401
+ },
3402
+ "applPastFileName" : {
3403
+ "nodetype" : "member",
3404
+ "module" : "APPLICATION-MIB"
3405
+ },
3406
+ "applPastFileSizeHigh" : {
3407
+ "nodetype" : "member",
3408
+ "module" : "APPLICATION-MIB"
3409
+ },
3410
+ "applPastFileSizeLow" : {
3411
+ "nodetype" : "member",
3412
+ "module" : "APPLICATION-MIB"
3413
+ },
3414
+ "applPastFileMode" : {
3415
+ "nodetype" : "member",
3416
+ "module" : "APPLICATION-MIB"
3417
+ },
3418
+ "applPastConTransport" : {
3419
+ "nodetype" : "member",
3420
+ "module" : "APPLICATION-MIB"
3421
+ },
3422
+ "applPastConNearEndAddr" : {
3423
+ "nodetype" : "member",
3424
+ "module" : "APPLICATION-MIB"
3425
+ },
3426
+ "applPastConNearEndpoint" : {
3427
+ "nodetype" : "member",
3428
+ "module" : "APPLICATION-MIB"
3429
+ },
3430
+ "applPastConFarEndAddr" : {
3431
+ "nodetype" : "member",
3432
+ "module" : "APPLICATION-MIB"
3433
+ },
3434
+ "applPastConFarEndpoint" : {
3435
+ "nodetype" : "member",
3436
+ "module" : "APPLICATION-MIB"
3437
+ },
3438
+ "applPastConApplication" : {
3439
+ "nodetype" : "member",
3440
+ "module" : "APPLICATION-MIB"
3441
+ },
3442
+ }, # members
3443
+ "description" :
3444
+ """This group models basic historical data.""",
3445
+ }, # group
3446
+ "applicationFastHistoryGroup" : {
3447
+ "nodetype" : "group",
3448
+ "moduleName" : "APPLICATION-MIB",
3449
+ "oid" : "1.3.6.1.2.1.62.2.1.6",
3450
+ "status" : "current",
3451
+ "members" : {
3452
+ "applPastChannelReadRequests" : {
3453
+ "nodetype" : "member",
3454
+ "module" : "APPLICATION-MIB"
3455
+ },
3456
+ "applPastChannelBytesRead" : {
3457
+ "nodetype" : "member",
3458
+ "module" : "APPLICATION-MIB"
3459
+ },
3460
+ "applPastChannelWriteRequests" : {
3461
+ "nodetype" : "member",
3462
+ "module" : "APPLICATION-MIB"
3463
+ },
3464
+ "applPastChannelBytesWritten" : {
3465
+ "nodetype" : "member",
3466
+ "module" : "APPLICATION-MIB"
3467
+ },
3468
+ }, # members
3469
+ "description" :
3470
+ """This group comprises additional 64-bit objects required
3471
+ for recording historical data in high-volume environments,
3472
+ where a 32-bit integer would be insufficient.""",
3473
+ }, # group
3474
+ "applicationTransHistoryGroup" : {
3475
+ "nodetype" : "group",
3476
+ "moduleName" : "APPLICATION-MIB",
3477
+ "oid" : "1.3.6.1.2.1.62.2.1.7",
3478
+ "status" : "current",
3479
+ "members" : {
3480
+ "applPastTransStreamDescr" : {
3481
+ "nodetype" : "member",
3482
+ "module" : "APPLICATION-MIB"
3483
+ },
3484
+ "applPastTransStreamUnitOfWork" : {
3485
+ "nodetype" : "member",
3486
+ "module" : "APPLICATION-MIB"
3487
+ },
3488
+ "applPastTransStreamInvokesLow" : {
3489
+ "nodetype" : "member",
3490
+ "module" : "APPLICATION-MIB"
3491
+ },
3492
+ "applPastTransStreamInvCumTimes" : {
3493
+ "nodetype" : "member",
3494
+ "module" : "APPLICATION-MIB"
3495
+ },
3496
+ "applPastTransStreamInvRspTimes" : {
3497
+ "nodetype" : "member",
3498
+ "module" : "APPLICATION-MIB"
3499
+ },
3500
+ "applPastTransStreamPerformsLow" : {
3501
+ "nodetype" : "member",
3502
+ "module" : "APPLICATION-MIB"
3503
+ },
3504
+ "applPastTransStreamPrfCumTimes" : {
3505
+ "nodetype" : "member",
3506
+ "module" : "APPLICATION-MIB"
3507
+ },
3508
+ "applPastTransStreamPrfRspTimes" : {
3509
+ "nodetype" : "member",
3510
+ "module" : "APPLICATION-MIB"
3511
+ },
3512
+ "applPastTransFlowTransLow" : {
3513
+ "nodetype" : "member",
3514
+ "module" : "APPLICATION-MIB"
3515
+ },
3516
+ "applPastTransFlowBytesLow" : {
3517
+ "nodetype" : "member",
3518
+ "module" : "APPLICATION-MIB"
3519
+ },
3520
+ "applPastTransFlowTime" : {
3521
+ "nodetype" : "member",
3522
+ "module" : "APPLICATION-MIB"
3523
+ },
3524
+ "applPastTransKindTransLow" : {
3525
+ "nodetype" : "member",
3526
+ "module" : "APPLICATION-MIB"
3527
+ },
3528
+ "applPastTransKindBytesLow" : {
3529
+ "nodetype" : "member",
3530
+ "module" : "APPLICATION-MIB"
3531
+ },
3532
+ "applPastTransKindTime" : {
3533
+ "nodetype" : "member",
3534
+ "module" : "APPLICATION-MIB"
3535
+ },
3536
+ }, # members
3537
+ "description" :
3538
+ """This group represents historical data for transaction-
3539
+ structured information streams.""",
3540
+ }, # group
3541
+ "applicationFastTransHistoryGroup" : {
3542
+ "nodetype" : "group",
3543
+ "moduleName" : "APPLICATION-MIB",
3544
+ "oid" : "1.3.6.1.2.1.62.2.1.8",
3545
+ "status" : "current",
3546
+ "members" : {
3547
+ "applPastTransFlowTrans" : {
3548
+ "nodetype" : "member",
3549
+ "module" : "APPLICATION-MIB"
3550
+ },
3551
+ "applPastTransFlowBytes" : {
3552
+ "nodetype" : "member",
3553
+ "module" : "APPLICATION-MIB"
3554
+ },
3555
+ "applPastTransKindTrans" : {
3556
+ "nodetype" : "member",
3557
+ "module" : "APPLICATION-MIB"
3558
+ },
3559
+ "applPastTransKindBytes" : {
3560
+ "nodetype" : "member",
3561
+ "module" : "APPLICATION-MIB"
3562
+ },
3563
+ "applPastTransStreamPerforms" : {
3564
+ "nodetype" : "member",
3565
+ "module" : "APPLICATION-MIB"
3566
+ },
3567
+ "applPastTransStreamInvokes" : {
3568
+ "nodetype" : "member",
3569
+ "module" : "APPLICATION-MIB"
3570
+ },
3571
+ }, # members
3572
+ "description" :
3573
+ """This group contains 64-bit objects required for historical
3574
+ records on high-volume transaction-structured streams,
3575
+ where 32-bit integers would be insufficient.""",
3576
+ }, # group
3577
+ "applicationRunGroup" : {
3578
+ "nodetype" : "group",
3579
+ "moduleName" : "APPLICATION-MIB",
3580
+ "oid" : "1.3.6.1.2.1.62.2.1.9",
3581
+ "status" : "current",
3582
+ "members" : {
3583
+ "applElmtRunStatusSuspended" : {
3584
+ "nodetype" : "member",
3585
+ "module" : "APPLICATION-MIB"
3586
+ },
3587
+ "applElmtRunStatusHeapUsage" : {
3588
+ "nodetype" : "member",
3589
+ "module" : "APPLICATION-MIB"
3590
+ },
3591
+ "applElmtRunStatusOpenConnections" : {
3592
+ "nodetype" : "member",
3593
+ "module" : "APPLICATION-MIB"
3594
+ },
3595
+ "applElmtRunStatusOpenFiles" : {
3596
+ "nodetype" : "member",
3597
+ "module" : "APPLICATION-MIB"
3598
+ },
3599
+ "applElmtRunStatusLastErrorMsg" : {
3600
+ "nodetype" : "member",
3601
+ "module" : "APPLICATION-MIB"
3602
+ },
3603
+ "applElmtRunStatusLastErrorTime" : {
3604
+ "nodetype" : "member",
3605
+ "module" : "APPLICATION-MIB"
3606
+ },
3607
+ "applElmtRunControlSuspend" : {
3608
+ "nodetype" : "member",
3609
+ "module" : "APPLICATION-MIB"
3610
+ },
3611
+ "applElmtRunControlReconfigure" : {
3612
+ "nodetype" : "member",
3613
+ "module" : "APPLICATION-MIB"
3614
+ },
3615
+ "applElmtRunControlTerminate" : {
3616
+ "nodetype" : "member",
3617
+ "module" : "APPLICATION-MIB"
3618
+ },
3619
+ }, # members
3620
+ "description" :
3621
+ """This group represents extensions to the system application
3622
+ MIB.""",
3623
+ }, # group
3624
+ }, # groups
3625
+
3626
+ "compliances" : {
3627
+ "applicationMibCompliance" : {
3628
+ "nodetype" : "compliance",
3629
+ "moduleName" : "APPLICATION-MIB",
3630
+ "oid" : "1.3.6.1.2.1.62.2.2",
3631
+ "status" : "current",
3632
+ "description" :
3633
+ """The compliance statement for the application MIB.""",
3634
+ "requires" : {
3635
+ "applicationMonitorGroup" : {
3636
+ "nodetype" : "mandatory",
3637
+ "module" : "APPLICATION-MIB"
3638
+ },
3639
+ "applicationHistoryGroup" : {
3640
+ "nodetype" : "mandatory",
3641
+ "module" : "APPLICATION-MIB"
3642
+ },
3643
+ "applicationRunGroup" : {
3644
+ "nodetype" : "mandatory",
3645
+ "module" : "APPLICATION-MIB"
3646
+ },
3647
+ "applicationTransactGroup" : {
3648
+ "nodetype" : "optional",
3649
+ "module" : "APPLICATION-MIB",
3650
+ "description" :
3651
+ """The applicationTransactGroup is required when the
3652
+ information stream processed has a transaction
3653
+ structure. """,
3654
+ },
3655
+ "applicationTransHistoryGroup" : {
3656
+ "nodetype" : "optional",
3657
+ "module" : "APPLICATION-MIB",
3658
+ "description" :
3659
+ """The applicationTransHistoryGroup must be implemented
3660
+ if applicationTransactGroup and applicationHistoryGroup
3661
+ are implemented.""",
3662
+ },
3663
+ "applicationFastMonitorGroup" : {
3664
+ "nodetype" : "optional",
3665
+ "module" : "APPLICATION-MIB",
3666
+ "description" :
3667
+ """The applicationFastMonitorGroup is mandatory when
3668
+ the applicationMonitorGroup is implemented and its
3669
+ counts group may exceed what can be represented in 32 bits.""",
3670
+ },
3671
+ "applicationFastTransactGroup" : {
3672
+ "nodetype" : "optional",
3673
+ "module" : "APPLICATION-MIB",
3674
+ "description" :
3675
+ """The applicationFastTransactGroup is mandatory when
3676
+ the applicationTransactGroup is implemented and its
3677
+ counts may exceed what can be represented in 32 bits.""",
3678
+ },
3679
+ "applicationFastHistoryGroup" : {
3680
+ "nodetype" : "optional",
3681
+ "module" : "APPLICATION-MIB",
3682
+ "description" :
3683
+ """The applicationFastHistoryGroup is mandatory when
3684
+ the applicationHistoryGroup is implemented and its
3685
+ counts may exceed what can be represented in 32 bits.""",
3686
+ },
3687
+ "applicationFastTransHistoryGroup" : {
3688
+ "nodetype" : "optional",
3689
+ "module" : "APPLICATION-MIB",
3690
+ "description" :
3691
+ """The applicationFastTransHistoryGroup is mandatory when
3692
+ the applicationTransHistoryGroup is implemented and its
3693
+ counts may exceed what can be represented in 32 bits.""",
3694
+ },
3695
+ }, # requires
3696
+ "refinements" : {
3697
+ "applPastChannelControlCollect" : {
3698
+ "module" : "APPLICATION-MIB",
3699
+ "access" : "readonly",
3700
+ "description" :
3701
+ """This object should be limited to read-only
3702
+ access in environments with inadequate
3703
+ security.""",
3704
+ },
3705
+ "applPastChannelControlMaxRows" : {
3706
+ "module" : "APPLICATION-MIB",
3707
+ "access" : "readonly",
3708
+ "description" :
3709
+ """This object should be limited to read-only
3710
+ access in environments with inadequate
3711
+ security.""",
3712
+ },
3713
+ "applPastChannelControlTimeLimit" : {
3714
+ "module" : "APPLICATION-MIB",
3715
+ "access" : "readonly",
3716
+ "description" :
3717
+ """This object should be limited to read-only
3718
+ access in environments with inadequate
3719
+ security.""",
3720
+ },
3721
+ "applElmtRunControlSuspend" : {
3722
+ "module" : "APPLICATION-MIB",
3723
+ "access" : "readonly",
3724
+ "description" :
3725
+ """This object should be limited to read-only
3726
+ access in environments with inadequate
3727
+ security.""",
3728
+ },
3729
+ "applElmtRunControlReconfigure" : {
3730
+ "module" : "APPLICATION-MIB",
3731
+ "access" : "readonly",
3732
+ "description" :
3733
+ """This object should be limited to read-only
3734
+ access in environments with inadequate
3735
+ security.""",
3736
+ },
3737
+ "applElmtRunControlTerminate" : {
3738
+ "module" : "APPLICATION-MIB",
3739
+ "access" : "readonly",
3740
+ "description" :
3741
+ """This object should be limited to read-only
3742
+ access in environments with inadequate
3743
+ security.""",
3744
+ },
3745
+ }, # refinements
3746
+
3747
+ }, # compliance
3748
+ }, # compliances
3749
+
3750
+ }