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,2092 @@
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 SYSAPPL-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SYSAPPL-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SYSAPPL-MIB",
11
+
12
+ "SYSAPPL-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Applications MIB Working Group""",
17
+ "contact" :
18
+ """Cheryl Krupczak (Editor, WG Advisor)
19
+ Postal: Empire Technologies, Inc.
20
+ 541 Tenth Street NW
21
+ Suite 169
22
+ Atlanta, GA 30318
23
+ USA
24
+ Phone: (770) 384-0184
25
+ Email: cheryl@empiretech.com
26
+
27
+ Jon Saperia (WG Chair)
28
+ Postal: BGS Systems, Inc.
29
+ One First Avenue
30
+ Waltham, MA 02254-9111
31
+ USA
32
+ Phone: (617) 891-0000
33
+ Email: saperia@networks.bgs.com""",
34
+ "description" :
35
+ """The MIB module defines management objects that model
36
+ applications as collections of executables and files
37
+ installed and executing on a host system. The MIB
38
+ presents a system-level view of applications; i.e.,
39
+ objects in this MIB are limited to those attributes
40
+ that can typically be obtained from the system itself
41
+ without adding special instrumentation to the applications.""",
42
+ "revisions" : (
43
+ {
44
+ "date" : "1997-10-20 00:00",
45
+ "description" :
46
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
47
+ },
48
+ ),
49
+ "identity node" : "sysApplMIB",
50
+ },
51
+
52
+ "imports" : (
53
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
54
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
58
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
59
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
60
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
61
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
62
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
63
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
64
+ ),
65
+
66
+ "typedefs" : {
67
+ "RunState" : {
68
+ "basetype" : "Enumeration",
69
+ "status" : "current",
70
+ "running" : {
71
+ "nodetype" : "namednumber",
72
+ "number" : "1"
73
+ },
74
+ "runnable" : {
75
+ "nodetype" : "namednumber",
76
+ "number" : "2"
77
+ },
78
+ "waiting" : {
79
+ "nodetype" : "namednumber",
80
+ "number" : "3"
81
+ },
82
+ "exiting" : {
83
+ "nodetype" : "namednumber",
84
+ "number" : "4"
85
+ },
86
+ "other" : {
87
+ "nodetype" : "namednumber",
88
+ "number" : "5"
89
+ },
90
+ "description" :
91
+ """This TC describes the current execution state of
92
+ a running application or process. The possible
93
+ values are:
94
+ running(1),
95
+ runnable(2), - waiting for a resource (CPU, etc.)
96
+ waiting(3), - waiting for an event
97
+ exiting(4),
98
+ other(5) - other invalid state""",
99
+ },
100
+ "LongUtf8String" : {
101
+ "basetype" : "OctetString",
102
+ "status" : "current",
103
+ "ranges" : [
104
+ {
105
+ "min" : "0",
106
+ "max" : "1024"
107
+ },
108
+ ],
109
+ "range" : {
110
+ "min" : "0",
111
+ "max" : "1024"
112
+ },
113
+ "format" : "1024a",
114
+ "description" :
115
+ """To facilitate internationalization, this TC
116
+ represents information taken from the ISO/IEC IS
117
+ 10646-1 character set, encoded as an octet string
118
+ using the UTF-8 character encoding scheme described
119
+ in RFC 2044 [10]. For strings in 7-bit US-ASCII,
120
+ there is no impact since the UTF-8 representation
121
+ is identical to the US-ASCII encoding.""",
122
+ },
123
+ "Utf8String" : {
124
+ "basetype" : "OctetString",
125
+ "status" : "current",
126
+ "ranges" : [
127
+ {
128
+ "min" : "0",
129
+ "max" : "255"
130
+ },
131
+ ],
132
+ "range" : {
133
+ "min" : "0",
134
+ "max" : "255"
135
+ },
136
+ "format" : "255a",
137
+ "description" :
138
+ """To facilitate internationalization, this TC
139
+ represents information taken from the ISO/IEC IS
140
+ 10646-1 character set, encoded as an octet string
141
+ using the UTF-8 character encoding scheme described
142
+ in RFC 2044 [10]. For strings in 7-bit US-ASCII,
143
+ there is no impact since the UTF-8 representation
144
+ is identical to the US-ASCII encoding.""",
145
+ },
146
+ }, # typedefs
147
+
148
+ "nodes" : {
149
+ "sysApplMIB" : {
150
+ "nodetype" : "node",
151
+ "moduleName" : "SYSAPPL-MIB",
152
+ "oid" : "1.3.6.1.2.1.54",
153
+ "status" : "current",
154
+ }, # node
155
+ "sysApplOBJ" : {
156
+ "nodetype" : "node",
157
+ "moduleName" : "SYSAPPL-MIB",
158
+ "oid" : "1.3.6.1.2.1.54.1",
159
+ }, # node
160
+ "sysApplInstalled" : {
161
+ "nodetype" : "node",
162
+ "moduleName" : "SYSAPPL-MIB",
163
+ "oid" : "1.3.6.1.2.1.54.1.1",
164
+ }, # node
165
+ "sysApplInstallPkgTable" : {
166
+ "nodetype" : "table",
167
+ "moduleName" : "SYSAPPL-MIB",
168
+ "oid" : "1.3.6.1.2.1.54.1.1.1",
169
+ "status" : "current",
170
+ "description" :
171
+ """The table listing the software application packages
172
+ installed on a host computer. In order to appear in
173
+ this table, it may be necessary for the application
174
+ to be installed using some type of software
175
+ installation mechanism or global registry so that its
176
+ existence can be detected by the agent implementation.""",
177
+ }, # table
178
+ "sysApplInstallPkgEntry" : {
179
+ "nodetype" : "row",
180
+ "moduleName" : "SYSAPPL-MIB",
181
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1",
182
+ "status" : "current",
183
+ "linkage" : [
184
+ "sysApplInstallPkgIndex",
185
+ ],
186
+ "description" :
187
+ """The logical row describing an installed application
188
+ package.""",
189
+ }, # row
190
+ "sysApplInstallPkgIndex" : {
191
+ "nodetype" : "column",
192
+ "moduleName" : "SYSAPPL-MIB",
193
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1.1",
194
+ "status" : "current",
195
+ "syntax" : {
196
+ "type" : {
197
+ "basetype" : "Unsigned32",
198
+ "ranges" : [
199
+ {
200
+ "min" : "1",
201
+ "max" : "4294967295"
202
+ },
203
+ ],
204
+ "range" : {
205
+ "min" : "1",
206
+ "max" : "4294967295"
207
+ },
208
+ },
209
+ },
210
+ "access" : "noaccess",
211
+ "description" :
212
+ """An integer used only for indexing purposes.
213
+ Generally monotonically increasing from 1 as new
214
+ applications are installed.
215
+
216
+ The value for each installed application must
217
+ remain constant at least from one re-initialization of
218
+ the network management entity which implements this
219
+ MIB module to the next re-initialization.
220
+
221
+ The specific value is meaningful only within a given SNMP
222
+ entity. A sysApplInstallPkgIndex value must not be re-used
223
+ until the next agent entity restart in the event the
224
+ installed application entry is deleted.""",
225
+ }, # column
226
+ "sysApplInstallPkgManufacturer" : {
227
+ "nodetype" : "column",
228
+ "moduleName" : "SYSAPPL-MIB",
229
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1.2",
230
+ "status" : "current",
231
+ "syntax" : {
232
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
233
+ },
234
+ "access" : "readonly",
235
+ "description" :
236
+ """The Manufacturer of the software application package.""",
237
+ }, # column
238
+ "sysApplInstallPkgProductName" : {
239
+ "nodetype" : "column",
240
+ "moduleName" : "SYSAPPL-MIB",
241
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1.3",
242
+ "status" : "current",
243
+ "syntax" : {
244
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
245
+ },
246
+ "access" : "readonly",
247
+ "description" :
248
+ """The name assigned to the software application package
249
+ by the Manufacturer.""",
250
+ }, # column
251
+ "sysApplInstallPkgVersion" : {
252
+ "nodetype" : "column",
253
+ "moduleName" : "SYSAPPL-MIB",
254
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1.4",
255
+ "status" : "current",
256
+ "syntax" : {
257
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
258
+ },
259
+ "access" : "readonly",
260
+ "description" :
261
+ """The version number assigned to the application package
262
+ by the manufacturer of the software.""",
263
+ }, # column
264
+ "sysApplInstallPkgSerialNumber" : {
265
+ "nodetype" : "column",
266
+ "moduleName" : "SYSAPPL-MIB",
267
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1.5",
268
+ "status" : "current",
269
+ "syntax" : {
270
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
271
+ },
272
+ "access" : "readonly",
273
+ "description" :
274
+ """The serial number of the software assigned by the
275
+ manufacturer.""",
276
+ }, # column
277
+ "sysApplInstallPkgDate" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "SYSAPPL-MIB",
280
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1.6",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
284
+ },
285
+ "access" : "readonly",
286
+ "description" :
287
+ """The date and time this software application was installed
288
+ on the host.""",
289
+ }, # column
290
+ "sysApplInstallPkgLocation" : {
291
+ "nodetype" : "column",
292
+ "moduleName" : "SYSAPPL-MIB",
293
+ "oid" : "1.3.6.1.2.1.54.1.1.1.1.7",
294
+ "status" : "current",
295
+ "syntax" : {
296
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "LongUtf8String"},
297
+ },
298
+ "access" : "readonly",
299
+ "description" :
300
+ """The complete path name where the application package
301
+ is installed. For example, the value would be
302
+ '/opt/MyapplDir' if the application package was installed
303
+ in the /opt/MyapplDir directory.""",
304
+ }, # column
305
+ "sysApplInstallElmtTable" : {
306
+ "nodetype" : "table",
307
+ "moduleName" : "SYSAPPL-MIB",
308
+ "oid" : "1.3.6.1.2.1.54.1.1.2",
309
+ "status" : "current",
310
+ "description" :
311
+ """This table details the individual application package
312
+ elements (files and executables) which comprise the
313
+ applications defined in the sysApplInstallPkg Table.
314
+ Each entry in this table has an index to the
315
+ sysApplInstallPkg table to identify the application
316
+ package of which it is a part. As a result, there may
317
+ be many entries in this table for each instance in the
318
+ sysApplInstallPkg Table.
319
+
320
+ Table entries are indexed by sysApplInstallPkgIndex,
321
+ sysApplInstallElmtIndex to facilitate retrieval of
322
+ all elements associated with a particular installed
323
+ application package.""",
324
+ }, # table
325
+ "sysApplInstallElmtEntry" : {
326
+ "nodetype" : "row",
327
+ "moduleName" : "SYSAPPL-MIB",
328
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1",
329
+ "status" : "current",
330
+ "linkage" : [
331
+ "sysApplInstallPkgIndex",
332
+ "sysApplInstallElmtIndex",
333
+ ],
334
+ "description" :
335
+ """The logical row describing an element of an installed
336
+ application. The element may be an executable or
337
+ non-executable file.""",
338
+ }, # row
339
+ "sysApplInstallElmtIndex" : {
340
+ "nodetype" : "column",
341
+ "moduleName" : "SYSAPPL-MIB",
342
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.1",
343
+ "status" : "current",
344
+ "syntax" : {
345
+ "type" : {
346
+ "basetype" : "Unsigned32",
347
+ "ranges" : [
348
+ {
349
+ "min" : "1",
350
+ "max" : "4294967295"
351
+ },
352
+ ],
353
+ "range" : {
354
+ "min" : "1",
355
+ "max" : "4294967295"
356
+ },
357
+ },
358
+ },
359
+ "access" : "noaccess",
360
+ "description" :
361
+ """An arbitrary integer used for indexing. The value
362
+ of this index is unique among all rows in this table
363
+ that exist or have existed since the last agent restart.""",
364
+ }, # column
365
+ "sysApplInstallElmtName" : {
366
+ "nodetype" : "column",
367
+ "moduleName" : "SYSAPPL-MIB",
368
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.2",
369
+ "status" : "current",
370
+ "syntax" : {
371
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
372
+ },
373
+ "access" : "readonly",
374
+ "description" :
375
+ """The name of this element which is contained in the
376
+ application.""",
377
+ }, # column
378
+ "sysApplInstallElmtType" : {
379
+ "nodetype" : "column",
380
+ "moduleName" : "SYSAPPL-MIB",
381
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.3",
382
+ "status" : "current",
383
+ "syntax" : {
384
+ "type" : {
385
+ "basetype" : "Enumeration",
386
+ "unknown" : {
387
+ "nodetype" : "namednumber",
388
+ "number" : "1"
389
+ },
390
+ "nonexecutable" : {
391
+ "nodetype" : "namednumber",
392
+ "number" : "2"
393
+ },
394
+ "operatingSystem" : {
395
+ "nodetype" : "namednumber",
396
+ "number" : "3"
397
+ },
398
+ "deviceDriver" : {
399
+ "nodetype" : "namednumber",
400
+ "number" : "4"
401
+ },
402
+ "application" : {
403
+ "nodetype" : "namednumber",
404
+ "number" : "5"
405
+ },
406
+ },
407
+ },
408
+ "access" : "readonly",
409
+ "description" :
410
+ """The type of element that is part of the installed
411
+ application.""",
412
+ }, # column
413
+ "sysApplInstallElmtDate" : {
414
+ "nodetype" : "column",
415
+ "moduleName" : "SYSAPPL-MIB",
416
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.4",
417
+ "status" : "current",
418
+ "syntax" : {
419
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
420
+ },
421
+ "access" : "readonly",
422
+ "description" :
423
+ """The date and time that this component was installed on
424
+ the system.""",
425
+ }, # column
426
+ "sysApplInstallElmtPath" : {
427
+ "nodetype" : "column",
428
+ "moduleName" : "SYSAPPL-MIB",
429
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.5",
430
+ "status" : "current",
431
+ "syntax" : {
432
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "LongUtf8String"},
433
+ },
434
+ "access" : "readonly",
435
+ "description" :
436
+ """The full directory path where this element is installed.
437
+ For example, the value would be '/opt/EMPuma/bin' for an
438
+ element installed in the directory '/opt/EMPuma/bin'.
439
+ Most application packages include information about the
440
+ elements contained in the package. In addition, elements
441
+ are typically installed in sub-directories under the
442
+ package installation directory. In cases where the
443
+ element path names are not included in the package
444
+ information itself, the path can usually be determined
445
+ by a simple search of the sub-directories. If the
446
+ element is not installed in that location and there is
447
+ no other information available to the agent implementation,
448
+ then the path is unknown and null is returned.""",
449
+ }, # column
450
+ "sysApplInstallElmtSizeHigh" : {
451
+ "nodetype" : "column",
452
+ "moduleName" : "SYSAPPL-MIB",
453
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.6",
454
+ "status" : "current",
455
+ "syntax" : {
456
+ "type" : { "module" :"", "name" : "Unsigned32"},
457
+ },
458
+ "access" : "readonly",
459
+ "description" :
460
+ """The installed file size in 2^32 byte blocks. This is
461
+ the size of the file on disk immediately after installation.
462
+
463
+ For example, for a file with a total size of 4,294,967,296
464
+ bytes, this variable would have a value of 1; for a file
465
+ with a total size of 4,294,967,295 bytes this variable
466
+ would be 0.""",
467
+ }, # column
468
+ "sysApplInstallElmtSizeLow" : {
469
+ "nodetype" : "column",
470
+ "moduleName" : "SYSAPPL-MIB",
471
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.7",
472
+ "status" : "current",
473
+ "syntax" : {
474
+ "type" : { "module" :"", "name" : "Unsigned32"},
475
+ },
476
+ "access" : "readonly",
477
+ "description" :
478
+ """The installed file size modulo 2^32 bytes. This is
479
+ the size of the file on disk immediately after installation.
480
+
481
+ For example, for a file with a total size of 4,294,967,296
482
+ bytes this variable would have a value of 0; for a file with
483
+ a total size of 4,294,967,295 bytes this variable would be
484
+ 4,294,967,295.""",
485
+ }, # column
486
+ "sysApplInstallElmtRole" : {
487
+ "nodetype" : "column",
488
+ "moduleName" : "SYSAPPL-MIB",
489
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.8",
490
+ "status" : "current",
491
+ "syntax" : {
492
+ "type" : {
493
+ "basetype" : "Bits",
494
+ "executable" : {
495
+ "nodetype" : "namednumber",
496
+ "number" : "0"
497
+ },
498
+ "exclusive" : {
499
+ "nodetype" : "namednumber",
500
+ "number" : "1"
501
+ },
502
+ "primary" : {
503
+ "nodetype" : "namednumber",
504
+ "number" : "2"
505
+ },
506
+ "required" : {
507
+ "nodetype" : "namednumber",
508
+ "number" : "3"
509
+ },
510
+ "dependent" : {
511
+ "nodetype" : "namednumber",
512
+ "number" : "4"
513
+ },
514
+ "unknown" : {
515
+ "nodetype" : "namednumber",
516
+ "number" : "5"
517
+ },
518
+ },
519
+ },
520
+ "access" : "readwrite",
521
+ "default" : "(unknown)",
522
+ "description" :
523
+ """An operator assigned value used in the determination of
524
+ application status. This value is used by the agent to
525
+ determine both the mapping of started processes to the
526
+ initiation of an application, as well as to allow for a
527
+ determination of application health. The default value,
528
+ unknown(5), is used when an operator has not yet assigned
529
+ one of the other values. If unknown(5) is set, bits
530
+ 1 - 4 have no meaning. The possible values are:
531
+
532
+ executable(0),
533
+ An application may have one or
534
+ more executable elements. The rest of the
535
+ bits have no meaning if the element is not
536
+ executable.
537
+ exclusive(1),
538
+ Only one copy of an exclusive element may be
539
+ running per invocation of the running
540
+ application.
541
+ primary(2),
542
+ The primary executable. An application can
543
+ have one, and only one element that is designated
544
+ as the primary executable. The execution of
545
+ this element constitutes an invocation of
546
+ the application. This is used by the agent
547
+ implementation to determine the initiation of
548
+ an application. The primary executable must
549
+ remain running long enough for the agent
550
+ implementation to detect its presence.
551
+ required(3),
552
+ An application may have zero or more required
553
+ elements. All required elements must be running
554
+ in order for the application to be judged to be
555
+ running and healthy.
556
+ dependent(4),
557
+ An application may have zero or more
558
+ dependent elements. Dependent elements may
559
+ not be running unless required elements are.
560
+ unknown(5)
561
+ Default value for the case when an operator
562
+ has not yet assigned one of the other values.
563
+ When set, bits 1, 2, 3, and 4 have no meaning.
564
+
565
+ sysApplInstallElmtRole is used by the agent implementation
566
+ in determining the initiation of an application, the
567
+ current state of a running application (see
568
+ sysApplRunCurrentState), when an application invocation is
569
+ no longer running, and the exit status of a terminated
570
+ application invocation (see sysApplPastRunExitState).""",
571
+ }, # column
572
+ "sysApplInstallElmtModifyDate" : {
573
+ "nodetype" : "column",
574
+ "moduleName" : "SYSAPPL-MIB",
575
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.9",
576
+ "status" : "current",
577
+ "syntax" : {
578
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
579
+ },
580
+ "access" : "readonly",
581
+ "description" :
582
+ """The date and time that this element was last modified.
583
+ Modification of the sysApplInstallElmtRole columnar
584
+ object does NOT constitute a modification of the element
585
+ itself and should not affect the value of this object.""",
586
+ }, # column
587
+ "sysApplInstallElmtCurSizeHigh" : {
588
+ "nodetype" : "column",
589
+ "moduleName" : "SYSAPPL-MIB",
590
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.10",
591
+ "status" : "current",
592
+ "syntax" : {
593
+ "type" : { "module" :"", "name" : "Unsigned32"},
594
+ },
595
+ "access" : "readonly",
596
+ "description" :
597
+ """The current file size in 2^32 byte blocks.
598
+ For example, for a file with a total size of 4,294,967,296
599
+ bytes, this variable would have a value of 1; for a file
600
+ with a total size of 4,294,967,295 bytes this variable
601
+ would be 0.""",
602
+ }, # column
603
+ "sysApplInstallElmtCurSizeLow" : {
604
+ "nodetype" : "column",
605
+ "moduleName" : "SYSAPPL-MIB",
606
+ "oid" : "1.3.6.1.2.1.54.1.1.2.1.11",
607
+ "status" : "current",
608
+ "syntax" : {
609
+ "type" : { "module" :"", "name" : "Unsigned32"},
610
+ },
611
+ "access" : "readonly",
612
+ "description" :
613
+ """The current file size modulo 2^32 bytes.
614
+ For example, for a file with a total size of 4,294,967,296
615
+ bytes this variable would have a value of 0; for a file with
616
+ a total size of 4,294,967,295 bytes this variable would be
617
+ 4,294,967,295.""",
618
+ }, # column
619
+ "sysApplRun" : {
620
+ "nodetype" : "node",
621
+ "moduleName" : "SYSAPPL-MIB",
622
+ "oid" : "1.3.6.1.2.1.54.1.2",
623
+ }, # node
624
+ "sysApplRunTable" : {
625
+ "nodetype" : "table",
626
+ "moduleName" : "SYSAPPL-MIB",
627
+ "oid" : "1.3.6.1.2.1.54.1.2.1",
628
+ "status" : "current",
629
+ "description" :
630
+ """The table describes the applications which are executing
631
+ on the host. Each time an application is invoked,
632
+ an entry is created in this table. When an application ends,
633
+ the entry is removed from this table and a corresponding
634
+ entry is created in the SysApplPastRunTable.
635
+
636
+ A new entry is created in this table whenever the agent
637
+ implementation detects a new running process that is an
638
+ installed application element whose sysApplInstallElmtRole
639
+ designates it as being the application's primary executable
640
+ (sysApplInstallElmtRole = primary(2) ).
641
+
642
+ The table is indexed by sysApplInstallPkgIndex,
643
+ sysApplRunIndex to enable managers to easily locate all
644
+ invocations of a particular application package.""",
645
+ }, # table
646
+ "sysApplRunEntry" : {
647
+ "nodetype" : "row",
648
+ "moduleName" : "SYSAPPL-MIB",
649
+ "oid" : "1.3.6.1.2.1.54.1.2.1.1",
650
+ "status" : "current",
651
+ "linkage" : [
652
+ "sysApplInstallPkgIndex",
653
+ "sysApplRunIndex",
654
+ ],
655
+ "description" :
656
+ """The logical row describing an application which is
657
+ currently running on this host.""",
658
+ }, # row
659
+ "sysApplRunIndex" : {
660
+ "nodetype" : "column",
661
+ "moduleName" : "SYSAPPL-MIB",
662
+ "oid" : "1.3.6.1.2.1.54.1.2.1.1.1",
663
+ "status" : "current",
664
+ "syntax" : {
665
+ "type" : {
666
+ "basetype" : "Unsigned32",
667
+ "ranges" : [
668
+ {
669
+ "min" : "1",
670
+ "max" : "4294967295"
671
+ },
672
+ ],
673
+ "range" : {
674
+ "min" : "1",
675
+ "max" : "4294967295"
676
+ },
677
+ },
678
+ },
679
+ "access" : "noaccess",
680
+ "description" :
681
+ """Part of the index for this table. An arbitrary
682
+ integer used only for indexing purposes. Generally
683
+ monotonically increasing from 1 as new applications are
684
+ started on the host, it uniquely identifies application
685
+ invocations.
686
+
687
+ The numbering for this index increases by 1 for each
688
+ INVOCATION of an application, regardless of which
689
+ installed application package this entry represents a
690
+ running instance of.
691
+
692
+ An example of the indexing for a couple of entries is
693
+ shown below.
694
+
695
+ :
696
+ sysApplRunStarted.17.14
697
+ sysApplRunStarted.17.63
698
+ sysApplRunStarted.18.13
699
+ :
700
+
701
+ In this example, the agent has observed 12 application
702
+ invocations when the application represented by entry 18
703
+ in the sysApplInstallPkgTable is invoked. The next
704
+ invocation detected by the agent is an invocation of
705
+ installed application package 17. Some time later,
706
+ installed application 17 is invoked a second time.
707
+
708
+ NOTE: this index is not intended to reflect a real-time
709
+ (wall clock time) ordering of application invocations;
710
+ it is merely intended to uniquely identify running
711
+ instances of applications. Although the
712
+ sysApplInstallPkgIndex is included in the INDEX clause
713
+ for this table, it serves only to ease searching of
714
+ this table by installed application and does not
715
+ contribute to uniquely identifying table entries.""",
716
+ }, # column
717
+ "sysApplRunStarted" : {
718
+ "nodetype" : "column",
719
+ "moduleName" : "SYSAPPL-MIB",
720
+ "oid" : "1.3.6.1.2.1.54.1.2.1.1.2",
721
+ "status" : "current",
722
+ "syntax" : {
723
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
724
+ },
725
+ "access" : "readonly",
726
+ "description" :
727
+ """The date and time that the application was started.""",
728
+ }, # column
729
+ "sysApplRunCurrentState" : {
730
+ "nodetype" : "column",
731
+ "moduleName" : "SYSAPPL-MIB",
732
+ "oid" : "1.3.6.1.2.1.54.1.2.1.1.3",
733
+ "status" : "current",
734
+ "syntax" : {
735
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "RunState"},
736
+ },
737
+ "access" : "readonly",
738
+ "description" :
739
+ """The current state of the running application instance.
740
+ The possible values are running(1), runnable(2) but waiting
741
+ for a resource such as CPU, waiting(3) for an event,
742
+ exiting(4), or other(5). This value is based on an evaluation
743
+ of the running elements of this application instance (see
744
+ sysApplElmRunState) and their Roles as defined by
745
+ sysApplInstallElmtRole. An agent implementation may
746
+ detect that an application instance is in the process of
747
+ exiting if one or more of its REQUIRED elements are no
748
+ longer running. Most agent implementations will wait until
749
+ a second internal poll has been completed to give the
750
+ system time to start REQUIRED elements before marking the
751
+ application instance as exiting.""",
752
+ }, # column
753
+ "sysApplPastRunTable" : {
754
+ "nodetype" : "table",
755
+ "moduleName" : "SYSAPPL-MIB",
756
+ "oid" : "1.3.6.1.2.1.54.1.2.2",
757
+ "status" : "current",
758
+ "description" :
759
+ """A history of the applications that have previously run
760
+ on the host computer. An entry's information is moved to
761
+ this table from the sysApplRunTable when the invoked
762
+ application represented by the entry ceases to be running.
763
+
764
+ An agent implementation can determine that an application
765
+ invocation is no longer running by evaluating the running
766
+ elements of the application instance and their Roles as
767
+ defined by sysApplInstallElmtRole. Obviously, if there
768
+ are no running elements for the application instance,
769
+ then the application invocation is no longer running.
770
+ If any one of the REQUIRED elements is not running,
771
+ the application instance may be in the process of exiting.
772
+ Most agent implementations will wait until a second internal
773
+ poll has been completed to give the system time to either
774
+ restart partial failures or to give all elements time to
775
+ exit. If, after the second poll, there are REQUIRED
776
+ elements that are not running, then the application
777
+ instance may be considered by the agent implementation
778
+ to no longer be running.
779
+
780
+ Entries remain in the sysApplPastRunTable until they
781
+ are aged out when either the table size reaches a maximum
782
+ as determined by the sysApplPastRunMaxRows, or when an entry
783
+ has aged to exceed a time limit as set by
784
+ sysApplPastRunTblTimeLimit.
785
+
786
+ Entries in this table are indexed by sysApplInstallPkgIndex,
787
+ sysApplPastRunIndex to facilitate retrieval of all past
788
+ run invocations of a particular installed application.""",
789
+ }, # table
790
+ "sysApplPastRunEntry" : {
791
+ "nodetype" : "row",
792
+ "moduleName" : "SYSAPPL-MIB",
793
+ "oid" : "1.3.6.1.2.1.54.1.2.2.1",
794
+ "status" : "current",
795
+ "linkage" : [
796
+ "sysApplInstallPkgIndex",
797
+ "sysApplPastRunIndex",
798
+ ],
799
+ "description" :
800
+ """The logical row describing an invocation of an application
801
+ which was previously run and has terminated. The entry
802
+ is basically copied from the sysApplRunTable when the
803
+ application instance terminates. Hence, the entry's
804
+ value for sysApplPastRunIndex is the same as its value was
805
+ for sysApplRunIndex.""",
806
+ }, # row
807
+ "sysApplPastRunIndex" : {
808
+ "nodetype" : "column",
809
+ "moduleName" : "SYSAPPL-MIB",
810
+ "oid" : "1.3.6.1.2.1.54.1.2.2.1.1",
811
+ "status" : "current",
812
+ "syntax" : {
813
+ "type" : {
814
+ "basetype" : "Unsigned32",
815
+ "ranges" : [
816
+ {
817
+ "min" : "1",
818
+ "max" : "4294967295"
819
+ },
820
+ ],
821
+ "range" : {
822
+ "min" : "1",
823
+ "max" : "4294967295"
824
+ },
825
+ },
826
+ },
827
+ "access" : "noaccess",
828
+ "description" :
829
+ """Part of the index for this table. An integer
830
+ matching the value of the removed sysApplRunIndex
831
+ corresponding to this row.""",
832
+ }, # column
833
+ "sysApplPastRunStarted" : {
834
+ "nodetype" : "column",
835
+ "moduleName" : "SYSAPPL-MIB",
836
+ "oid" : "1.3.6.1.2.1.54.1.2.2.1.2",
837
+ "status" : "current",
838
+ "syntax" : {
839
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
840
+ },
841
+ "access" : "readonly",
842
+ "description" :
843
+ """The date and time that the application was started.""",
844
+ }, # column
845
+ "sysApplPastRunExitState" : {
846
+ "nodetype" : "column",
847
+ "moduleName" : "SYSAPPL-MIB",
848
+ "oid" : "1.3.6.1.2.1.54.1.2.2.1.3",
849
+ "status" : "current",
850
+ "syntax" : {
851
+ "type" : {
852
+ "basetype" : "Enumeration",
853
+ "complete" : {
854
+ "nodetype" : "namednumber",
855
+ "number" : "1"
856
+ },
857
+ "failed" : {
858
+ "nodetype" : "namednumber",
859
+ "number" : "2"
860
+ },
861
+ "other" : {
862
+ "nodetype" : "namednumber",
863
+ "number" : "3"
864
+ },
865
+ },
866
+ },
867
+ "access" : "readonly",
868
+ "description" :
869
+ """The state of the application instance when it terminated.
870
+ This value is based on an evaluation of the running elements
871
+ of an application and their Roles as defined by
872
+ sysApplInstallElmtRole. An application instance is said to
873
+ have exited in a COMPLETE state and its entry is removed
874
+ from the sysApplRunTable and added to the sysApplPastRunTable
875
+ when the agent detects that ALL elements of an application
876
+ invocation are no longer running. Most agent implementations
877
+ will wait until a second internal poll has been completed to
878
+ give the system time to either restart partial failures or
879
+ to give all elements time to exit. A failed state occurs if,
880
+ after the second poll, any elements continue to run but
881
+ one or more of the REQUIRED elements are no longer running.
882
+ All other combinations MUST be defined as OTHER.""",
883
+ }, # column
884
+ "sysApplPastRunTimeEnded" : {
885
+ "nodetype" : "column",
886
+ "moduleName" : "SYSAPPL-MIB",
887
+ "oid" : "1.3.6.1.2.1.54.1.2.2.1.4",
888
+ "status" : "current",
889
+ "syntax" : {
890
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
891
+ },
892
+ "access" : "readonly",
893
+ "description" :
894
+ """The DateAndTime the application instance was determined
895
+ to be no longer running.""",
896
+ }, # column
897
+ "sysApplElmtRunTable" : {
898
+ "nodetype" : "table",
899
+ "moduleName" : "SYSAPPL-MIB",
900
+ "oid" : "1.3.6.1.2.1.54.1.2.3",
901
+ "status" : "current",
902
+ "description" :
903
+ """The table describes the processes which are
904
+ currently executing on the host system. Each entry
905
+ represents a running process and is associated with
906
+ the invoked application of which that process is a part, if
907
+ possible. This table contains an entry for every process
908
+ currently running on the system, regardless of whether its
909
+ 'parent' application can be determined. So, for example,
910
+ processes like 'ps' and 'grep' will have entries though they
911
+ are not associated with an installed application package.
912
+
913
+ Because a running application may involve
914
+ more than one executable, it is possible to have
915
+ multiple entries in this table for each application.
916
+ Entries are removed from this table when the process
917
+ terminates.
918
+ The table is indexed by sysApplElmtRunInstallPkg,
919
+ sysApplElmtRunInvocID, and sysApplElmtRunIndex to
920
+ facilitate the retrieval of all running elements of a
921
+ particular invoked application which has been installed on
922
+ the system.""",
923
+ }, # table
924
+ "sysApplElmtRunEntry" : {
925
+ "nodetype" : "row",
926
+ "moduleName" : "SYSAPPL-MIB",
927
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1",
928
+ "status" : "current",
929
+ "linkage" : [
930
+ "sysApplElmtRunInstallPkg",
931
+ "sysApplElmtRunInvocID",
932
+ "sysApplElmtRunIndex",
933
+ ],
934
+ "description" :
935
+ """The logical row describing a process currently
936
+ running on this host. When possible, the entry is
937
+ associated with the invoked application of which it
938
+ is a part.""",
939
+ }, # row
940
+ "sysApplElmtRunInstallPkg" : {
941
+ "nodetype" : "column",
942
+ "moduleName" : "SYSAPPL-MIB",
943
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.1",
944
+ "status" : "current",
945
+ "syntax" : {
946
+ "type" : {
947
+ "basetype" : "Unsigned32",
948
+ "ranges" : [
949
+ {
950
+ "min" : "0",
951
+ "max" : "4294967295"
952
+ },
953
+ ],
954
+ "range" : {
955
+ "min" : "0",
956
+ "max" : "4294967295"
957
+ },
958
+ },
959
+ },
960
+ "access" : "noaccess",
961
+ "description" :
962
+ """Part of the index for this table, this value
963
+ identifies the installed software package for
964
+ the application of which this process is a part.
965
+ Provided that the process's 'parent' application can be
966
+ determined, the value of this object is the same
967
+ value as the sysApplInstallPkgIndex for the
968
+ entry in the sysApplInstallPkgTable that corresponds
969
+ to the installed application of which this process
970
+ is a part.
971
+
972
+ If, however, the 'parent' application cannot be
973
+ determined, (for example the process is not part
974
+ of a particular installed application), the value
975
+ for this object is then '0', signifying that this
976
+ process cannot be related back to an application,
977
+ and in turn, an installed software package.""",
978
+ }, # column
979
+ "sysApplElmtRunInvocID" : {
980
+ "nodetype" : "column",
981
+ "moduleName" : "SYSAPPL-MIB",
982
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.2",
983
+ "status" : "current",
984
+ "syntax" : {
985
+ "type" : {
986
+ "basetype" : "Unsigned32",
987
+ "ranges" : [
988
+ {
989
+ "min" : "0",
990
+ "max" : "4294967295"
991
+ },
992
+ ],
993
+ "range" : {
994
+ "min" : "0",
995
+ "max" : "4294967295"
996
+ },
997
+ },
998
+ },
999
+ "access" : "noaccess",
1000
+ "description" :
1001
+ """Part of the index for this table, this value
1002
+ identifies the invocation of an application of which
1003
+ this process is a part. Provided that the 'parent'
1004
+ application can be determined, the value of this object
1005
+ is the same value as the sysApplRunIndex for the
1006
+ corresponding application invocation in the
1007
+ sysApplRunTable.
1008
+
1009
+ If, however, the 'parent' application cannot be
1010
+ determined, the value for this object is then '0',
1011
+ signifying that this process cannot be related back
1012
+ to an invocation of an application in the
1013
+ sysApplRunTable.""",
1014
+ }, # column
1015
+ "sysApplElmtRunIndex" : {
1016
+ "nodetype" : "column",
1017
+ "moduleName" : "SYSAPPL-MIB",
1018
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.3",
1019
+ "status" : "current",
1020
+ "syntax" : {
1021
+ "type" : {
1022
+ "basetype" : "Unsigned32",
1023
+ "ranges" : [
1024
+ {
1025
+ "min" : "0",
1026
+ "max" : "4294967295"
1027
+ },
1028
+ ],
1029
+ "range" : {
1030
+ "min" : "0",
1031
+ "max" : "4294967295"
1032
+ },
1033
+ },
1034
+ },
1035
+ "access" : "noaccess",
1036
+ "description" :
1037
+ """Part of the index for this table. A unique value
1038
+ for each process running on the host. Wherever
1039
+ possible, this should be the system's native, unique
1040
+ identification number.""",
1041
+ }, # column
1042
+ "sysApplElmtRunInstallID" : {
1043
+ "nodetype" : "column",
1044
+ "moduleName" : "SYSAPPL-MIB",
1045
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.4",
1046
+ "status" : "current",
1047
+ "syntax" : {
1048
+ "type" : {
1049
+ "basetype" : "Unsigned32",
1050
+ "ranges" : [
1051
+ {
1052
+ "min" : "0",
1053
+ "max" : "4294967295"
1054
+ },
1055
+ ],
1056
+ "range" : {
1057
+ "min" : "0",
1058
+ "max" : "4294967295"
1059
+ },
1060
+ },
1061
+ },
1062
+ "access" : "readonly",
1063
+ "description" :
1064
+ """The index into the sysApplInstallElmtTable. The
1065
+ value of this object is the same value as the
1066
+ sysApplInstallElmtIndex for the application element
1067
+ of which this entry represents a running instance.
1068
+ If this process cannot be associated with an installed
1069
+ executable, the value should be '0'.""",
1070
+ }, # column
1071
+ "sysApplElmtRunTimeStarted" : {
1072
+ "nodetype" : "column",
1073
+ "moduleName" : "SYSAPPL-MIB",
1074
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.5",
1075
+ "status" : "current",
1076
+ "syntax" : {
1077
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1078
+ },
1079
+ "access" : "readonly",
1080
+ "description" :
1081
+ """The time the process was started.""",
1082
+ }, # column
1083
+ "sysApplElmtRunState" : {
1084
+ "nodetype" : "column",
1085
+ "moduleName" : "SYSAPPL-MIB",
1086
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.6",
1087
+ "status" : "current",
1088
+ "syntax" : {
1089
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "RunState"},
1090
+ },
1091
+ "access" : "readonly",
1092
+ "description" :
1093
+ """The current state of the running process. The
1094
+ possible values are running(1), runnable(2) but waiting
1095
+ for a resource such as CPU, waiting(3) for an event,
1096
+ exiting(4), or other(5).""",
1097
+ }, # column
1098
+ "sysApplElmtRunName" : {
1099
+ "nodetype" : "column",
1100
+ "moduleName" : "SYSAPPL-MIB",
1101
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.7",
1102
+ "status" : "current",
1103
+ "syntax" : {
1104
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "LongUtf8String"},
1105
+ },
1106
+ "access" : "readonly",
1107
+ "description" :
1108
+ """The full path and filename of the process.
1109
+ For example, '/opt/MYYpkg/bin/myyproc' would
1110
+ be returned for process 'myyproc' whose execution
1111
+ path is '/opt/MYYpkg/bin/myyproc'.""",
1112
+ }, # column
1113
+ "sysApplElmtRunParameters" : {
1114
+ "nodetype" : "column",
1115
+ "moduleName" : "SYSAPPL-MIB",
1116
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.8",
1117
+ "status" : "current",
1118
+ "syntax" : {
1119
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
1120
+ },
1121
+ "access" : "readonly",
1122
+ "description" :
1123
+ """The starting parameters for the process.""",
1124
+ }, # column
1125
+ "sysApplElmtRunCPU" : {
1126
+ "nodetype" : "column",
1127
+ "moduleName" : "SYSAPPL-MIB",
1128
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.9",
1129
+ "status" : "current",
1130
+ "syntax" : {
1131
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1132
+ },
1133
+ "access" : "readonly",
1134
+ "description" :
1135
+ """The number of centi-seconds of the total system's
1136
+ CPU resources consumed by this process. Note that
1137
+ on a multi-processor system, this value may
1138
+ have been incremented by more than one centi-second
1139
+ in one centi-second of real (wall clock) time.""",
1140
+ }, # column
1141
+ "sysApplElmtRunMemory" : {
1142
+ "nodetype" : "column",
1143
+ "moduleName" : "SYSAPPL-MIB",
1144
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.10",
1145
+ "status" : "current",
1146
+ "syntax" : {
1147
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1148
+ },
1149
+ "access" : "readonly",
1150
+ "units" : "Kbytes",
1151
+ "description" :
1152
+ """The total amount of real system memory measured in
1153
+ Kbytes currently allocated to this process.""",
1154
+ }, # column
1155
+ "sysApplElmtRunNumFiles" : {
1156
+ "nodetype" : "column",
1157
+ "moduleName" : "SYSAPPL-MIB",
1158
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.11",
1159
+ "status" : "current",
1160
+ "syntax" : {
1161
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1162
+ },
1163
+ "access" : "readonly",
1164
+ "description" :
1165
+ """The number of regular files currently open by the
1166
+ process. Transport connections (sockets)
1167
+ should NOT be included in the calculation of
1168
+ this value, nor should operating system specific
1169
+ special file types.""",
1170
+ }, # column
1171
+ "sysApplElmtRunUser" : {
1172
+ "nodetype" : "column",
1173
+ "moduleName" : "SYSAPPL-MIB",
1174
+ "oid" : "1.3.6.1.2.1.54.1.2.3.1.12",
1175
+ "status" : "current",
1176
+ "syntax" : {
1177
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
1178
+ },
1179
+ "access" : "readonly",
1180
+ "description" :
1181
+ """The process owner's login name (e.g. root).""",
1182
+ }, # column
1183
+ "sysApplElmtPastRunTable" : {
1184
+ "nodetype" : "table",
1185
+ "moduleName" : "SYSAPPL-MIB",
1186
+ "oid" : "1.3.6.1.2.1.54.1.2.4",
1187
+ "status" : "current",
1188
+ "description" :
1189
+ """The table describes the processes which have previously
1190
+ executed on the host system as part of an application.
1191
+ Each entry represents a process which has previously
1192
+ executed and is associated with the invoked application
1193
+ of which it was a part. Because an invoked application
1194
+ may involve more than one executable, it is possible
1195
+ to have multiple entries in this table for
1196
+ each application invocation. Entries are added
1197
+ to this table when the corresponding process in the
1198
+ sysApplElmtRun Table terminates.
1199
+
1200
+ Entries remain in this table until they are aged out when
1201
+ either the number of entries in the table reaches a
1202
+ maximum as determined by sysApplElmtPastRunMaxRows, or
1203
+ when an entry has aged to exceed a time limit as set by
1204
+ sysApplElmtPastRunTblTimeLimit. When aging out entries,
1205
+ the oldest entry, as determined by the value of
1206
+ sysApplElmtPastRunTimeEnded, will be removed first.
1207
+
1208
+ The table is indexed by sysApplInstallPkgIndex (from the
1209
+ sysApplInstallPkgTable), sysApplElmtPastRunInvocID,
1210
+ and sysApplElmtPastRunIndex to make it easy to locate all
1211
+ previously executed processes of a particular invoked
1212
+ application that has been installed on the system.""",
1213
+ }, # table
1214
+ "sysApplElmtPastRunEntry" : {
1215
+ "nodetype" : "row",
1216
+ "moduleName" : "SYSAPPL-MIB",
1217
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1",
1218
+ "status" : "current",
1219
+ "linkage" : [
1220
+ "sysApplInstallPkgIndex",
1221
+ "sysApplElmtPastRunInvocID",
1222
+ "sysApplElmtPastRunIndex",
1223
+ ],
1224
+ "description" :
1225
+ """The logical row describing a process which was
1226
+ previously executed on this host as part of an
1227
+ installed application. The entry is basically copied
1228
+ from the sysApplElmtRunTable when the process
1229
+ terminates. Hence, the entry's value for
1230
+ sysApplElmtPastRunIndex is the same as its value
1231
+ was for sysApplElmtRunIndex. Note carefully: only those
1232
+ processes which could be associated with an
1233
+ identified application are included in this table.""",
1234
+ }, # row
1235
+ "sysApplElmtPastRunInvocID" : {
1236
+ "nodetype" : "column",
1237
+ "moduleName" : "SYSAPPL-MIB",
1238
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.1",
1239
+ "status" : "current",
1240
+ "syntax" : {
1241
+ "type" : {
1242
+ "basetype" : "Unsigned32",
1243
+ "ranges" : [
1244
+ {
1245
+ "min" : "1",
1246
+ "max" : "4294967295"
1247
+ },
1248
+ ],
1249
+ "range" : {
1250
+ "min" : "1",
1251
+ "max" : "4294967295"
1252
+ },
1253
+ },
1254
+ },
1255
+ "access" : "noaccess",
1256
+ "description" :
1257
+ """Part of the index for this table, this value
1258
+ identifies the invocation of an application of which
1259
+ the process represented by this entry was a part.
1260
+ The value of this object is the same value as the
1261
+ sysApplRunIndex for the corresponding application
1262
+ invocation in the sysApplRunTable. If the invoked
1263
+ application as a whole has terminated, it will be the
1264
+ same as the sysApplPastRunIndex.""",
1265
+ }, # column
1266
+ "sysApplElmtPastRunIndex" : {
1267
+ "nodetype" : "column",
1268
+ "moduleName" : "SYSAPPL-MIB",
1269
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.2",
1270
+ "status" : "current",
1271
+ "syntax" : {
1272
+ "type" : {
1273
+ "basetype" : "Unsigned32",
1274
+ "ranges" : [
1275
+ {
1276
+ "min" : "0",
1277
+ "max" : "4294967295"
1278
+ },
1279
+ ],
1280
+ "range" : {
1281
+ "min" : "0",
1282
+ "max" : "4294967295"
1283
+ },
1284
+ },
1285
+ },
1286
+ "access" : "noaccess",
1287
+ "description" :
1288
+ """Part of the index for this table. An integer
1289
+ assigned by the agent equal to the corresponding
1290
+ sysApplElmtRunIndex which was removed from the
1291
+ sysApplElmtRunTable and moved to this table
1292
+ when the element terminated.
1293
+
1294
+ Note: entries in this table are indexed by
1295
+ sysApplElmtPastRunInvocID, sysApplElmtPastRunIndex.
1296
+ The possibility exists, though unlikely, of a
1297
+ collision occurring by a new entry which was run
1298
+ by the same invoked application (InvocID), and
1299
+ was assigned the same process identification number
1300
+ (ElmtRunIndex) as an element which was previously
1301
+ run by the same invoked application.
1302
+
1303
+ Should this situation occur, the new entry replaces
1304
+ the old entry.
1305
+
1306
+ See Section: 'Implementation Issues -
1307
+ sysApplElmtPastRunTable Entry Collisions' for the
1308
+ conditions that would have to occur in order for a
1309
+ collision to occur.""",
1310
+ }, # column
1311
+ "sysApplElmtPastRunInstallID" : {
1312
+ "nodetype" : "column",
1313
+ "moduleName" : "SYSAPPL-MIB",
1314
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.3",
1315
+ "status" : "current",
1316
+ "syntax" : {
1317
+ "type" : {
1318
+ "basetype" : "Unsigned32",
1319
+ "ranges" : [
1320
+ {
1321
+ "min" : "1",
1322
+ "max" : "4294967295"
1323
+ },
1324
+ ],
1325
+ "range" : {
1326
+ "min" : "1",
1327
+ "max" : "4294967295"
1328
+ },
1329
+ },
1330
+ },
1331
+ "access" : "readonly",
1332
+ "description" :
1333
+ """The index into the installed element table. The
1334
+ value of this object is the same value as the
1335
+ sysApplInstallElmtIndex for the application element
1336
+ of which this entry represents a previously executed
1337
+ process.""",
1338
+ }, # column
1339
+ "sysApplElmtPastRunTimeStarted" : {
1340
+ "nodetype" : "column",
1341
+ "moduleName" : "SYSAPPL-MIB",
1342
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.4",
1343
+ "status" : "current",
1344
+ "syntax" : {
1345
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1346
+ },
1347
+ "access" : "readonly",
1348
+ "description" :
1349
+ """The time the process was started.""",
1350
+ }, # column
1351
+ "sysApplElmtPastRunTimeEnded" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "SYSAPPL-MIB",
1354
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.5",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1358
+ },
1359
+ "access" : "readonly",
1360
+ "description" :
1361
+ """The time the process ended.""",
1362
+ }, # column
1363
+ "sysApplElmtPastRunName" : {
1364
+ "nodetype" : "column",
1365
+ "moduleName" : "SYSAPPL-MIB",
1366
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.6",
1367
+ "status" : "current",
1368
+ "syntax" : {
1369
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "LongUtf8String"},
1370
+ },
1371
+ "access" : "readonly",
1372
+ "description" :
1373
+ """The full path and filename of the process.
1374
+ For example, '/opt/MYYpkg/bin/myyproc' would
1375
+ be returned for process 'myyproc' whose execution
1376
+ path was '/opt/MYYpkg/bin/myyproc'.""",
1377
+ }, # column
1378
+ "sysApplElmtPastRunParameters" : {
1379
+ "nodetype" : "column",
1380
+ "moduleName" : "SYSAPPL-MIB",
1381
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.7",
1382
+ "status" : "current",
1383
+ "syntax" : {
1384
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
1385
+ },
1386
+ "access" : "readonly",
1387
+ "description" :
1388
+ """The starting parameters for the process.""",
1389
+ }, # column
1390
+ "sysApplElmtPastRunCPU" : {
1391
+ "nodetype" : "column",
1392
+ "moduleName" : "SYSAPPL-MIB",
1393
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.8",
1394
+ "status" : "current",
1395
+ "syntax" : {
1396
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1397
+ },
1398
+ "access" : "readonly",
1399
+ "description" :
1400
+ """The last known number of centi-seconds of the total
1401
+ system's CPU resources consumed by this process.
1402
+ Note that on a multi-processor system, this value may
1403
+ increment by more than one centi-second in one
1404
+ centi-second of real (wall clock) time.""",
1405
+ }, # column
1406
+ "sysApplElmtPastRunMemory" : {
1407
+ "nodetype" : "column",
1408
+ "moduleName" : "SYSAPPL-MIB",
1409
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.9",
1410
+ "status" : "current",
1411
+ "syntax" : {
1412
+ "type" : {
1413
+ "basetype" : "Unsigned32",
1414
+ "ranges" : [
1415
+ {
1416
+ "min" : "0",
1417
+ "max" : "4294967295"
1418
+ },
1419
+ ],
1420
+ "range" : {
1421
+ "min" : "0",
1422
+ "max" : "4294967295"
1423
+ },
1424
+ },
1425
+ },
1426
+ "access" : "readonly",
1427
+ "units" : "Kbytes",
1428
+ "description" :
1429
+ """The last known total amount of real system memory
1430
+ measured in Kbytes allocated to this process before it
1431
+ terminated.""",
1432
+ }, # column
1433
+ "sysApplElmtPastRunNumFiles" : {
1434
+ "nodetype" : "column",
1435
+ "moduleName" : "SYSAPPL-MIB",
1436
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.10",
1437
+ "status" : "current",
1438
+ "syntax" : {
1439
+ "type" : {
1440
+ "basetype" : "Unsigned32",
1441
+ "ranges" : [
1442
+ {
1443
+ "min" : "0",
1444
+ "max" : "4294967295"
1445
+ },
1446
+ ],
1447
+ "range" : {
1448
+ "min" : "0",
1449
+ "max" : "4294967295"
1450
+ },
1451
+ },
1452
+ },
1453
+ "access" : "readonly",
1454
+ "description" :
1455
+ """The last known number of files open by the
1456
+ process before it terminated. Transport
1457
+ connections (sockets) should NOT be included in
1458
+ the calculation of this value.""",
1459
+ }, # column
1460
+ "sysApplElmtPastRunUser" : {
1461
+ "nodetype" : "column",
1462
+ "moduleName" : "SYSAPPL-MIB",
1463
+ "oid" : "1.3.6.1.2.1.54.1.2.4.1.11",
1464
+ "status" : "current",
1465
+ "syntax" : {
1466
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
1467
+ },
1468
+ "access" : "readonly",
1469
+ "description" :
1470
+ """The process owner's login name (e.g. root).""",
1471
+ }, # column
1472
+ "sysApplPastRunMaxRows" : {
1473
+ "nodetype" : "scalar",
1474
+ "moduleName" : "SYSAPPL-MIB",
1475
+ "oid" : "1.3.6.1.2.1.54.1.2.5",
1476
+ "status" : "current",
1477
+ "syntax" : {
1478
+ "type" : {
1479
+ "basetype" : "Unsigned32",
1480
+ "ranges" : [
1481
+ {
1482
+ "min" : "0",
1483
+ "max" : "4294967295"
1484
+ },
1485
+ ],
1486
+ "range" : {
1487
+ "min" : "0",
1488
+ "max" : "4294967295"
1489
+ },
1490
+ },
1491
+ },
1492
+ "access" : "readwrite",
1493
+ "default" : "500",
1494
+ "description" :
1495
+ """The maximum number of entries allowed in the
1496
+ sysApplPastRunTable. Once the number of rows in
1497
+ the sysApplPastRunTable reaches this value, the
1498
+ management subsystem will remove the oldest entry
1499
+ in the table to make room for the new entry to be added.
1500
+ Entries will be removed on the basis of oldest
1501
+ sysApplPastRunTimeEnded value first.
1502
+
1503
+ This object may be used to control the amount of
1504
+ system resources that can used for sysApplPastRunTable
1505
+ entries. A conforming implementation should attempt
1506
+ to support the default value, however, a lesser value
1507
+ may be necessary due to implementation-dependent issues
1508
+ and resource availability.""",
1509
+ }, # scalar
1510
+ "sysApplPastRunTableRemItems" : {
1511
+ "nodetype" : "scalar",
1512
+ "moduleName" : "SYSAPPL-MIB",
1513
+ "oid" : "1.3.6.1.2.1.54.1.2.6",
1514
+ "status" : "current",
1515
+ "syntax" : {
1516
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1517
+ },
1518
+ "access" : "readonly",
1519
+ "description" :
1520
+ """A counter of the number of entries removed from
1521
+ the sysApplPastRunTable because of table size limitations
1522
+ as set in sysApplPastRunMaxRows. This counter is the
1523
+ number of entries the management subsystem has had to
1524
+ remove in order to make room for new entries (so as not
1525
+ to exceed the limit set by sysApplPastRunMaxRows) since
1526
+ the last initialization of the management subsystem.""",
1527
+ }, # scalar
1528
+ "sysApplPastRunTblTimeLimit" : {
1529
+ "nodetype" : "scalar",
1530
+ "moduleName" : "SYSAPPL-MIB",
1531
+ "oid" : "1.3.6.1.2.1.54.1.2.7",
1532
+ "status" : "current",
1533
+ "syntax" : {
1534
+ "type" : {
1535
+ "basetype" : "Unsigned32",
1536
+ "ranges" : [
1537
+ {
1538
+ "min" : "0",
1539
+ "max" : "4294967295"
1540
+ },
1541
+ ],
1542
+ "range" : {
1543
+ "min" : "0",
1544
+ "max" : "4294967295"
1545
+ },
1546
+ },
1547
+ },
1548
+ "access" : "readwrite",
1549
+ "default" : "7200",
1550
+ "units" : "seconds",
1551
+ "description" :
1552
+ """The maximum time in seconds which an entry in the
1553
+ sysApplPastRunTable may exist before it is removed.
1554
+ Any entry that is older than this value will be
1555
+ removed (aged out) from the table.
1556
+
1557
+ Note that an entry may be aged out prior to reaching
1558
+ this time limit if it is the oldest entry in the
1559
+ table and must be removed to make space for a new
1560
+ entry so as to not exceed sysApplPastRunMaxRows.""",
1561
+ }, # scalar
1562
+ "sysApplElemPastRunMaxRows" : {
1563
+ "nodetype" : "scalar",
1564
+ "moduleName" : "SYSAPPL-MIB",
1565
+ "oid" : "1.3.6.1.2.1.54.1.2.8",
1566
+ "status" : "current",
1567
+ "syntax" : {
1568
+ "type" : {
1569
+ "basetype" : "Unsigned32",
1570
+ "ranges" : [
1571
+ {
1572
+ "min" : "0",
1573
+ "max" : "4294967295"
1574
+ },
1575
+ ],
1576
+ "range" : {
1577
+ "min" : "0",
1578
+ "max" : "4294967295"
1579
+ },
1580
+ },
1581
+ },
1582
+ "access" : "readwrite",
1583
+ "default" : "500",
1584
+ "description" :
1585
+ """The maximum number of entries allowed in the
1586
+ sysApplElmtPastRunTable. Once the number of rows in
1587
+ the sysApplElmtPastRunTable reaches this value,
1588
+ the management subsystem will remove the oldest entry
1589
+ to make room for the new entry to be added. Entries
1590
+ will be removed on the basis of oldest
1591
+ sysApplElmtPastRunTimeEnded value first.
1592
+ This object may be used to control the amount of
1593
+ system resources that can used for sysApplElemPastRunTable
1594
+ entries. A conforming implementation should attempt
1595
+ to support the default value, however, a lesser value
1596
+ may be necessary due to implementation-dependent issues
1597
+ and resource availability.""",
1598
+ }, # scalar
1599
+ "sysApplElemPastRunTableRemItems" : {
1600
+ "nodetype" : "scalar",
1601
+ "moduleName" : "SYSAPPL-MIB",
1602
+ "oid" : "1.3.6.1.2.1.54.1.2.9",
1603
+ "status" : "current",
1604
+ "syntax" : {
1605
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1606
+ },
1607
+ "access" : "readonly",
1608
+ "description" :
1609
+ """A counter of the number of entries removed from the
1610
+ sysApplElemPastRunTable because of table size limitations
1611
+ as set in sysApplElemPastRunMaxRows. This counter is the
1612
+ number of entries the management subsystem has had to
1613
+ remove in order to make room for new entries (so as not
1614
+ to exceed the limit set by sysApplElemPastRunMaxRows) since
1615
+ the last initialization of the management subsystem.""",
1616
+ }, # scalar
1617
+ "sysApplElemPastRunTblTimeLimit" : {
1618
+ "nodetype" : "scalar",
1619
+ "moduleName" : "SYSAPPL-MIB",
1620
+ "oid" : "1.3.6.1.2.1.54.1.2.10",
1621
+ "status" : "current",
1622
+ "syntax" : {
1623
+ "type" : {
1624
+ "basetype" : "Unsigned32",
1625
+ "ranges" : [
1626
+ {
1627
+ "min" : "0",
1628
+ "max" : "4294967295"
1629
+ },
1630
+ ],
1631
+ "range" : {
1632
+ "min" : "0",
1633
+ "max" : "4294967295"
1634
+ },
1635
+ },
1636
+ },
1637
+ "access" : "readwrite",
1638
+ "default" : "7200",
1639
+ "units" : "seconds",
1640
+ "description" :
1641
+ """The maximum time in seconds which an entry in the
1642
+ sysApplElemPastRunTable may exist before it is removed.
1643
+ Any entry that is older than this value will be
1644
+ removed (aged out) from the table.
1645
+
1646
+ Note that an entry may be aged out prior to reaching
1647
+ this time limit if it is the oldest entry in the
1648
+ table and must be removed to make space for a new
1649
+ entry so as to not exceed sysApplElemPastRunMaxRows.""",
1650
+ }, # scalar
1651
+ "sysApplAgentPollInterval" : {
1652
+ "nodetype" : "scalar",
1653
+ "moduleName" : "SYSAPPL-MIB",
1654
+ "oid" : "1.3.6.1.2.1.54.1.2.11",
1655
+ "status" : "current",
1656
+ "syntax" : {
1657
+ "type" : {
1658
+ "basetype" : "Unsigned32",
1659
+ "ranges" : [
1660
+ {
1661
+ "min" : "0",
1662
+ "max" : "4294967295"
1663
+ },
1664
+ ],
1665
+ "range" : {
1666
+ "min" : "0",
1667
+ "max" : "4294967295"
1668
+ },
1669
+ },
1670
+ },
1671
+ "access" : "readwrite",
1672
+ "default" : "60",
1673
+ "units" : "seconds",
1674
+ "description" :
1675
+ """The minimum interval in seconds that the management
1676
+ subsystem implementing this MIB will poll the status
1677
+ of the managed resources. Because of the non-trivial
1678
+ effort involved in polling the managed resources,
1679
+ and because the method for obtaining the status of
1680
+ the managed resources is implementation-dependent,
1681
+ a conformant implementation may chose a lower bound
1682
+ greater than 0.
1683
+
1684
+ A value of 0 indicates that there is no delay
1685
+ in the passing of information from the managed
1686
+ resources to the agent.""",
1687
+ }, # scalar
1688
+ "sysApplMap" : {
1689
+ "nodetype" : "node",
1690
+ "moduleName" : "SYSAPPL-MIB",
1691
+ "oid" : "1.3.6.1.2.1.54.1.3",
1692
+ }, # node
1693
+ "sysApplMapTable" : {
1694
+ "nodetype" : "table",
1695
+ "moduleName" : "SYSAPPL-MIB",
1696
+ "oid" : "1.3.6.1.2.1.54.1.3.1",
1697
+ "status" : "current",
1698
+ "description" :
1699
+ """The sole purpose of this table is to provide a
1700
+ 'backwards' mapping so that, given a known
1701
+ sysApplElmtRunIndex (process identification number),
1702
+ the corresponding invoked application (sysApplRunIndex),
1703
+ installed element (sysApplInstallElmtIndex), and
1704
+ installed application package (sysApplInstallPkgIndex)
1705
+ can be quickly determined.
1706
+
1707
+ This table will contain one entry for each process
1708
+ that is currently executing on the system.
1709
+
1710
+ It is expected that management applications will use
1711
+ this mapping table by doing a 'GetNext' operation with
1712
+ the known process ID number (sysApplElmtRunIndex) as the
1713
+ partial instance identifier. Assuming that there is an
1714
+ entry for the process, the result should return a single
1715
+ columnar value, the sysApplMapInstallPkgIndex, with the
1716
+ sysApplElmtRunIndex, sysApplRunIndex, and
1717
+ sysApplInstallElmtIndex contained in the instance identifier
1718
+ for the returned MIB object value.
1719
+
1720
+ NOTE: if the process can not be associated back to an
1721
+ invoked application installed on the system, then the
1722
+ value returned for the columnar value
1723
+ sysApplMapInstallPkgIndex will be '0' and the instance
1724
+ portion of the object-identifier will be the process ID
1725
+ number (sysApplElmtRunIndex) followed by 0.0.""",
1726
+ }, # table
1727
+ "sysApplMapEntry" : {
1728
+ "nodetype" : "row",
1729
+ "moduleName" : "SYSAPPL-MIB",
1730
+ "oid" : "1.3.6.1.2.1.54.1.3.1.1",
1731
+ "status" : "current",
1732
+ "linkage" : [
1733
+ "sysApplElmtRunIndex",
1734
+ "sysApplElmtRunInvocID",
1735
+ "sysApplMapInstallElmtIndex",
1736
+ ],
1737
+ "description" :
1738
+ """A logical row representing a process currently running
1739
+ on the system. This entry provides the index mapping from
1740
+ process identifier, back to the invoked application,
1741
+ installed element, and finally, the installed application
1742
+ package. The entry includes only one accessible columnar
1743
+ object, the sysApplMapInstallPkgIndex, but the
1744
+ invoked application and installed element can be
1745
+ determined from the instance identifier since they form
1746
+ part of the index clause.""",
1747
+ }, # row
1748
+ "sysApplMapInstallElmtIndex" : {
1749
+ "nodetype" : "column",
1750
+ "moduleName" : "SYSAPPL-MIB",
1751
+ "oid" : "1.3.6.1.2.1.54.1.3.1.1.1",
1752
+ "status" : "current",
1753
+ "syntax" : {
1754
+ "type" : {
1755
+ "basetype" : "Unsigned32",
1756
+ "ranges" : [
1757
+ {
1758
+ "min" : "0",
1759
+ "max" : "4294967295"
1760
+ },
1761
+ ],
1762
+ "range" : {
1763
+ "min" : "0",
1764
+ "max" : "4294967295"
1765
+ },
1766
+ },
1767
+ },
1768
+ "access" : "noaccess",
1769
+ "description" :
1770
+ """The index into the sysApplInstallElmtTable. The
1771
+ value of this object is the same value as the
1772
+ sysApplInstallElmtIndex for the application element
1773
+ of which this entry represents a running instance.
1774
+ If this process cannot be associated to an installed
1775
+ executable, the value should be '0'.""",
1776
+ }, # column
1777
+ "sysApplMapInstallPkgIndex" : {
1778
+ "nodetype" : "column",
1779
+ "moduleName" : "SYSAPPL-MIB",
1780
+ "oid" : "1.3.6.1.2.1.54.1.3.1.1.2",
1781
+ "status" : "current",
1782
+ "syntax" : {
1783
+ "type" : {
1784
+ "basetype" : "Unsigned32",
1785
+ "ranges" : [
1786
+ {
1787
+ "min" : "0",
1788
+ "max" : "4294967295"
1789
+ },
1790
+ ],
1791
+ "range" : {
1792
+ "min" : "0",
1793
+ "max" : "4294967295"
1794
+ },
1795
+ },
1796
+ },
1797
+ "access" : "readonly",
1798
+ "description" :
1799
+ """The value of this object identifies the installed
1800
+ software package for the application of which this
1801
+ process is a part. Provided that the process's 'parent'
1802
+ application can be determined, the value of this object
1803
+ is the same value as the sysApplInstallPkgIndex for the
1804
+ entry in the sysApplInstallPkgTable that corresponds
1805
+ to the installed application of which this process
1806
+ is a part.
1807
+
1808
+ If, however, the 'parent' application cannot be
1809
+ determined, (for example the process is not part
1810
+ of a particular installed application), the value
1811
+ for this object is then '0', signifying that this
1812
+ process cannot be related back to an application,
1813
+ and in turn, an installed software package.""",
1814
+ }, # column
1815
+ "sysApplNotifications" : {
1816
+ "nodetype" : "node",
1817
+ "moduleName" : "SYSAPPL-MIB",
1818
+ "oid" : "1.3.6.1.2.1.54.2",
1819
+ }, # node
1820
+ "sysApplConformance" : {
1821
+ "nodetype" : "node",
1822
+ "moduleName" : "SYSAPPL-MIB",
1823
+ "oid" : "1.3.6.1.2.1.54.3",
1824
+ }, # node
1825
+ "sysApplMIBCompliances" : {
1826
+ "nodetype" : "node",
1827
+ "moduleName" : "SYSAPPL-MIB",
1828
+ "oid" : "1.3.6.1.2.1.54.3.1",
1829
+ }, # node
1830
+ "sysApplMIBGroups" : {
1831
+ "nodetype" : "node",
1832
+ "moduleName" : "SYSAPPL-MIB",
1833
+ "oid" : "1.3.6.1.2.1.54.3.2",
1834
+ }, # node
1835
+ }, # nodes
1836
+
1837
+ "groups" : {
1838
+ "sysApplInstalledGroup" : {
1839
+ "nodetype" : "group",
1840
+ "moduleName" : "SYSAPPL-MIB",
1841
+ "oid" : "1.3.6.1.2.1.54.3.2.1",
1842
+ "status" : "current",
1843
+ "members" : {
1844
+ "sysApplInstallPkgManufacturer" : {
1845
+ "nodetype" : "member",
1846
+ "module" : "SYSAPPL-MIB"
1847
+ },
1848
+ "sysApplInstallPkgProductName" : {
1849
+ "nodetype" : "member",
1850
+ "module" : "SYSAPPL-MIB"
1851
+ },
1852
+ "sysApplInstallPkgVersion" : {
1853
+ "nodetype" : "member",
1854
+ "module" : "SYSAPPL-MIB"
1855
+ },
1856
+ "sysApplInstallPkgSerialNumber" : {
1857
+ "nodetype" : "member",
1858
+ "module" : "SYSAPPL-MIB"
1859
+ },
1860
+ "sysApplInstallPkgDate" : {
1861
+ "nodetype" : "member",
1862
+ "module" : "SYSAPPL-MIB"
1863
+ },
1864
+ "sysApplInstallPkgLocation" : {
1865
+ "nodetype" : "member",
1866
+ "module" : "SYSAPPL-MIB"
1867
+ },
1868
+ "sysApplInstallElmtName" : {
1869
+ "nodetype" : "member",
1870
+ "module" : "SYSAPPL-MIB"
1871
+ },
1872
+ "sysApplInstallElmtType" : {
1873
+ "nodetype" : "member",
1874
+ "module" : "SYSAPPL-MIB"
1875
+ },
1876
+ "sysApplInstallElmtDate" : {
1877
+ "nodetype" : "member",
1878
+ "module" : "SYSAPPL-MIB"
1879
+ },
1880
+ "sysApplInstallElmtPath" : {
1881
+ "nodetype" : "member",
1882
+ "module" : "SYSAPPL-MIB"
1883
+ },
1884
+ "sysApplInstallElmtSizeHigh" : {
1885
+ "nodetype" : "member",
1886
+ "module" : "SYSAPPL-MIB"
1887
+ },
1888
+ "sysApplInstallElmtSizeLow" : {
1889
+ "nodetype" : "member",
1890
+ "module" : "SYSAPPL-MIB"
1891
+ },
1892
+ "sysApplInstallElmtRole" : {
1893
+ "nodetype" : "member",
1894
+ "module" : "SYSAPPL-MIB"
1895
+ },
1896
+ "sysApplInstallElmtModifyDate" : {
1897
+ "nodetype" : "member",
1898
+ "module" : "SYSAPPL-MIB"
1899
+ },
1900
+ "sysApplInstallElmtCurSizeHigh" : {
1901
+ "nodetype" : "member",
1902
+ "module" : "SYSAPPL-MIB"
1903
+ },
1904
+ "sysApplInstallElmtCurSizeLow" : {
1905
+ "nodetype" : "member",
1906
+ "module" : "SYSAPPL-MIB"
1907
+ },
1908
+ }, # members
1909
+ "description" :
1910
+ """The system application installed group contains
1911
+ information about applications and their constituent
1912
+ components which have been installed on the host system.""",
1913
+ }, # group
1914
+ "sysApplRunGroup" : {
1915
+ "nodetype" : "group",
1916
+ "moduleName" : "SYSAPPL-MIB",
1917
+ "oid" : "1.3.6.1.2.1.54.3.2.2",
1918
+ "status" : "current",
1919
+ "members" : {
1920
+ "sysApplRunStarted" : {
1921
+ "nodetype" : "member",
1922
+ "module" : "SYSAPPL-MIB"
1923
+ },
1924
+ "sysApplRunCurrentState" : {
1925
+ "nodetype" : "member",
1926
+ "module" : "SYSAPPL-MIB"
1927
+ },
1928
+ "sysApplPastRunStarted" : {
1929
+ "nodetype" : "member",
1930
+ "module" : "SYSAPPL-MIB"
1931
+ },
1932
+ "sysApplPastRunExitState" : {
1933
+ "nodetype" : "member",
1934
+ "module" : "SYSAPPL-MIB"
1935
+ },
1936
+ "sysApplPastRunTimeEnded" : {
1937
+ "nodetype" : "member",
1938
+ "module" : "SYSAPPL-MIB"
1939
+ },
1940
+ "sysApplElmtRunInstallID" : {
1941
+ "nodetype" : "member",
1942
+ "module" : "SYSAPPL-MIB"
1943
+ },
1944
+ "sysApplElmtRunTimeStarted" : {
1945
+ "nodetype" : "member",
1946
+ "module" : "SYSAPPL-MIB"
1947
+ },
1948
+ "sysApplElmtRunState" : {
1949
+ "nodetype" : "member",
1950
+ "module" : "SYSAPPL-MIB"
1951
+ },
1952
+ "sysApplElmtRunName" : {
1953
+ "nodetype" : "member",
1954
+ "module" : "SYSAPPL-MIB"
1955
+ },
1956
+ "sysApplElmtRunParameters" : {
1957
+ "nodetype" : "member",
1958
+ "module" : "SYSAPPL-MIB"
1959
+ },
1960
+ "sysApplElmtRunCPU" : {
1961
+ "nodetype" : "member",
1962
+ "module" : "SYSAPPL-MIB"
1963
+ },
1964
+ "sysApplElmtRunMemory" : {
1965
+ "nodetype" : "member",
1966
+ "module" : "SYSAPPL-MIB"
1967
+ },
1968
+ "sysApplElmtRunNumFiles" : {
1969
+ "nodetype" : "member",
1970
+ "module" : "SYSAPPL-MIB"
1971
+ },
1972
+ "sysApplElmtRunUser" : {
1973
+ "nodetype" : "member",
1974
+ "module" : "SYSAPPL-MIB"
1975
+ },
1976
+ "sysApplElmtPastRunInstallID" : {
1977
+ "nodetype" : "member",
1978
+ "module" : "SYSAPPL-MIB"
1979
+ },
1980
+ "sysApplElmtPastRunTimeStarted" : {
1981
+ "nodetype" : "member",
1982
+ "module" : "SYSAPPL-MIB"
1983
+ },
1984
+ "sysApplElmtPastRunTimeEnded" : {
1985
+ "nodetype" : "member",
1986
+ "module" : "SYSAPPL-MIB"
1987
+ },
1988
+ "sysApplElmtPastRunName" : {
1989
+ "nodetype" : "member",
1990
+ "module" : "SYSAPPL-MIB"
1991
+ },
1992
+ "sysApplElmtPastRunParameters" : {
1993
+ "nodetype" : "member",
1994
+ "module" : "SYSAPPL-MIB"
1995
+ },
1996
+ "sysApplElmtPastRunCPU" : {
1997
+ "nodetype" : "member",
1998
+ "module" : "SYSAPPL-MIB"
1999
+ },
2000
+ "sysApplElmtPastRunMemory" : {
2001
+ "nodetype" : "member",
2002
+ "module" : "SYSAPPL-MIB"
2003
+ },
2004
+ "sysApplElmtPastRunNumFiles" : {
2005
+ "nodetype" : "member",
2006
+ "module" : "SYSAPPL-MIB"
2007
+ },
2008
+ "sysApplElmtPastRunUser" : {
2009
+ "nodetype" : "member",
2010
+ "module" : "SYSAPPL-MIB"
2011
+ },
2012
+ "sysApplPastRunMaxRows" : {
2013
+ "nodetype" : "member",
2014
+ "module" : "SYSAPPL-MIB"
2015
+ },
2016
+ "sysApplPastRunTableRemItems" : {
2017
+ "nodetype" : "member",
2018
+ "module" : "SYSAPPL-MIB"
2019
+ },
2020
+ "sysApplPastRunTblTimeLimit" : {
2021
+ "nodetype" : "member",
2022
+ "module" : "SYSAPPL-MIB"
2023
+ },
2024
+ "sysApplElemPastRunMaxRows" : {
2025
+ "nodetype" : "member",
2026
+ "module" : "SYSAPPL-MIB"
2027
+ },
2028
+ "sysApplElemPastRunTableRemItems" : {
2029
+ "nodetype" : "member",
2030
+ "module" : "SYSAPPL-MIB"
2031
+ },
2032
+ "sysApplElemPastRunTblTimeLimit" : {
2033
+ "nodetype" : "member",
2034
+ "module" : "SYSAPPL-MIB"
2035
+ },
2036
+ "sysApplAgentPollInterval" : {
2037
+ "nodetype" : "member",
2038
+ "module" : "SYSAPPL-MIB"
2039
+ },
2040
+ }, # members
2041
+ "description" :
2042
+ """The system application run group contains information
2043
+ about applications and associated elements which have
2044
+ run or are currently running on the host system.""",
2045
+ }, # group
2046
+ "sysApplMapGroup" : {
2047
+ "nodetype" : "group",
2048
+ "moduleName" : "SYSAPPL-MIB",
2049
+ "oid" : "1.3.6.1.2.1.54.3.2.3",
2050
+ "status" : "current",
2051
+ "members" : {
2052
+ "sysApplMapInstallPkgIndex" : {
2053
+ "nodetype" : "member",
2054
+ "module" : "SYSAPPL-MIB"
2055
+ },
2056
+ }, # members
2057
+ "description" :
2058
+ """The Map Group contains a single table, sysApplMapTable,
2059
+ that provides a backwards mapping for determining the
2060
+ invoked application, installed element, and installed
2061
+ application package given a known process identification
2062
+ number.""",
2063
+ }, # group
2064
+ }, # groups
2065
+
2066
+ "compliances" : {
2067
+ "sysApplMIBCompliance" : {
2068
+ "nodetype" : "compliance",
2069
+ "moduleName" : "SYSAPPL-MIB",
2070
+ "oid" : "1.3.6.1.2.1.54.3.1.1",
2071
+ "status" : "current",
2072
+ "description" :
2073
+ """Describes the requirements for conformance to
2074
+ the System Application MIB""",
2075
+ "requires" : {
2076
+ "sysApplInstalledGroup" : {
2077
+ "nodetype" : "mandatory",
2078
+ "module" : "SYSAPPL-MIB"
2079
+ },
2080
+ "sysApplRunGroup" : {
2081
+ "nodetype" : "mandatory",
2082
+ "module" : "SYSAPPL-MIB"
2083
+ },
2084
+ "sysApplMapGroup" : {
2085
+ "nodetype" : "mandatory",
2086
+ "module" : "SYSAPPL-MIB"
2087
+ },
2088
+ }, # requires
2089
+ }, # compliance
2090
+ }, # compliances
2091
+
2092
+ }