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,1935 @@
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 RDBMS-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RDBMS-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RDBMS-MIB",
11
+
12
+ "RDBMS-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RDBMSMIB Working Group""",
17
+ "contact" :
18
+ """ David Brower
19
+
20
+ Postal: The ASK Group, INGRES DBMS Development
21
+ 1080 Marina Village Parkway
22
+ Alameda, CA 94501
23
+ US
24
+
25
+ Tel: +1 510 748 3418
26
+ Fax: +1 510 748 2770
27
+
28
+ E-mail: daveb@ingres.com""",
29
+ "description" :
30
+ """The MIB module to describe objects for generic relational
31
+ databases.""",
32
+ "revisions" : (
33
+ {
34
+ "date" : "1994-06-15 06:55",
35
+ "description" :
36
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
37
+ },
38
+ ),
39
+ "identity node" : "rdbmsMIB",
40
+ },
41
+
42
+ "imports" : (
43
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
44
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
45
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
46
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
50
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
51
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
52
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
53
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
54
+ {"module" : "SNMPv2-TC", "name" : "AutonomousType"},
55
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "applIndex"},
56
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "applGroups"},
57
+ {"module" : "RFC1213-MIB", "name" : "mib-2"},
58
+ {"module" : "HOST-RESOURCES-MIB", "name" : "hrSystem"},
59
+ ),
60
+
61
+ "nodes" : {
62
+ "rdbmsMIB" : {
63
+ "nodetype" : "node",
64
+ "moduleName" : "RDBMS-MIB",
65
+ "oid" : "1.3.6.1.2.1.39",
66
+ "status" : "current",
67
+ }, # node
68
+ "rdbmsObjects" : {
69
+ "nodetype" : "node",
70
+ "moduleName" : "RDBMS-MIB",
71
+ "oid" : "1.3.6.1.2.1.39.1",
72
+ }, # node
73
+ "rdbmsDbTable" : {
74
+ "nodetype" : "table",
75
+ "moduleName" : "RDBMS-MIB",
76
+ "oid" : "1.3.6.1.2.1.39.1.1",
77
+ "status" : "current",
78
+ "description" :
79
+ """The table of databases installed on a system.""",
80
+ }, # table
81
+ "rdbmsDbEntry" : {
82
+ "nodetype" : "row",
83
+ "moduleName" : "RDBMS-MIB",
84
+ "oid" : "1.3.6.1.2.1.39.1.1.1",
85
+ "status" : "current",
86
+ "linkage" : [
87
+ "rdbmsDbIndex",
88
+ ],
89
+ "description" :
90
+ """An entry for a single database on the host. Whether a
91
+ particular database is represented by a row in rdbmsDbTable
92
+ may be dependent on the activity level of that database,
93
+ according to the product's implementation. An instance of
94
+ rdbmsRelState having the value active, other, or restricted
95
+ implies that an entry, corresponding to that instance, will
96
+ be present.""",
97
+ }, # row
98
+ "rdbmsDbIndex" : {
99
+ "nodetype" : "column",
100
+ "moduleName" : "RDBMS-MIB",
101
+ "oid" : "1.3.6.1.2.1.39.1.1.1.1",
102
+ "status" : "current",
103
+ "syntax" : {
104
+ "type" : {
105
+ "basetype" : "Integer32",
106
+ "ranges" : [
107
+ {
108
+ "min" : "1",
109
+ "max" : "2147483647"
110
+ },
111
+ ],
112
+ "range" : {
113
+ "min" : "1",
114
+ "max" : "2147483647"
115
+ },
116
+ },
117
+ },
118
+ "access" : "noaccess",
119
+ "description" :
120
+ """A numeric index, unique among all the databases from all
121
+ products on this host. This value is a surrogate for the
122
+ conceptually unique key, which is {PrivateMibOID,
123
+ databasename}""",
124
+ }, # column
125
+ "rdbmsDbPrivateMibOID" : {
126
+ "nodetype" : "column",
127
+ "moduleName" : "RDBMS-MIB",
128
+ "oid" : "1.3.6.1.2.1.39.1.1.1.2",
129
+ "status" : "current",
130
+ "syntax" : {
131
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
132
+ },
133
+ "access" : "readonly",
134
+ "description" :
135
+ """The authoritative identification for the private MIB for
136
+ this database, presumably based on the vendor, e.g., {
137
+ enterprises 111 <optional subidentifiers>} for Oracle
138
+ databases, {enterprises 757 <optional subidentifiers>} for
139
+ Ingres databases, { enterprises 897 <optional
140
+ subidentifiers>} for Sybase databases, etc.
141
+
142
+ If no OBJECT IDENTIFIER exists for the private MIB, attempts
143
+ to access this object will return noSuchName (SNMPv1)
144
+ or noSuchInstance (SNMPv2).""",
145
+ }, # column
146
+ "rdbmsDbVendorName" : {
147
+ "nodetype" : "column",
148
+ "moduleName" : "RDBMS-MIB",
149
+ "oid" : "1.3.6.1.2.1.39.1.1.1.3",
150
+ "status" : "current",
151
+ "syntax" : {
152
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
153
+ },
154
+ "access" : "readonly",
155
+ "description" :
156
+ """The name of the vendor whose RDBMS manages this database,
157
+ for informational purposes.""",
158
+ }, # column
159
+ "rdbmsDbName" : {
160
+ "nodetype" : "column",
161
+ "moduleName" : "RDBMS-MIB",
162
+ "oid" : "1.3.6.1.2.1.39.1.1.1.4",
163
+ "status" : "current",
164
+ "syntax" : {
165
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
166
+ },
167
+ "access" : "readonly",
168
+ "description" :
169
+ """The name of this database, in a product specific format. The
170
+ product may need to qualify the name in some way to resolve
171
+ conflicts if it is possible for a database name to be
172
+ duplicated on a host. It might be necessary to construct a
173
+ hierarchical name embedding the RDBMS instance/installation
174
+ on the host, and/or the owner of the database. For instance,
175
+ '/test-installation/database-owner/database-name'.""",
176
+ }, # column
177
+ "rdbmsDbContact" : {
178
+ "nodetype" : "column",
179
+ "moduleName" : "RDBMS-MIB",
180
+ "oid" : "1.3.6.1.2.1.39.1.1.1.5",
181
+ "status" : "current",
182
+ "syntax" : {
183
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
184
+ },
185
+ "access" : "readwrite",
186
+ "description" :
187
+ """The textual identification of the contact person for this
188
+ managed database, together with information on how to contact
189
+ this person.
190
+
191
+ Note: if there is no server associated with this database, an
192
+ agent may need to keep this in other persistent storage,
193
+ e.g., a configuration file.
194
+
195
+ Note that a compliant agent does not need to
196
+ allow write access to this object.""",
197
+ }, # column
198
+ "rdbmsDbInfoTable" : {
199
+ "nodetype" : "table",
200
+ "moduleName" : "RDBMS-MIB",
201
+ "oid" : "1.3.6.1.2.1.39.1.2",
202
+ "status" : "current",
203
+ "description" :
204
+ """The table of additional information about databases present
205
+ on the host.""",
206
+ }, # table
207
+ "rdbmsDbInfoEntry" : {
208
+ "nodetype" : "row",
209
+ "moduleName" : "RDBMS-MIB",
210
+ "oid" : "1.3.6.1.2.1.39.1.2.1",
211
+ "status" : "current",
212
+ "linkage" : [
213
+ "rdbmsDbIndex",
214
+ ],
215
+ "description" :
216
+ """Information that must be present if the database is actively
217
+ opened. If the database is not actively opened, then
218
+ attempts to access corresponding instances in this table may
219
+ result in either noSuchName (SNMPv1) or noSuchInstance
220
+ (SNMPv2). 'Actively opened' means at least one of the
221
+ rdbmsRelState entries for this database in the rdbmsRelTable
222
+ is active(2).""",
223
+ }, # row
224
+ "rdbmsDbInfoProductName" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "RDBMS-MIB",
227
+ "oid" : "1.3.6.1.2.1.39.1.2.1.1",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
231
+ },
232
+ "access" : "readonly",
233
+ "description" :
234
+ """The textual product name of the server that created or last
235
+ restructured this database. The format is product specific.""",
236
+ }, # column
237
+ "rdbmsDbInfoVersion" : {
238
+ "nodetype" : "column",
239
+ "moduleName" : "RDBMS-MIB",
240
+ "oid" : "1.3.6.1.2.1.39.1.2.1.2",
241
+ "status" : "current",
242
+ "syntax" : {
243
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
244
+ },
245
+ "access" : "readonly",
246
+ "description" :
247
+ """The version number of the server that created or last
248
+ restructured this database. The format is product specific.""",
249
+ }, # column
250
+ "rdbmsDbInfoSizeUnits" : {
251
+ "nodetype" : "column",
252
+ "moduleName" : "RDBMS-MIB",
253
+ "oid" : "1.3.6.1.2.1.39.1.2.1.3",
254
+ "status" : "current",
255
+ "syntax" : {
256
+ "type" : {
257
+ "basetype" : "Enumeration",
258
+ "bytes" : {
259
+ "nodetype" : "namednumber",
260
+ "number" : "1"
261
+ },
262
+ "kbytes" : {
263
+ "nodetype" : "namednumber",
264
+ "number" : "2"
265
+ },
266
+ "mbytes" : {
267
+ "nodetype" : "namednumber",
268
+ "number" : "3"
269
+ },
270
+ "gbytes" : {
271
+ "nodetype" : "namednumber",
272
+ "number" : "4"
273
+ },
274
+ "tbytes" : {
275
+ "nodetype" : "namednumber",
276
+ "number" : "5"
277
+ },
278
+ },
279
+ },
280
+ "access" : "readonly",
281
+ "description" :
282
+ """Identification of the units used to measure the size of this
283
+ database in rdbmsDbInfoSizeAllocated and rdbmsDbInfoSizeUsed.
284
+ bytes(1) indicates individual bytes, kbytes(2) indicates
285
+ units of kilobytes, mbytes(3) indicates units of megabytes,
286
+ gbytes(4) indicates units of gigabytes, and tbytes(5)
287
+ indicates units of terabytes. All are binary multiples -- 1K
288
+ = 1024. If writable, changes here are reflected in the get
289
+ values of the associated objects.""",
290
+ }, # column
291
+ "rdbmsDbInfoSizeAllocated" : {
292
+ "nodetype" : "column",
293
+ "moduleName" : "RDBMS-MIB",
294
+ "oid" : "1.3.6.1.2.1.39.1.2.1.4",
295
+ "status" : "current",
296
+ "syntax" : {
297
+ "type" : {
298
+ "basetype" : "Integer32",
299
+ "ranges" : [
300
+ {
301
+ "min" : "1",
302
+ "max" : "2147483647"
303
+ },
304
+ ],
305
+ "range" : {
306
+ "min" : "1",
307
+ "max" : "2147483647"
308
+ },
309
+ },
310
+ },
311
+ "access" : "readwrite",
312
+ "description" :
313
+ """The estimated size of this database (in
314
+ rdbmsDbInfoSizeUnits), which is the disk space that has been
315
+ allocated to it and is no longer available to users on this
316
+ host. rdbmsDbInfoSize does not necessarily indicate the
317
+ amount of space actually in use for database data. Some
318
+ databases may support extending allocated size, and others
319
+ may not.
320
+
321
+ Note that a compliant agent does not need to
322
+ allow write access to this object.""",
323
+ }, # column
324
+ "rdbmsDbInfoSizeUsed" : {
325
+ "nodetype" : "column",
326
+ "moduleName" : "RDBMS-MIB",
327
+ "oid" : "1.3.6.1.2.1.39.1.2.1.5",
328
+ "status" : "current",
329
+ "syntax" : {
330
+ "type" : {
331
+ "basetype" : "Integer32",
332
+ "ranges" : [
333
+ {
334
+ "min" : "1",
335
+ "max" : "2147483647"
336
+ },
337
+ ],
338
+ "range" : {
339
+ "min" : "1",
340
+ "max" : "2147483647"
341
+ },
342
+ },
343
+ },
344
+ "access" : "readonly",
345
+ "description" :
346
+ """The estimated size of this database, in rdbmsDbInfoSizeUnits,
347
+ which is actually in use for database data.""",
348
+ }, # column
349
+ "rdbmsDbInfoLastBackup" : {
350
+ "nodetype" : "column",
351
+ "moduleName" : "RDBMS-MIB",
352
+ "oid" : "1.3.6.1.2.1.39.1.2.1.6",
353
+ "status" : "current",
354
+ "syntax" : {
355
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
356
+ },
357
+ "access" : "readonly",
358
+ "description" :
359
+ """The date and time that the latest complete or partial backup
360
+ of the database was taken. If a database has never been
361
+ backed up, then attempts to access this object will
362
+ result in either noSuchName (SNMPv1) or noSuchInstance
363
+ (SNMPv2).""",
364
+ }, # column
365
+ "rdbmsDbParamTable" : {
366
+ "nodetype" : "table",
367
+ "moduleName" : "RDBMS-MIB",
368
+ "oid" : "1.3.6.1.2.1.39.1.3",
369
+ "status" : "current",
370
+ "description" :
371
+ """The table of configuration parameters for a database.
372
+ Entries should be populated according to the following
373
+ guidelines:
374
+ (1) The value should be specified through administrative
375
+ (human) intervention.
376
+ (2) It should be configured on a per-database basis.
377
+ (3) One of the following is true:
378
+ (a) The parameter has a non-numeric value;
379
+ (b) The current value is numeric, but it only changes due
380
+ to human intervention;
381
+ (c) The current value is numeric and dynamic, but the
382
+ RDBMS does not track access/allocation failures
383
+ related to the parameter;
384
+ (d) The current value is numeric and dynamic, the
385
+ RDBMS tracks changes in access/allocation failures
386
+ related to the parameter, but the failure has no
387
+ significant impact on RDBMS performance or
388
+ availability.
389
+ (e) The current value is numeric and dynamic, the
390
+ RDBMS tracks changes in access/allocation failures
391
+ related to the parameter, the failure has
392
+ significant impact on RDBMS performance or
393
+ availability, and is shown in the
394
+ rdbmsDbLimitedResource table.""",
395
+ }, # table
396
+ "rdbmsDbParamEntry" : {
397
+ "nodetype" : "row",
398
+ "moduleName" : "RDBMS-MIB",
399
+ "oid" : "1.3.6.1.2.1.39.1.3.1",
400
+ "status" : "current",
401
+ "linkage" : [
402
+ "rdbmsDbIndex",
403
+ "rdbmsDbParamName",
404
+ "rdbmsDbParamSubIndex",
405
+ ],
406
+ "description" :
407
+ """An entry for a single configuration parameter for a database.
408
+ Parameters with single values have a subindex value of one.
409
+ If the parameter is naturally considered to contain a
410
+ variable number of members of a class, e.g. members of the
411
+ DBA user group, or files which are part of the database, then
412
+ it must be presented as a set of rows. If, on the other
413
+ hand, the parameter represents a set of choices from a class,
414
+ e.g. the permissions on a file or the options chosen out of
415
+ the set of all options allowed, AND is guaranteed to always
416
+ fit in the 255 character length of a DisplayString, then it
417
+ may be presented as a comma separated list with a subindex
418
+ value of one. Zero may not be used as a subindex value.
419
+
420
+ If the database is not actively opened, then attempts
421
+ to access corresponding instances in this table may result in
422
+ either noSuchName (SNMPv1) or noSuchInstance (SNMPv2).
423
+ 'Actively opened' means at least one of the
424
+ rdbmsRelState entries for this database in the rdbmsRelTable
425
+ is active(2).""",
426
+ }, # row
427
+ "rdbmsDbParamName" : {
428
+ "nodetype" : "column",
429
+ "moduleName" : "RDBMS-MIB",
430
+ "oid" : "1.3.6.1.2.1.39.1.3.1.1",
431
+ "status" : "current",
432
+ "syntax" : {
433
+ "type" : {
434
+ "basetype" : "OctetString",
435
+ "parent module" : {
436
+ "name" : "SNMPv2-TC",
437
+ "type" : "DisplayString",
438
+ },
439
+ "ranges" : [
440
+ {
441
+ "min" : "1",
442
+ "max" : "64"
443
+ },
444
+ ],
445
+ "range" : {
446
+ "min" : "1",
447
+ "max" : "64"
448
+ },
449
+ },
450
+ },
451
+ "access" : "noaccess",
452
+ "description" :
453
+ """The name of a configuration parameter for a database. This
454
+ name is product-specific. The length is limited to 64
455
+ characters to constrain the number of sub-identifiers needed
456
+ for instance identification (and to minimize network
457
+ traffic).""",
458
+ }, # column
459
+ "rdbmsDbParamSubIndex" : {
460
+ "nodetype" : "column",
461
+ "moduleName" : "RDBMS-MIB",
462
+ "oid" : "1.3.6.1.2.1.39.1.3.1.2",
463
+ "status" : "current",
464
+ "syntax" : {
465
+ "type" : {
466
+ "basetype" : "Integer32",
467
+ "ranges" : [
468
+ {
469
+ "min" : "1",
470
+ "max" : "2147483647"
471
+ },
472
+ ],
473
+ "range" : {
474
+ "min" : "1",
475
+ "max" : "2147483647"
476
+ },
477
+ },
478
+ },
479
+ "access" : "noaccess",
480
+ "description" :
481
+ """The subindex value for this parameter. If the parameter is
482
+ naturally considered to contain a variable number of members
483
+ of a class, e.g. members of the DBA user group, or files
484
+ which are part of the database, then it must be presented as
485
+ a set of rows. If, on the other hand, the parameter
486
+ represents a set of choices from a class, e.g. the
487
+ permissions on a file or the options chosen out of the set of
488
+ all options allowed, AND is guaranteed to always fit in the
489
+ 255 character length of a DisplayString, then it may be
490
+ presented as a comma separated list with a subindex value of
491
+ one. Zero may not be used as a value.""",
492
+ }, # column
493
+ "rdbmsDbParamID" : {
494
+ "nodetype" : "column",
495
+ "moduleName" : "RDBMS-MIB",
496
+ "oid" : "1.3.6.1.2.1.39.1.3.1.3",
497
+ "status" : "current",
498
+ "syntax" : {
499
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
500
+ },
501
+ "access" : "readonly",
502
+ "description" :
503
+ """The ID of the parameter which may be described in some other
504
+ MIB (e.g., an enterprise-specific MIB module). If there is
505
+ no ID for this rdbmsDbParamName, attempts to access this
506
+ object will return noSuchName (SNMPv1) or noSuchInstance
507
+ (SNMPv2).""",
508
+ }, # column
509
+ "rdbmsDbParamCurrValue" : {
510
+ "nodetype" : "column",
511
+ "moduleName" : "RDBMS-MIB",
512
+ "oid" : "1.3.6.1.2.1.39.1.3.1.4",
513
+ "status" : "current",
514
+ "syntax" : {
515
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
516
+ },
517
+ "access" : "readwrite",
518
+ "description" :
519
+ """The value for a configuration parameter now in effect, the
520
+ actual setting for the database. While there may multiple
521
+ values in the temporal domain of interest (for instance, the
522
+ value to take effect at the next restart), this is the
523
+ current setting.
524
+
525
+ Note that a compliant agent does not need to
526
+ allow write access to this object.""",
527
+ }, # column
528
+ "rdbmsDbParamComment" : {
529
+ "nodetype" : "column",
530
+ "moduleName" : "RDBMS-MIB",
531
+ "oid" : "1.3.6.1.2.1.39.1.3.1.5",
532
+ "status" : "current",
533
+ "syntax" : {
534
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
535
+ },
536
+ "access" : "readwrite",
537
+ "description" :
538
+ """Annotation which describes the purpose of a configuration
539
+ parameter or the reason for a particular parameter's
540
+ setting.
541
+
542
+ Note that a compliant agent does not need to
543
+ allow write access to this object.""",
544
+ }, # column
545
+ "rdbmsDbLimitedResourceTable" : {
546
+ "nodetype" : "table",
547
+ "moduleName" : "RDBMS-MIB",
548
+ "oid" : "1.3.6.1.2.1.39.1.4",
549
+ "status" : "current",
550
+ "description" :
551
+ """The table of limited resources that are kept per-database.""",
552
+ }, # table
553
+ "rdbmsDbLimitedResourceEntry" : {
554
+ "nodetype" : "row",
555
+ "moduleName" : "RDBMS-MIB",
556
+ "oid" : "1.3.6.1.2.1.39.1.4.1",
557
+ "status" : "current",
558
+ "linkage" : [
559
+ "rdbmsDbIndex",
560
+ "rdbmsDbLimitedResourceName",
561
+ ],
562
+ "description" :
563
+ """An entry for a single limited resource kept per-database.
564
+ A limited resource has maximum use determined by a parameter
565
+ that might or might not be changeable at run time, or visible
566
+ in the rdbmsDbParamTable. Examples would be the number of
567
+ available locks, or disk space on a partition. Arrays of
568
+ resources are supported through an integer sub index, which
569
+ should have the value of one for single-instance names.
570
+
571
+ Limited resources that are shared across databases, are best
572
+ put in the rdbmsSvrLimitedResourceTable instead of this one.
573
+ If the database is not actively opened, then attempts to
574
+ access corresponding instances in this table may result in
575
+ either noSuchName (SNMPv1) or noSuchInstance (SNMPv2).
576
+ 'Actively opened' means at least one of the rdbmsRelState
577
+ entries for this database in the rdbmsRelTable is active(2).""",
578
+ }, # row
579
+ "rdbmsDbLimitedResourceName" : {
580
+ "nodetype" : "column",
581
+ "moduleName" : "RDBMS-MIB",
582
+ "oid" : "1.3.6.1.2.1.39.1.4.1.1",
583
+ "status" : "current",
584
+ "syntax" : {
585
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
586
+ },
587
+ "access" : "noaccess",
588
+ "description" :
589
+ """The name of the resource, for instance 'global locks' or
590
+ 'locks for the FOO database', or 'data space on /dev/rdsk/5s0
591
+ for FOO'. The length is limited to 64 characters to constrain
592
+ the number of sub-identifiers needed for instance
593
+ identification (and to minimize network traffic).""",
594
+ }, # column
595
+ "rdbmsDbLimitedResourceID" : {
596
+ "nodetype" : "column",
597
+ "moduleName" : "RDBMS-MIB",
598
+ "oid" : "1.3.6.1.2.1.39.1.4.1.2",
599
+ "status" : "current",
600
+ "syntax" : {
601
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
602
+ },
603
+ "access" : "readonly",
604
+ "description" :
605
+ """The ID of the resource which may be described in some other
606
+ MIB (e.g., an enterprise-specific MIB module). If there is
607
+ no ID for this rdbmsDbLimitedResourceName, attempts to access
608
+ this object will return noSuchName (SNMPv1) or noSuchInstance
609
+ (SNMPv2).""",
610
+ }, # column
611
+ "rdbmsDbLimitedResourceLimit" : {
612
+ "nodetype" : "column",
613
+ "moduleName" : "RDBMS-MIB",
614
+ "oid" : "1.3.6.1.2.1.39.1.4.1.3",
615
+ "status" : "current",
616
+ "syntax" : {
617
+ "type" : {
618
+ "basetype" : "Integer32",
619
+ "ranges" : [
620
+ {
621
+ "min" : "1",
622
+ "max" : "2147483647"
623
+ },
624
+ ],
625
+ "range" : {
626
+ "min" : "1",
627
+ "max" : "2147483647"
628
+ },
629
+ },
630
+ },
631
+ "access" : "readwrite",
632
+ "description" :
633
+ """The maximum value the resource use may attain.
634
+
635
+ Note that a compliant agent does not need to
636
+ allow write access to this object.""",
637
+ }, # column
638
+ "rdbmsDbLimitedResourceCurrent" : {
639
+ "nodetype" : "column",
640
+ "moduleName" : "RDBMS-MIB",
641
+ "oid" : "1.3.6.1.2.1.39.1.4.1.4",
642
+ "status" : "current",
643
+ "syntax" : {
644
+ "type" : {
645
+ "basetype" : "Integer32",
646
+ "ranges" : [
647
+ {
648
+ "min" : "1",
649
+ "max" : "2147483647"
650
+ },
651
+ ],
652
+ "range" : {
653
+ "min" : "1",
654
+ "max" : "2147483647"
655
+ },
656
+ },
657
+ },
658
+ "access" : "readonly",
659
+ "description" :
660
+ """The current value for the resource.""",
661
+ }, # column
662
+ "rdbmsDbLimitedResourceHighwater" : {
663
+ "nodetype" : "column",
664
+ "moduleName" : "RDBMS-MIB",
665
+ "oid" : "1.3.6.1.2.1.39.1.4.1.5",
666
+ "status" : "current",
667
+ "syntax" : {
668
+ "type" : {
669
+ "basetype" : "Integer32",
670
+ "ranges" : [
671
+ {
672
+ "min" : "1",
673
+ "max" : "2147483647"
674
+ },
675
+ ],
676
+ "range" : {
677
+ "min" : "1",
678
+ "max" : "2147483647"
679
+ },
680
+ },
681
+ },
682
+ "access" : "readonly",
683
+ "description" :
684
+ """The maximum value of the resource seen since applUpTime
685
+ was reset for the earliest server which has the database
686
+ actively opened.
687
+
688
+ If there are two servers with the database open, and the
689
+ oldest one dies, the proper way to invalidate the value is by
690
+ resetting sysUpTime.""",
691
+ }, # column
692
+ "rdbmsDbLimitedResourceFailures" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "RDBMS-MIB",
695
+ "oid" : "1.3.6.1.2.1.39.1.4.1.6",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
699
+ },
700
+ "access" : "readonly",
701
+ "description" :
702
+ """The number of times the system wanted to exceed the limit of
703
+ the resource since applUpTime was reset for the earliest
704
+ server which has the database actively opened.
705
+
706
+ If there are two servers with the DB open, and the
707
+ oldest one dies, the proper way to invalidate the value is by
708
+ resetting sysUpTime.""",
709
+ }, # column
710
+ "rdbmsDbLimitedResourceDescription" : {
711
+ "nodetype" : "column",
712
+ "moduleName" : "RDBMS-MIB",
713
+ "oid" : "1.3.6.1.2.1.39.1.4.1.7",
714
+ "status" : "current",
715
+ "syntax" : {
716
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
717
+ },
718
+ "access" : "readwrite",
719
+ "description" :
720
+ """A description of the resource and the meaning of the integer
721
+ units used for Limit, Current, and Highwater.
722
+
723
+ Note that a compliant agent does not need to
724
+ allow write access to this object.""",
725
+ }, # column
726
+ "rdbmsSrvTable" : {
727
+ "nodetype" : "table",
728
+ "moduleName" : "RDBMS-MIB",
729
+ "oid" : "1.3.6.1.2.1.39.1.5",
730
+ "status" : "current",
731
+ "description" :
732
+ """The table of database servers running or installed
733
+ on a system.""",
734
+ }, # table
735
+ "rdbmsSrvEntry" : {
736
+ "nodetype" : "row",
737
+ "moduleName" : "RDBMS-MIB",
738
+ "oid" : "1.3.6.1.2.1.39.1.5.1",
739
+ "status" : "current",
740
+ "linkage" : [
741
+ "applIndex",
742
+ ],
743
+ "description" :
744
+ """An entry for a single database server. A server is an
745
+ independent entity that provides access to one or more
746
+ databases. Failure of one does not affect access to
747
+ databases through any other servers. There might be one or
748
+ more servers providing access to a database. A server may be
749
+ a 'process' or collection of 'processes', as interpreted by
750
+ the product.""",
751
+ }, # row
752
+ "rdbmsSrvPrivateMibOID" : {
753
+ "nodetype" : "column",
754
+ "moduleName" : "RDBMS-MIB",
755
+ "oid" : "1.3.6.1.2.1.39.1.5.1.1",
756
+ "status" : "current",
757
+ "syntax" : {
758
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
759
+ },
760
+ "access" : "readonly",
761
+ "description" :
762
+ """The authoritative identification for the private MIB for this
763
+ server, presumably based on the vendor, e.g., { enterprises
764
+ 111 <optional subidentifiers>} for Oracle servers, {
765
+ enterprises 757 <optional subidentifiers>} for Ingres
766
+ servers, { enterprises 897 <optional subidentifiers>} for
767
+ Sybase servers, etc.
768
+
769
+ If no OBJECT IDENTIFIER exists for the private MIB, attempts
770
+ to access this object will return noSuchName (SNMPv1)
771
+ or noSuchInstance (SNMPv2).""",
772
+ }, # column
773
+ "rdbmsSrvVendorName" : {
774
+ "nodetype" : "column",
775
+ "moduleName" : "RDBMS-MIB",
776
+ "oid" : "1.3.6.1.2.1.39.1.5.1.2",
777
+ "status" : "current",
778
+ "syntax" : {
779
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
780
+ },
781
+ "access" : "readonly",
782
+ "description" :
783
+ """The name of the vendor whose RDBMS manages this database,
784
+ for informational purposes.""",
785
+ }, # column
786
+ "rdbmsSrvProductName" : {
787
+ "nodetype" : "column",
788
+ "moduleName" : "RDBMS-MIB",
789
+ "oid" : "1.3.6.1.2.1.39.1.5.1.3",
790
+ "status" : "current",
791
+ "syntax" : {
792
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
793
+ },
794
+ "access" : "readonly",
795
+ "description" :
796
+ """The product name of this server. This is normally the
797
+ vendor's formal name for the product, in product specific
798
+ format.""",
799
+ }, # column
800
+ "rdbmsSrvContact" : {
801
+ "nodetype" : "column",
802
+ "moduleName" : "RDBMS-MIB",
803
+ "oid" : "1.3.6.1.2.1.39.1.5.1.4",
804
+ "status" : "current",
805
+ "syntax" : {
806
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
807
+ },
808
+ "access" : "readwrite",
809
+ "description" :
810
+ """The textual identification of the contact person for this
811
+ managed server, together with information on how to contact
812
+ this person.
813
+
814
+ Note: if there is no active server associated with this
815
+ object, an agent may need to keep this in other persistent
816
+ storage, e.g., a configuration file.
817
+
818
+ Note that a compliant agent does not need to
819
+ allow write access to this object.""",
820
+ }, # column
821
+ "rdbmsSrvInfoTable" : {
822
+ "nodetype" : "table",
823
+ "moduleName" : "RDBMS-MIB",
824
+ "oid" : "1.3.6.1.2.1.39.1.6",
825
+ "status" : "current",
826
+ "description" :
827
+ """The table of additional information about database servers.
828
+
829
+ Entries in this table correspond to applications in the
830
+ NETWORK-SERVICES-MIB applTable. Some objects in that table are
831
+ application-specific. When they are associated with an RDBMS
832
+ server in this table, the objects have the following
833
+ meanings.
834
+
835
+ applName - The name of this server, i.e., the process or
836
+ group of processes providing access to this database. The
837
+ exact format will be product and host specific.
838
+
839
+ applVersion - The version number of this server, in product
840
+ specific format.
841
+
842
+ applOperStatus - up(1) means operational and available for
843
+ general use. down(2) means the server is not available for
844
+ use, but is known to the agent. The other states have broad
845
+ meaning, and may need to be supplemented by the vendor
846
+ private MIB. Halted(3) implies an administrative state of
847
+ unavailability. Congested(4) implies a resource or or
848
+ administrative limit is prohibiting new inbound associations.
849
+ The 'available soon' description of restarting(5) may include
850
+ an indeterminate amount of recovery.
851
+
852
+ applLastChange is the time the agent noticed the most recent
853
+ change to applOperStatus.
854
+
855
+ applInboundAssociation is the number of currently active
856
+ local and remote conversations (usually SQL connects).
857
+
858
+ applOutboundAssociations is not provided by this MIB.
859
+
860
+ applAccumulatedInboundAssociations is the total number of
861
+ local and remote conversations started since the server came
862
+ up.
863
+
864
+ applAccumulatedOutbound associations is not provided by this
865
+ MIB.
866
+
867
+ applLastInboundActivity is the time the most recent local or
868
+ remote conversation was attempted or disconnected.
869
+
870
+ applLastOutboundActivity is not provided by this MIB.
871
+
872
+ applRejectedInboundAssociations is the number of local or
873
+ remote conversations rejected by the server for
874
+ administrative reasons or because of resource limitations.
875
+
876
+ applFailedOutboundAssociations is not provided by this MIB.""",
877
+ }, # table
878
+ "rdbmsSrvInfoEntry" : {
879
+ "nodetype" : "row",
880
+ "moduleName" : "RDBMS-MIB",
881
+ "oid" : "1.3.6.1.2.1.39.1.6.1",
882
+ "status" : "current",
883
+ "linkage" : [
884
+ "applIndex",
885
+ ],
886
+ "description" :
887
+ """Information that must be present for a single 'up' database
888
+ server, with visibility determined by the value of the
889
+ corresponding applOperStatus object. If an instance of
890
+ applOperStatus is not up(1), then attempts to access
891
+ corresponding instances in this table may result in either
892
+ noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned
893
+ by the agent.""",
894
+ }, # row
895
+ "rdbmsSrvInfoStartupTime" : {
896
+ "nodetype" : "column",
897
+ "moduleName" : "RDBMS-MIB",
898
+ "oid" : "1.3.6.1.2.1.39.1.6.1.1",
899
+ "status" : "current",
900
+ "syntax" : {
901
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
902
+ },
903
+ "access" : "readonly",
904
+ "description" :
905
+ """The date and time at which this server was last started.""",
906
+ }, # column
907
+ "rdbmsSrvInfoFinishedTransactions" : {
908
+ "nodetype" : "column",
909
+ "moduleName" : "RDBMS-MIB",
910
+ "oid" : "1.3.6.1.2.1.39.1.6.1.2",
911
+ "status" : "current",
912
+ "syntax" : {
913
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
914
+ },
915
+ "access" : "readonly",
916
+ "description" :
917
+ """The number of transactions visible to this server that have
918
+ been completed by either commit or abort. Some database
919
+ operations, such as read-only queries, may not result in the
920
+ creation of a transaction.""",
921
+ }, # column
922
+ "rdbmsSrvInfoDiskReads" : {
923
+ "nodetype" : "column",
924
+ "moduleName" : "RDBMS-MIB",
925
+ "oid" : "1.3.6.1.2.1.39.1.6.1.3",
926
+ "status" : "current",
927
+ "syntax" : {
928
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
929
+ },
930
+ "access" : "readonly",
931
+ "description" :
932
+ """The total number of reads of database files issued to the
933
+ operating system by this server since startup. Numbers are
934
+ not comparable between products. What constitutes a
935
+ readand how it is accounted is product-specific.""",
936
+ }, # column
937
+ "rdbmsSrvInfoLogicalReads" : {
938
+ "nodetype" : "column",
939
+ "moduleName" : "RDBMS-MIB",
940
+ "oid" : "1.3.6.1.2.1.39.1.6.1.4",
941
+ "status" : "current",
942
+ "syntax" : {
943
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
944
+ },
945
+ "access" : "readonly",
946
+ "description" :
947
+ """The total number of logical reads of database files made
948
+ internally by this server since startup. The values of this
949
+ object and those of rdbmsSrvInfoDiskReads reveal the effect
950
+ of caching on read operation. Numbers are not comparable
951
+ between products, and may only be meaningful when aggregated
952
+ across all servers sharing a common cache.""",
953
+ }, # column
954
+ "rdbmsSrvInfoDiskWrites" : {
955
+ "nodetype" : "column",
956
+ "moduleName" : "RDBMS-MIB",
957
+ "oid" : "1.3.6.1.2.1.39.1.6.1.5",
958
+ "status" : "current",
959
+ "syntax" : {
960
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
961
+ },
962
+ "access" : "readonly",
963
+ "description" :
964
+ """The total number of writes to database files issued to the
965
+ operating system by this server since startup. Numbers are
966
+ not comparable between products.""",
967
+ }, # column
968
+ "rdbmsSrvInfoLogicalWrites" : {
969
+ "nodetype" : "column",
970
+ "moduleName" : "RDBMS-MIB",
971
+ "oid" : "1.3.6.1.2.1.39.1.6.1.6",
972
+ "status" : "current",
973
+ "syntax" : {
974
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
975
+ },
976
+ "access" : "readonly",
977
+ "description" :
978
+ """The total number of times parts of the database files have
979
+ been marked 'dirty' and in need of writing to the disk. This
980
+ value and rdbmsSrvInfoDiskWrites give some indication of the
981
+ effect of 'write-behind' strategies in reducing the number of
982
+ disk writes compared to database operations. Because the
983
+ writes may be done by servers other than those marking the
984
+ parts of the database files dirty, these values may only be
985
+ meaningful when aggregated across all servers sharing a
986
+ common cache. Numbers are not comparable between products.""",
987
+ }, # column
988
+ "rdbmsSrvInfoPageReads" : {
989
+ "nodetype" : "column",
990
+ "moduleName" : "RDBMS-MIB",
991
+ "oid" : "1.3.6.1.2.1.39.1.6.1.7",
992
+ "status" : "current",
993
+ "syntax" : {
994
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
995
+ },
996
+ "access" : "readonly",
997
+ "description" :
998
+ """The total number of pages in database files read by this
999
+ server since startup. 'Pages' are product specific units of
1000
+ disk i/o operations. This value, along with
1001
+ rdbmsSrvInfoDiskReads, reveals the effect of any grouping
1002
+ read-ahead that may be used to enhance performance of some
1003
+ queries, such as scans.""",
1004
+ }, # column
1005
+ "rdbmsSrvInfoPageWrites" : {
1006
+ "nodetype" : "column",
1007
+ "moduleName" : "RDBMS-MIB",
1008
+ "oid" : "1.3.6.1.2.1.39.1.6.1.8",
1009
+ "status" : "current",
1010
+ "syntax" : {
1011
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1012
+ },
1013
+ "access" : "readonly",
1014
+ "description" :
1015
+ """The total number of pages in database files written by this
1016
+ server since startup. Pages are product-specific units of
1017
+ disk I/O. This value, with rdbmsSrvInfoDiskWrites, shows the
1018
+ effect of write strategies that collapse logical writes of
1019
+ contiguous pages into single calls to the operating system.""",
1020
+ }, # column
1021
+ "rdbmsSrvInfoDiskOutOfSpaces" : {
1022
+ "nodetype" : "column",
1023
+ "moduleName" : "RDBMS-MIB",
1024
+ "oid" : "1.3.6.1.2.1.39.1.6.1.9",
1025
+ "status" : "current",
1026
+ "syntax" : {
1027
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1028
+ },
1029
+ "access" : "readonly",
1030
+ "description" :
1031
+ """The total number of times the server has been unable to
1032
+ obtain disk space that it wanted, since server startup. This
1033
+ would be inspected by an agent on receipt of an
1034
+ rdbmsOutOfSpace trap.""",
1035
+ }, # column
1036
+ "rdbmsSrvInfoHandledRequests" : {
1037
+ "nodetype" : "column",
1038
+ "moduleName" : "RDBMS-MIB",
1039
+ "oid" : "1.3.6.1.2.1.39.1.6.1.10",
1040
+ "status" : "current",
1041
+ "syntax" : {
1042
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1043
+ },
1044
+ "access" : "readonly",
1045
+ "description" :
1046
+ """The total number of requests made to the server on inbound
1047
+ associations. The meaning of 'requests' is product specific,
1048
+ and is not comparable between products.
1049
+
1050
+ This is intended to encapsulate high level semantic
1051
+ operations between clients and servers, or between peers.
1052
+ For instance, one request might correspond to a 'select' or
1053
+ an 'insert' statement. It is not intended to capture disk
1054
+ i/o described in rdbmsSrvInfoDiskReads and
1055
+ rdbmsSrvInfoDiskWrites.""",
1056
+ }, # column
1057
+ "rdbmsSrvInfoRequestRecvs" : {
1058
+ "nodetype" : "column",
1059
+ "moduleName" : "RDBMS-MIB",
1060
+ "oid" : "1.3.6.1.2.1.39.1.6.1.11",
1061
+ "status" : "current",
1062
+ "syntax" : {
1063
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1064
+ },
1065
+ "access" : "readonly",
1066
+ "description" :
1067
+ """The number of receive operations made processing any requests
1068
+ on inbound associations. The meaning of operations is product
1069
+ specific, and is not comparable between products.
1070
+
1071
+ This is intended to capture lower-level i/o operations than
1072
+ shown by HandledRequests, between clients and servers, or
1073
+ between peers. For instance, it might roughly correspond to
1074
+ the amount of data given with an 'insert' statement. It is
1075
+ not intended to capture disk i/o described in
1076
+ rdbmsSrvInfoDiskReads and rdbmsSrvInfoDiskWrites.""",
1077
+ }, # column
1078
+ "rdbmsSrvInfoRequestSends" : {
1079
+ "nodetype" : "column",
1080
+ "moduleName" : "RDBMS-MIB",
1081
+ "oid" : "1.3.6.1.2.1.39.1.6.1.12",
1082
+ "status" : "current",
1083
+ "syntax" : {
1084
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1085
+ },
1086
+ "access" : "readonly",
1087
+ "description" :
1088
+ """The number of send operations made processing requests
1089
+ handled on inbound associations. The meaning of operations
1090
+ is product specific, and is not comparable between products.
1091
+ This is intended to capture lower-level i/o operations than
1092
+ shown by HandledRequests, between between clients and
1093
+ servers, or between peers. It might roughly correspond to
1094
+ the number of rows returned by a 'select' statement. It is
1095
+ not intended to capture disk i/o described in DiskReads.""",
1096
+ }, # column
1097
+ "rdbmsSrvInfoHighwaterInboundAssociations" : {
1098
+ "nodetype" : "column",
1099
+ "moduleName" : "RDBMS-MIB",
1100
+ "oid" : "1.3.6.1.2.1.39.1.6.1.13",
1101
+ "status" : "current",
1102
+ "syntax" : {
1103
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1104
+ },
1105
+ "access" : "readonly",
1106
+ "description" :
1107
+ """The greatest number of inbound associations that have been
1108
+ simultaneously open to this server since startup.""",
1109
+ }, # column
1110
+ "rdbmsSrvInfoMaxInboundAssociations" : {
1111
+ "nodetype" : "column",
1112
+ "moduleName" : "RDBMS-MIB",
1113
+ "oid" : "1.3.6.1.2.1.39.1.6.1.14",
1114
+ "status" : "current",
1115
+ "syntax" : {
1116
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1117
+ },
1118
+ "access" : "readwrite",
1119
+ "description" :
1120
+ """The greatest number of inbound associations that can be
1121
+ simultaneously open with this server. If there is no limit,
1122
+ then the value should be zero.
1123
+
1124
+ Note that a compliant agent does not need to
1125
+ allow write access to this object.""",
1126
+ }, # column
1127
+ "rdbmsSrvParamTable" : {
1128
+ "nodetype" : "table",
1129
+ "moduleName" : "RDBMS-MIB",
1130
+ "oid" : "1.3.6.1.2.1.39.1.7",
1131
+ "status" : "current",
1132
+ "description" :
1133
+ """The table of configuration parameters for a server. Entries
1134
+ should be populated according to the following guidelines:
1135
+ (1) The value should be specified through administrative
1136
+ (human) intervention.
1137
+ (2) It should be configured on a per-server or a more global
1138
+ basis, with duplicate entries for each server sharing
1139
+ use of the parameter.
1140
+ (3) One of the following is true:
1141
+ (a) The parameter has a non-numeric value;
1142
+ (b) The current value is numeric, but it only changes due
1143
+ to human intervention;
1144
+ (c) The current value is numeric and dynamic, but the
1145
+ RDBMS does not track access/allocation failures
1146
+ related to the parameter;
1147
+ (d) The current value is numeric and dynamic, the
1148
+ RDBMS tracks changes in access/allocation failures
1149
+ related to the parameter, but the failure has no
1150
+ significant impact on RDBMS performance or
1151
+ availability.
1152
+ (e) The current value is numeric and dynamic, the
1153
+ RDBMS tracks changes in access/allocation failures
1154
+ related to the parameter, the failure has
1155
+ significant impact on RDBMS performance or
1156
+ availability, and is shown in the
1157
+ rdbmsSrvLimitedResource table.""",
1158
+ }, # table
1159
+ "rdbmsSrvParamEntry" : {
1160
+ "nodetype" : "row",
1161
+ "moduleName" : "RDBMS-MIB",
1162
+ "oid" : "1.3.6.1.2.1.39.1.7.1",
1163
+ "status" : "current",
1164
+ "linkage" : [
1165
+ "applIndex",
1166
+ "rdbmsSrvParamName",
1167
+ "rdbmsSrvParamSubIndex",
1168
+ ],
1169
+ "description" :
1170
+ """An entry for a single configuration parameter for a server.
1171
+ Parameters with single values have a subindex value of one.
1172
+ If the parameter is naturally considered to contain a
1173
+ variable number of members of a class, e.g. members of the
1174
+ DBA user group, or tracepoints active in the server, then it
1175
+ must be presented as a set of rows. If, on the other hand,
1176
+ the parameter represents a set of choices from a class,
1177
+ e.g. the permissions on a file or the options chosen out of
1178
+ the set of all options allowed, AND is guaranteed to always
1179
+ fit in the 255 character length of a DisplayString, then it
1180
+ may be presented as a comma separated list with a subindex
1181
+ value of one. Zero may not be used as a subindex value.
1182
+
1183
+ Entries for a server must be present if the value of the
1184
+ corresponding applOperStatus object is up(1). If an instance
1185
+ of applOperStatus is not up(1), then attempts to access
1186
+ corresponding instances in this table may result in either
1187
+ noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned
1188
+ by the agent.""",
1189
+ }, # row
1190
+ "rdbmsSrvParamName" : {
1191
+ "nodetype" : "column",
1192
+ "moduleName" : "RDBMS-MIB",
1193
+ "oid" : "1.3.6.1.2.1.39.1.7.1.1",
1194
+ "status" : "current",
1195
+ "syntax" : {
1196
+ "type" : {
1197
+ "basetype" : "OctetString",
1198
+ "parent module" : {
1199
+ "name" : "SNMPv2-TC",
1200
+ "type" : "DisplayString",
1201
+ },
1202
+ "ranges" : [
1203
+ {
1204
+ "min" : "1",
1205
+ "max" : "64"
1206
+ },
1207
+ ],
1208
+ "range" : {
1209
+ "min" : "1",
1210
+ "max" : "64"
1211
+ },
1212
+ },
1213
+ },
1214
+ "access" : "noaccess",
1215
+ "description" :
1216
+ """The name of a configuration parameter for a server. This
1217
+ name is product-specific. The length is limited to 64
1218
+ characters to constrain the number of sub-identifiers needed
1219
+ for instance identification (and to minimize network
1220
+ traffic).""",
1221
+ }, # column
1222
+ "rdbmsSrvParamSubIndex" : {
1223
+ "nodetype" : "column",
1224
+ "moduleName" : "RDBMS-MIB",
1225
+ "oid" : "1.3.6.1.2.1.39.1.7.1.2",
1226
+ "status" : "current",
1227
+ "syntax" : {
1228
+ "type" : {
1229
+ "basetype" : "Integer32",
1230
+ "ranges" : [
1231
+ {
1232
+ "min" : "1",
1233
+ "max" : "2147483647"
1234
+ },
1235
+ ],
1236
+ "range" : {
1237
+ "min" : "1",
1238
+ "max" : "2147483647"
1239
+ },
1240
+ },
1241
+ },
1242
+ "access" : "noaccess",
1243
+ "description" :
1244
+ """The subindex value for this parameter. If the parameter is
1245
+ naturally considered to contain a variable number of members
1246
+ of a class, e.g. members of the DBA user group, or files
1247
+ which are part of the database, then it must be presented as
1248
+ a set of rows. If, on the other hand, the parameter
1249
+ represents a set of choices from a class, e.g. the
1250
+ permissions on a file or the options chosen out of the set of
1251
+ all options allowed, AND is guaranteed to always fit in the
1252
+ 255 character length of a DisplayString, then it may be
1253
+ presented as a comma separated list with a subindex value of
1254
+ one. Zero may not be used as a value.""",
1255
+ }, # column
1256
+ "rdbmsSrvParamID" : {
1257
+ "nodetype" : "column",
1258
+ "moduleName" : "RDBMS-MIB",
1259
+ "oid" : "1.3.6.1.2.1.39.1.7.1.3",
1260
+ "status" : "current",
1261
+ "syntax" : {
1262
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
1263
+ },
1264
+ "access" : "readonly",
1265
+ "description" :
1266
+ """The ID of the parameter which may be described in some
1267
+ other MIB. If there is no ID for this rdbmsSrvParamName,
1268
+ attempts to access this object will return noSuchName
1269
+ (SNMPv1) or noSuchInstance (SNMPv2).""",
1270
+ }, # column
1271
+ "rdbmsSrvParamCurrValue" : {
1272
+ "nodetype" : "column",
1273
+ "moduleName" : "RDBMS-MIB",
1274
+ "oid" : "1.3.6.1.2.1.39.1.7.1.4",
1275
+ "status" : "current",
1276
+ "syntax" : {
1277
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
1278
+ },
1279
+ "access" : "readwrite",
1280
+ "description" :
1281
+ """The value for a configuration parameter now in effect, the
1282
+ actual setting for the server. While there may multiple
1283
+ values in the temporal domain of interest (for instance, the
1284
+ value to take effect at the next restart), this is the
1285
+ current setting.
1286
+
1287
+ Note that a compliant agent does not need to
1288
+ allow write access to this object.""",
1289
+ }, # column
1290
+ "rdbmsSrvParamComment" : {
1291
+ "nodetype" : "column",
1292
+ "moduleName" : "RDBMS-MIB",
1293
+ "oid" : "1.3.6.1.2.1.39.1.7.1.5",
1294
+ "status" : "current",
1295
+ "syntax" : {
1296
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
1297
+ },
1298
+ "access" : "readwrite",
1299
+ "description" :
1300
+ """Annotation which describes the purpose of a configuration
1301
+ parameter or the reason for a particular parameter's
1302
+ setting.
1303
+
1304
+ Note that a compliant agent does not need to
1305
+ allow write access to this object.""",
1306
+ }, # column
1307
+ "rdbmsSrvLimitedResourceTable" : {
1308
+ "nodetype" : "table",
1309
+ "moduleName" : "RDBMS-MIB",
1310
+ "oid" : "1.3.6.1.2.1.39.1.8",
1311
+ "status" : "current",
1312
+ "description" :
1313
+ """The table of limited resources relevant to a server.""",
1314
+ }, # table
1315
+ "rdbmsSrvLimitedResourceEntry" : {
1316
+ "nodetype" : "row",
1317
+ "moduleName" : "RDBMS-MIB",
1318
+ "oid" : "1.3.6.1.2.1.39.1.8.1",
1319
+ "status" : "current",
1320
+ "linkage" : [
1321
+ "applIndex",
1322
+ "rdbmsSrvLimitedResourceName",
1323
+ ],
1324
+ "description" :
1325
+ """An entry for a single limited resource kept by the server.
1326
+ A limited resource has maximum use determined by a parameter
1327
+ that might or might not changeable at run time, or visible in
1328
+ the rbmsSrvParamTable. Examples would be the number of
1329
+ available locks, or number of concurrent executions allowed
1330
+ in a server. Arrays of resources are supported through an
1331
+ integer subindex, which should have the value of one for
1332
+ single-instance names.
1333
+
1334
+ Limited resources that are shared across servers or databases
1335
+ are best duplicated in this table across
1336
+ all servers accessing the resource.""",
1337
+ }, # row
1338
+ "rdbmsSrvLimitedResourceName" : {
1339
+ "nodetype" : "column",
1340
+ "moduleName" : "RDBMS-MIB",
1341
+ "oid" : "1.3.6.1.2.1.39.1.8.1.1",
1342
+ "status" : "current",
1343
+ "syntax" : {
1344
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
1345
+ },
1346
+ "access" : "noaccess",
1347
+ "description" :
1348
+ """The name of the resource, for instance 'threads' or
1349
+ 'semaphores', or 'buffer pages'""",
1350
+ }, # column
1351
+ "rdbmsSrvLimitedResourceID" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "RDBMS-MIB",
1354
+ "oid" : "1.3.6.1.2.1.39.1.8.1.2",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
1358
+ },
1359
+ "access" : "readonly",
1360
+ "description" :
1361
+ """The ID of the resource which may be described in some other
1362
+ MIB. If there is no ID for this rdbmsSrvLimitedResourceName,
1363
+ attempts to access this object will return noSuchName
1364
+ (SNMPv1) or noSuchInstance (SNMPv2).""",
1365
+ }, # column
1366
+ "rdbmsSrvLimitedResourceLimit" : {
1367
+ "nodetype" : "column",
1368
+ "moduleName" : "RDBMS-MIB",
1369
+ "oid" : "1.3.6.1.2.1.39.1.8.1.3",
1370
+ "status" : "current",
1371
+ "syntax" : {
1372
+ "type" : {
1373
+ "basetype" : "Integer32",
1374
+ "ranges" : [
1375
+ {
1376
+ "min" : "1",
1377
+ "max" : "2147483647"
1378
+ },
1379
+ ],
1380
+ "range" : {
1381
+ "min" : "1",
1382
+ "max" : "2147483647"
1383
+ },
1384
+ },
1385
+ },
1386
+ "access" : "readwrite",
1387
+ "description" :
1388
+ """The maximum value the resource use may attain.
1389
+
1390
+ Note that a compliant agent does not need to
1391
+ allow write access to this object.""",
1392
+ }, # column
1393
+ "rdbmsSrvLimitedResourceCurrent" : {
1394
+ "nodetype" : "column",
1395
+ "moduleName" : "RDBMS-MIB",
1396
+ "oid" : "1.3.6.1.2.1.39.1.8.1.4",
1397
+ "status" : "current",
1398
+ "syntax" : {
1399
+ "type" : {
1400
+ "basetype" : "Integer32",
1401
+ "ranges" : [
1402
+ {
1403
+ "min" : "1",
1404
+ "max" : "2147483647"
1405
+ },
1406
+ ],
1407
+ "range" : {
1408
+ "min" : "1",
1409
+ "max" : "2147483647"
1410
+ },
1411
+ },
1412
+ },
1413
+ "access" : "readonly",
1414
+ "description" :
1415
+ """The current value for the resource.""",
1416
+ }, # column
1417
+ "rdbmsSrvLimitedResourceHighwater" : {
1418
+ "nodetype" : "column",
1419
+ "moduleName" : "RDBMS-MIB",
1420
+ "oid" : "1.3.6.1.2.1.39.1.8.1.5",
1421
+ "status" : "current",
1422
+ "syntax" : {
1423
+ "type" : {
1424
+ "basetype" : "Integer32",
1425
+ "ranges" : [
1426
+ {
1427
+ "min" : "1",
1428
+ "max" : "2147483647"
1429
+ },
1430
+ ],
1431
+ "range" : {
1432
+ "min" : "1",
1433
+ "max" : "2147483647"
1434
+ },
1435
+ },
1436
+ },
1437
+ "access" : "readonly",
1438
+ "description" :
1439
+ """The maximum value of the resource seen since applUpTime
1440
+ was reset.""",
1441
+ }, # column
1442
+ "rdbmsSrvLimitedResourceFailures" : {
1443
+ "nodetype" : "column",
1444
+ "moduleName" : "RDBMS-MIB",
1445
+ "oid" : "1.3.6.1.2.1.39.1.8.1.6",
1446
+ "status" : "current",
1447
+ "syntax" : {
1448
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1449
+ },
1450
+ "access" : "readonly",
1451
+ "description" :
1452
+ """The number of times the system wanted to exceed the limit of
1453
+ the resource since applUpTime was reset.""",
1454
+ }, # column
1455
+ "rdbmsSrvLimitedResourceDescription" : {
1456
+ "nodetype" : "column",
1457
+ "moduleName" : "RDBMS-MIB",
1458
+ "oid" : "1.3.6.1.2.1.39.1.8.1.7",
1459
+ "status" : "current",
1460
+ "syntax" : {
1461
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
1462
+ },
1463
+ "access" : "readwrite",
1464
+ "description" :
1465
+ """A description of the resource and the meaning of the integer
1466
+ units used for Limit, Current, and Highwater.
1467
+
1468
+ Note that a compliant agent does not need to
1469
+ allow write access to this object.""",
1470
+ }, # column
1471
+ "rdbmsRelTable" : {
1472
+ "nodetype" : "table",
1473
+ "moduleName" : "RDBMS-MIB",
1474
+ "oid" : "1.3.6.1.2.1.39.1.9",
1475
+ "status" : "current",
1476
+ "description" :
1477
+ """A table relating databases and servers present on a host.""",
1478
+ }, # table
1479
+ "rdbmsRelEntry" : {
1480
+ "nodetype" : "row",
1481
+ "moduleName" : "RDBMS-MIB",
1482
+ "oid" : "1.3.6.1.2.1.39.1.9.1",
1483
+ "status" : "current",
1484
+ "linkage" : [
1485
+ "rdbmsDbIndex",
1486
+ "applIndex",
1487
+ ],
1488
+ "description" :
1489
+ """An entry relating a single database server to a single
1490
+ database to which it may provide access. The table is
1491
+ indexed first by the index of rdbmsDbTable, and then
1492
+ rdbmsSrvTable, so that all servers capable of providing
1493
+ access to a given database may be found by SNMP traversal
1494
+ operations (get-next and get-bulk). The makeup of this table
1495
+ depends on the product's architecture, e.g. if it is one
1496
+ server - many databases, then each server will appear n
1497
+ times, where n is the number of databases it may access, and
1498
+ each database will appear once. If the architecture is one
1499
+ database - many servers, then each server will appear once
1500
+ and each database will appear n times, where n is the number
1501
+ of servers that may be accessing it.""",
1502
+ }, # row
1503
+ "rdbmsRelState" : {
1504
+ "nodetype" : "column",
1505
+ "moduleName" : "RDBMS-MIB",
1506
+ "oid" : "1.3.6.1.2.1.39.1.9.1.1",
1507
+ "status" : "current",
1508
+ "syntax" : {
1509
+ "type" : {
1510
+ "basetype" : "Enumeration",
1511
+ "other" : {
1512
+ "nodetype" : "namednumber",
1513
+ "number" : "1"
1514
+ },
1515
+ "active" : {
1516
+ "nodetype" : "namednumber",
1517
+ "number" : "2"
1518
+ },
1519
+ "available" : {
1520
+ "nodetype" : "namednumber",
1521
+ "number" : "3"
1522
+ },
1523
+ "restricted" : {
1524
+ "nodetype" : "namednumber",
1525
+ "number" : "4"
1526
+ },
1527
+ "unavailable" : {
1528
+ "nodetype" : "namednumber",
1529
+ "number" : "5"
1530
+ },
1531
+ },
1532
+ },
1533
+ "access" : "readonly",
1534
+ "description" :
1535
+ """The state of this server's access to this database.
1536
+ Active(2) means the server is actively using the database.
1537
+ Available(3) means the server could use the database if
1538
+ necessary. Restricted(4) means the database is in some
1539
+ administratively determined state of less-than-complete
1540
+ availability. Unavailable(5) means the database is not
1541
+ available through this server. Other(1) means the
1542
+ database/server is in some other condition, possibly
1543
+ described in the vendor private MIB.""",
1544
+ }, # column
1545
+ "rdbmsRelActiveTime" : {
1546
+ "nodetype" : "column",
1547
+ "moduleName" : "RDBMS-MIB",
1548
+ "oid" : "1.3.6.1.2.1.39.1.9.1.2",
1549
+ "status" : "current",
1550
+ "syntax" : {
1551
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1552
+ },
1553
+ "access" : "readonly",
1554
+ "description" :
1555
+ """The time the database was made active by the server. If an
1556
+ instance of rdbmsRelState is not active(1), then attempts to
1557
+ access the corresponding instance of this object may result
1558
+ in either noSuchName (SNMPv1) or noSuchInstance (SNMPv2)
1559
+ being returned by the agent.""",
1560
+ }, # column
1561
+ "rdbmsWellKnownLimitedResources" : {
1562
+ "nodetype" : "node",
1563
+ "moduleName" : "RDBMS-MIB",
1564
+ "oid" : "1.3.6.1.2.1.39.1.10",
1565
+ }, # node
1566
+ "rdbmsLogSpace" : {
1567
+ "nodetype" : "node",
1568
+ "moduleName" : "RDBMS-MIB",
1569
+ "oid" : "1.3.6.1.2.1.39.1.10.1",
1570
+ "status" : "current",
1571
+ "description" :
1572
+ """Storage allocated for redo and undo logs.""",
1573
+ }, # node
1574
+ "rdbmsTraps" : {
1575
+ "nodetype" : "node",
1576
+ "moduleName" : "RDBMS-MIB",
1577
+ "oid" : "1.3.6.1.2.1.39.2",
1578
+ }, # node
1579
+ "rdbmsConformance" : {
1580
+ "nodetype" : "node",
1581
+ "moduleName" : "RDBMS-MIB",
1582
+ "oid" : "1.3.6.1.2.1.39.3",
1583
+ }, # node
1584
+ "rdbmsCompliances" : {
1585
+ "nodetype" : "node",
1586
+ "moduleName" : "RDBMS-MIB",
1587
+ "oid" : "1.3.6.1.2.1.39.3.1",
1588
+ }, # node
1589
+ "rdbmsGroups" : {
1590
+ "nodetype" : "node",
1591
+ "moduleName" : "RDBMS-MIB",
1592
+ "oid" : "1.3.6.1.2.1.39.3.2",
1593
+ }, # node
1594
+ }, # nodes
1595
+
1596
+ "notifications" : {
1597
+ "rdbmsStateChange" : {
1598
+ "nodetype" : "notification",
1599
+ "moduleName" : "RDBMS-MIB",
1600
+ "oid" : "1.3.6.1.2.1.39.2.1",
1601
+ "status" : "current",
1602
+ "objects" : {
1603
+ "rdbmsRelState" : {
1604
+ "nodetype" : "object",
1605
+ "module" : "RDBMS-MIB"
1606
+ },
1607
+ },
1608
+ "description" :
1609
+ """An rdbmsStateChange trap signifies that one of the database
1610
+ server/databases managed by this agent has changed its
1611
+ rdbmsRelState in a way that makes it less accessible for use.
1612
+ For these purposes, both active(2) and available(3) are
1613
+ considered fully accessible. The state sent with the trap is
1614
+ the new, less accessible state.""",
1615
+ }, # notification
1616
+ "rdbmsOutOfSpace" : {
1617
+ "nodetype" : "notification",
1618
+ "moduleName" : "RDBMS-MIB",
1619
+ "oid" : "1.3.6.1.2.1.39.2.2",
1620
+ "status" : "current",
1621
+ "objects" : {
1622
+ "rdbmsSrvInfoDiskOutOfSpaces" : {
1623
+ "nodetype" : "object",
1624
+ "module" : "RDBMS-MIB"
1625
+ },
1626
+ },
1627
+ "description" :
1628
+ """An rdbmsOutOfSpace trap signifies that one of the database
1629
+ servers managed by this agent has been unable to allocate
1630
+ space for one of the databases managed by this agent. Care
1631
+ should be taken to avoid flooding the network with these
1632
+ traps.""",
1633
+ }, # notification
1634
+ }, # notifications
1635
+
1636
+ "groups" : {
1637
+ "rdbmsGroup" : {
1638
+ "nodetype" : "group",
1639
+ "moduleName" : "RDBMS-MIB",
1640
+ "oid" : "1.3.6.1.2.1.39.3.2.1",
1641
+ "status" : "current",
1642
+ "members" : {
1643
+ "rdbmsDbPrivateMibOID" : {
1644
+ "nodetype" : "member",
1645
+ "module" : "RDBMS-MIB"
1646
+ },
1647
+ "rdbmsDbVendorName" : {
1648
+ "nodetype" : "member",
1649
+ "module" : "RDBMS-MIB"
1650
+ },
1651
+ "rdbmsDbName" : {
1652
+ "nodetype" : "member",
1653
+ "module" : "RDBMS-MIB"
1654
+ },
1655
+ "rdbmsDbContact" : {
1656
+ "nodetype" : "member",
1657
+ "module" : "RDBMS-MIB"
1658
+ },
1659
+ "rdbmsDbInfoProductName" : {
1660
+ "nodetype" : "member",
1661
+ "module" : "RDBMS-MIB"
1662
+ },
1663
+ "rdbmsDbInfoVersion" : {
1664
+ "nodetype" : "member",
1665
+ "module" : "RDBMS-MIB"
1666
+ },
1667
+ "rdbmsDbInfoSizeUnits" : {
1668
+ "nodetype" : "member",
1669
+ "module" : "RDBMS-MIB"
1670
+ },
1671
+ "rdbmsDbInfoSizeAllocated" : {
1672
+ "nodetype" : "member",
1673
+ "module" : "RDBMS-MIB"
1674
+ },
1675
+ "rdbmsDbInfoSizeUsed" : {
1676
+ "nodetype" : "member",
1677
+ "module" : "RDBMS-MIB"
1678
+ },
1679
+ "rdbmsDbInfoLastBackup" : {
1680
+ "nodetype" : "member",
1681
+ "module" : "RDBMS-MIB"
1682
+ },
1683
+ "rdbmsDbParamCurrValue" : {
1684
+ "nodetype" : "member",
1685
+ "module" : "RDBMS-MIB"
1686
+ },
1687
+ "rdbmsDbParamComment" : {
1688
+ "nodetype" : "member",
1689
+ "module" : "RDBMS-MIB"
1690
+ },
1691
+ "rdbmsDbLimitedResourceLimit" : {
1692
+ "nodetype" : "member",
1693
+ "module" : "RDBMS-MIB"
1694
+ },
1695
+ "rdbmsDbLimitedResourceCurrent" : {
1696
+ "nodetype" : "member",
1697
+ "module" : "RDBMS-MIB"
1698
+ },
1699
+ "rdbmsDbLimitedResourceHighwater" : {
1700
+ "nodetype" : "member",
1701
+ "module" : "RDBMS-MIB"
1702
+ },
1703
+ "rdbmsDbLimitedResourceFailures" : {
1704
+ "nodetype" : "member",
1705
+ "module" : "RDBMS-MIB"
1706
+ },
1707
+ "rdbmsDbLimitedResourceDescription" : {
1708
+ "nodetype" : "member",
1709
+ "module" : "RDBMS-MIB"
1710
+ },
1711
+ "rdbmsSrvPrivateMibOID" : {
1712
+ "nodetype" : "member",
1713
+ "module" : "RDBMS-MIB"
1714
+ },
1715
+ "rdbmsSrvVendorName" : {
1716
+ "nodetype" : "member",
1717
+ "module" : "RDBMS-MIB"
1718
+ },
1719
+ "rdbmsSrvProductName" : {
1720
+ "nodetype" : "member",
1721
+ "module" : "RDBMS-MIB"
1722
+ },
1723
+ "rdbmsSrvContact" : {
1724
+ "nodetype" : "member",
1725
+ "module" : "RDBMS-MIB"
1726
+ },
1727
+ "rdbmsSrvInfoStartupTime" : {
1728
+ "nodetype" : "member",
1729
+ "module" : "RDBMS-MIB"
1730
+ },
1731
+ "rdbmsSrvInfoFinishedTransactions" : {
1732
+ "nodetype" : "member",
1733
+ "module" : "RDBMS-MIB"
1734
+ },
1735
+ "rdbmsSrvInfoDiskReads" : {
1736
+ "nodetype" : "member",
1737
+ "module" : "RDBMS-MIB"
1738
+ },
1739
+ "rdbmsSrvInfoDiskWrites" : {
1740
+ "nodetype" : "member",
1741
+ "module" : "RDBMS-MIB"
1742
+ },
1743
+ "rdbmsSrvInfoLogicalReads" : {
1744
+ "nodetype" : "member",
1745
+ "module" : "RDBMS-MIB"
1746
+ },
1747
+ "rdbmsSrvInfoLogicalWrites" : {
1748
+ "nodetype" : "member",
1749
+ "module" : "RDBMS-MIB"
1750
+ },
1751
+ "rdbmsSrvInfoPageReads" : {
1752
+ "nodetype" : "member",
1753
+ "module" : "RDBMS-MIB"
1754
+ },
1755
+ "rdbmsSrvInfoPageWrites" : {
1756
+ "nodetype" : "member",
1757
+ "module" : "RDBMS-MIB"
1758
+ },
1759
+ "rdbmsSrvInfoHandledRequests" : {
1760
+ "nodetype" : "member",
1761
+ "module" : "RDBMS-MIB"
1762
+ },
1763
+ "rdbmsSrvInfoRequestRecvs" : {
1764
+ "nodetype" : "member",
1765
+ "module" : "RDBMS-MIB"
1766
+ },
1767
+ "rdbmsSrvInfoRequestSends" : {
1768
+ "nodetype" : "member",
1769
+ "module" : "RDBMS-MIB"
1770
+ },
1771
+ "rdbmsSrvInfoHighwaterInboundAssociations" : {
1772
+ "nodetype" : "member",
1773
+ "module" : "RDBMS-MIB"
1774
+ },
1775
+ "rdbmsSrvInfoMaxInboundAssociations" : {
1776
+ "nodetype" : "member",
1777
+ "module" : "RDBMS-MIB"
1778
+ },
1779
+ "rdbmsSrvParamCurrValue" : {
1780
+ "nodetype" : "member",
1781
+ "module" : "RDBMS-MIB"
1782
+ },
1783
+ "rdbmsSrvParamComment" : {
1784
+ "nodetype" : "member",
1785
+ "module" : "RDBMS-MIB"
1786
+ },
1787
+ "rdbmsSrvLimitedResourceLimit" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "RDBMS-MIB"
1790
+ },
1791
+ "rdbmsSrvLimitedResourceCurrent" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "RDBMS-MIB"
1794
+ },
1795
+ "rdbmsSrvLimitedResourceHighwater" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "RDBMS-MIB"
1798
+ },
1799
+ "rdbmsSrvLimitedResourceFailures" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "RDBMS-MIB"
1802
+ },
1803
+ "rdbmsSrvLimitedResourceDescription" : {
1804
+ "nodetype" : "member",
1805
+ "module" : "RDBMS-MIB"
1806
+ },
1807
+ "rdbmsRelState" : {
1808
+ "nodetype" : "member",
1809
+ "module" : "RDBMS-MIB"
1810
+ },
1811
+ "rdbmsRelActiveTime" : {
1812
+ "nodetype" : "member",
1813
+ "module" : "RDBMS-MIB"
1814
+ },
1815
+ }, # members
1816
+ "description" :
1817
+ """A collection of objects providing basic instrumentation of an
1818
+ RDBMS entity.""",
1819
+ }, # group
1820
+ }, # groups
1821
+
1822
+ "compliances" : {
1823
+ "rdbmsCompliance" : {
1824
+ "nodetype" : "compliance",
1825
+ "moduleName" : "RDBMS-MIB",
1826
+ "oid" : "1.3.6.1.2.1.39.3.1.1",
1827
+ "status" : "current",
1828
+ "description" :
1829
+ """The compliance statement for SNMP entities which
1830
+ implement the RDBMS MIB""",
1831
+ "requires" : {
1832
+ "hrSystem" : {
1833
+ "nodetype" : "mandatory",
1834
+ "module" : "HOST-RESOURCES-MIB"
1835
+ },
1836
+ "applGroups" : {
1837
+ "nodetype" : "mandatory",
1838
+ "module" : "NETWORK-SERVICES-MIB"
1839
+ },
1840
+ "rdbmsGroup" : {
1841
+ "nodetype" : "mandatory",
1842
+ "module" : "RDBMS-MIB"
1843
+ },
1844
+ "rdbmsGroup" : {
1845
+ "nodetype" : "optional",
1846
+ "module" : "RDBMS-MIB",
1847
+ "description" :
1848
+ """The rdbmsGroup is mandatory, but no write access
1849
+ to objects is required for compliance.""",
1850
+ },
1851
+ }, # requires
1852
+ "refinements" : {
1853
+ "rdbmsDbContact" : {
1854
+ "module" : "RDBMS-MIB",
1855
+ "access" : "readonly",
1856
+ "description" :
1857
+ """A compliant system need not allow write-access to this
1858
+ object.""",
1859
+ },
1860
+ "rdbmsDbParamCurrValue" : {
1861
+ "module" : "RDBMS-MIB",
1862
+ "access" : "readonly",
1863
+ "description" :
1864
+ """A compliant system need not allow write-access to this
1865
+ object.""",
1866
+ },
1867
+ "rdbmsDbParamComment" : {
1868
+ "module" : "RDBMS-MIB",
1869
+ "access" : "readonly",
1870
+ "description" :
1871
+ """A compliant system need not allow write-access to this
1872
+ object.""",
1873
+ },
1874
+ "rdbmsDbLimitedResourceLimit" : {
1875
+ "module" : "RDBMS-MIB",
1876
+ "access" : "readonly",
1877
+ "description" :
1878
+ """A compliant system need not allow write-access to this
1879
+ object.""",
1880
+ },
1881
+ "rdbmsDbLimitedResourceDescription" : {
1882
+ "module" : "RDBMS-MIB",
1883
+ "access" : "readonly",
1884
+ "description" :
1885
+ """A compliant system need not allow write-access to this
1886
+ object.""",
1887
+ },
1888
+ "rdbmsSrvContact" : {
1889
+ "module" : "RDBMS-MIB",
1890
+ "access" : "readonly",
1891
+ "description" :
1892
+ """A compliant system need not allow write-access to this
1893
+ object.""",
1894
+ },
1895
+ "rdbmsSrvInfoMaxInboundAssociations" : {
1896
+ "module" : "RDBMS-MIB",
1897
+ "access" : "readonly",
1898
+ "description" :
1899
+ """A compliant system need not allow write-access to this
1900
+ object.""",
1901
+ },
1902
+ "rdbmsSrvParamCurrValue" : {
1903
+ "module" : "RDBMS-MIB",
1904
+ "access" : "readonly",
1905
+ "description" :
1906
+ """A compliant system need not allow write-access to this
1907
+ object.""",
1908
+ },
1909
+ "rdbmsSrvParamComment" : {
1910
+ "module" : "RDBMS-MIB",
1911
+ "access" : "readonly",
1912
+ "description" :
1913
+ """A compliant system need not allow write-access to this
1914
+ object.""",
1915
+ },
1916
+ "rdbmsSrvLimitedResourceLimit" : {
1917
+ "module" : "RDBMS-MIB",
1918
+ "access" : "readonly",
1919
+ "description" :
1920
+ """A compliant system need not allow write-access to this
1921
+ object.""",
1922
+ },
1923
+ "rdbmsSrvLimitedResourceDescription" : {
1924
+ "module" : "RDBMS-MIB",
1925
+ "access" : "readonly",
1926
+ "description" :
1927
+ """A compliant system need not allow write-access to this
1928
+ object.""",
1929
+ },
1930
+ }, # refinements
1931
+
1932
+ }, # compliance
1933
+ }, # compliances
1934
+
1935
+ }