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,2519 @@
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 Job-Monitoring-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/Job-Monitoring-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "Job-Monitoring-MIB",
11
+
12
+ "Job-Monitoring-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Printer Working Group (PWG)""",
17
+ "contact" :
18
+ """Tom Hastings
19
+ Postal: Xerox Corp.
20
+ Mail stop ESAE-231
21
+ 701 S. Aviation Blvd.
22
+ El Segundo, CA 90245
23
+
24
+ Tel: (301)333-6413
25
+ Fax: (301)333-5514
26
+ E-mail: hastings@cp10.es.xerox.com
27
+
28
+ Send questions and comments to the Printer Working Group (PWG)
29
+ using the Job Monitoring Project (JMP) Mailing List:
30
+ jmp@pwg.org
31
+
32
+ For further information, including how to subscribe to the
33
+ jmp mailing list, access the PWG web page under 'JMP':
34
+
35
+ http://www.pwg.org/
36
+
37
+ Implementers of this specification are encouraged to join the
38
+ jmp mailing list in order to participate in discussions on any
39
+ clarifications needed and registration proposals being reviewed
40
+ in order to achieve consensus.""",
41
+ "description" :
42
+ """The MIB module for monitoring job in servers, printers, and
43
+ other devices.
44
+
45
+ Version: 1.0""",
46
+ "revisions" : (
47
+ {
48
+ "date" : "1999-02-19 00:00",
49
+ "description" :
50
+ """ This version published as RFC 2707""",
51
+ },
52
+ ),
53
+ "identity node" : "jobmonMIB",
54
+ },
55
+
56
+ "imports" : (
57
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "enterprises"},
60
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
61
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
62
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
63
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
64
+ ),
65
+
66
+ "typedefs" : {
67
+ "JmUTF8StringTC" : {
68
+ "basetype" : "OctetString",
69
+ "status" : "current",
70
+ "ranges" : [
71
+ {
72
+ "min" : "0",
73
+ "max" : "63"
74
+ },
75
+ ],
76
+ "range" : {
77
+ "min" : "0",
78
+ "max" : "63"
79
+ },
80
+ "format" : "255a",
81
+ "description" :
82
+ """To facilitate internationalization, this TC represents
83
+ information taken from the ISO/IEC IS 10646-1 character set,
84
+ encoded as an octet string using the UTF-8 character encoding
85
+ scheme.
86
+
87
+ See section 3.6.1, entitled: 'Text generated by the server or
88
+ device'.""",
89
+ },
90
+ "JmJobStringTC" : {
91
+ "basetype" : "OctetString",
92
+ "status" : "current",
93
+ "ranges" : [
94
+ {
95
+ "min" : "0",
96
+ "max" : "63"
97
+ },
98
+ ],
99
+ "range" : {
100
+ "min" : "0",
101
+ "max" : "63"
102
+ },
103
+ "description" :
104
+ """To facilitate internationalization, this TC represents
105
+ information using any coded character set registered by IANA as
106
+ specified in section 3.7. While it is recommended that the
107
+ coded character set be UTF-8 [UTF-8], the actual coded
108
+ character set SHALL be indicated by the value of the
109
+ jobCodedCharSet(8) attribute for the job.
110
+
111
+ See section 3.6.2, entitled: 'Text supplied by the job
112
+ submitter'.""",
113
+ },
114
+ "JmNaturalLanguageTagTC" : {
115
+ "basetype" : "OctetString",
116
+ "status" : "current",
117
+ "ranges" : [
118
+ {
119
+ "min" : "0",
120
+ "max" : "63"
121
+ },
122
+ ],
123
+ "range" : {
124
+ "min" : "0",
125
+ "max" : "63"
126
+ },
127
+ "description" :
128
+ """An IETF RFC 1766-compliant 'language tag', with zero or more
129
+ sub-tags that identify a natural language. While RFC 1766
130
+ specifies that the US-ASCII values are case-insensitive, this
131
+ MIB specification requires that all characters SHALL be lower
132
+ case in order to simplify comparing by management applications.
133
+
134
+ See section 3.6.1, entitled: 'Text generated by the server or
135
+ device' and section 3.6.2, entitled: 'Text supplied by the job
136
+ submitter'.""",
137
+ },
138
+ "JmTimeStampTC" : {
139
+ "basetype" : "Integer32",
140
+ "status" : "current",
141
+ "ranges" : [
142
+ {
143
+ "min" : "0",
144
+ "max" : "2147483647"
145
+ },
146
+ ],
147
+ "range" : {
148
+ "min" : "0",
149
+ "max" : "2147483647"
150
+ },
151
+ "description" :
152
+ """The simple time at which an event took place. The units are
153
+ in seconds since the system was booted.
154
+
155
+ NOTE - JmTimeStampTC is defined in units of seconds, rather
156
+ than 100ths of seconds, so as to be simpler for agents to
157
+ implement (even if they have to implement the 100ths of a
158
+ second to comply with implementing sysUpTime in MIB-II[mib-
159
+ II].)
160
+
161
+ NOTE - JmTimeStampTC is defined as an Integer32 so that it can
162
+ be used as a value of an attribute, i.e., as a value of the
163
+ jmAttributeValueAsInteger object. The TimeStamp textual-
164
+ convention defined in SNMPv2-TC [SMIv2-TC] is defined as an
165
+ APPLICATION 3 IMPLICIT INTEGER tag, not an Integer32 which is
166
+ defined in SNMPv2-SMI [SMIv2-TC] as UNIVERSAL 2 IMPLICIT
167
+ INTEGER, so cannot be used in this MIB as one of the values of
168
+ jmAttributeValueAsInteger.""",
169
+ },
170
+ "JmJobSourcePlatformTypeTC" : {
171
+ "basetype" : "Enumeration",
172
+ "status" : "current",
173
+ "other" : {
174
+ "nodetype" : "namednumber",
175
+ "number" : "1"
176
+ },
177
+ "unknown" : {
178
+ "nodetype" : "namednumber",
179
+ "number" : "2"
180
+ },
181
+ "sptUNIX" : {
182
+ "nodetype" : "namednumber",
183
+ "number" : "3"
184
+ },
185
+ "sptOS2" : {
186
+ "nodetype" : "namednumber",
187
+ "number" : "4"
188
+ },
189
+ "sptPCDOS" : {
190
+ "nodetype" : "namednumber",
191
+ "number" : "5"
192
+ },
193
+ "sptNT" : {
194
+ "nodetype" : "namednumber",
195
+ "number" : "6"
196
+ },
197
+ "sptMVS" : {
198
+ "nodetype" : "namednumber",
199
+ "number" : "7"
200
+ },
201
+ "sptVM" : {
202
+ "nodetype" : "namednumber",
203
+ "number" : "8"
204
+ },
205
+ "sptOS400" : {
206
+ "nodetype" : "namednumber",
207
+ "number" : "9"
208
+ },
209
+ "sptVMS" : {
210
+ "nodetype" : "namednumber",
211
+ "number" : "10"
212
+ },
213
+ "sptWindows" : {
214
+ "nodetype" : "namednumber",
215
+ "number" : "11"
216
+ },
217
+ "sptNetWare" : {
218
+ "nodetype" : "namednumber",
219
+ "number" : "12"
220
+ },
221
+ "description" :
222
+ """The source platform type that can submit jobs to servers or
223
+ devices in any of the 3 configurations.
224
+
225
+ This is a type 2 enumeration. See Section 3.7.1.2. See also
226
+ IANA operating-system-names registry.""",
227
+ },
228
+ "JmFinishingTC" : {
229
+ "basetype" : "Enumeration",
230
+ "status" : "current",
231
+ "other" : {
232
+ "nodetype" : "namednumber",
233
+ "number" : "1"
234
+ },
235
+ "unknown" : {
236
+ "nodetype" : "namednumber",
237
+ "number" : "2"
238
+ },
239
+ "none" : {
240
+ "nodetype" : "namednumber",
241
+ "number" : "3"
242
+ },
243
+ "staple" : {
244
+ "nodetype" : "namednumber",
245
+ "number" : "4"
246
+ },
247
+ "punch" : {
248
+ "nodetype" : "namednumber",
249
+ "number" : "5"
250
+ },
251
+ "cover" : {
252
+ "nodetype" : "namednumber",
253
+ "number" : "6"
254
+ },
255
+ "bind" : {
256
+ "nodetype" : "namednumber",
257
+ "number" : "7"
258
+ },
259
+ "description" :
260
+ """The type of finishing operation.
261
+
262
+ These values are the same as the enum values of the IPP
263
+ 'finishings' attribute. See Section 3.7.1.2.
264
+
265
+ other(1),
266
+ Some other finishing operation besides one of the specified
267
+ or registered values.
268
+
269
+ unknown(2),
270
+ The finishing is unknown.
271
+
272
+ none(3),
273
+ Perform no finishing.
274
+
275
+ staple(4),
276
+ Bind the document(s) with one or more staples. The exact
277
+ number and placement of the staples is site-defined.
278
+
279
+ punch(5),
280
+ Holes are required in the finished document. The exact
281
+ number and placement of the holes is site-defined. The
282
+ punch specification MAY be satisfied (in a site- and
283
+ implementation-specific manner) either by
284
+ drilling/punching, or by substituting pre-drilled media.
285
+
286
+ cover(6),
287
+ Select a non-printed (or pre-printed) cover for the
288
+ document. This does not supplant the specification of a
289
+ printed cover (on cover stock medium) by the document
290
+ itself.
291
+
292
+ bind(7)
293
+ Binding is to be applied to the document; the type and
294
+ placement of the binding is product-specific.
295
+
296
+ This is a type 2 enumeration. See Section 3.7.1.2.""",
297
+ },
298
+ "JmPrintQualityTC" : {
299
+ "basetype" : "Enumeration",
300
+ "status" : "current",
301
+ "other" : {
302
+ "nodetype" : "namednumber",
303
+ "number" : "1"
304
+ },
305
+ "unknown" : {
306
+ "nodetype" : "namednumber",
307
+ "number" : "2"
308
+ },
309
+ "draft" : {
310
+ "nodetype" : "namednumber",
311
+ "number" : "3"
312
+ },
313
+ "normal" : {
314
+ "nodetype" : "namednumber",
315
+ "number" : "4"
316
+ },
317
+ "high" : {
318
+ "nodetype" : "namednumber",
319
+ "number" : "5"
320
+ },
321
+ "description" :
322
+ """Print quality settings.
323
+
324
+ These values are the same as the enum values of the IPP 'print-
325
+ quality' attribute. See Section 3.7.1.2.
326
+
327
+ This is a type 2 enumeration. See Section 3.7.1.2.""",
328
+ },
329
+ "JmPrinterResolutionTC" : {
330
+ "basetype" : "OctetString",
331
+ "status" : "current",
332
+ "ranges" : [
333
+ {
334
+ "min" : "9",
335
+ "max" : "9"
336
+ },
337
+ ],
338
+ "range" : {
339
+ "min" : "9",
340
+ "max" : "9"
341
+ },
342
+ "description" :
343
+ """Printer resolutions.
344
+
345
+ Nine octets consisting of two 4-octet SIGNED-INTEGERs followed
346
+ by a SIGNED-BYTE. The values are the same as those specified
347
+ in the Printer MIB [printmib]. The first SIGNED-INTEGER
348
+ contains the value of prtMarkerAddressabilityXFeedDir. The
349
+ second SIGNED-INTEGER contains the value of
350
+ prtMarkerAddressabilityFeedDir. The SIGNED-BYTE contains the
351
+ value of prtMarkerAddressabilityUnit.
352
+
353
+ Note: the latter value is either 3 (tenThousandsOfInches) or 4
354
+ (micrometers) and the addressability is in 10,000 units of
355
+ measure. Thus the SIGNED-INTEGERs represent integral values in
356
+ either dots-per-inch or dots-per-centimeter.
357
+
358
+ The syntax is the same as the IPP 'printer-resolution'
359
+ attribute. See Section 3.7.1.2.""",
360
+ },
361
+ "JmTonerEconomyTC" : {
362
+ "basetype" : "Enumeration",
363
+ "status" : "current",
364
+ "unknown" : {
365
+ "nodetype" : "namednumber",
366
+ "number" : "2"
367
+ },
368
+ "off" : {
369
+ "nodetype" : "namednumber",
370
+ "number" : "3"
371
+ },
372
+ "on" : {
373
+ "nodetype" : "namednumber",
374
+ "number" : "4"
375
+ },
376
+ "description" :
377
+ """Toner economy settings.
378
+
379
+ This is a type 2 enumeration. See Section 3.7.1.2.""",
380
+ },
381
+ "JmBooleanTC" : {
382
+ "basetype" : "Enumeration",
383
+ "status" : "current",
384
+ "unknown" : {
385
+ "nodetype" : "namednumber",
386
+ "number" : "2"
387
+ },
388
+ "false" : {
389
+ "nodetype" : "namednumber",
390
+ "number" : "3"
391
+ },
392
+ "true" : {
393
+ "nodetype" : "namednumber",
394
+ "number" : "4"
395
+ },
396
+ "description" :
397
+ """Boolean true or false value.
398
+
399
+ This is a type 2 enumeration. See Section 3.7.1.2.""",
400
+ },
401
+ "JmMediumTypeTC" : {
402
+ "basetype" : "Enumeration",
403
+ "status" : "current",
404
+ "other" : {
405
+ "nodetype" : "namednumber",
406
+ "number" : "1"
407
+ },
408
+ "unknown" : {
409
+ "nodetype" : "namednumber",
410
+ "number" : "2"
411
+ },
412
+ "stationery" : {
413
+ "nodetype" : "namednumber",
414
+ "number" : "3"
415
+ },
416
+ "transparency" : {
417
+ "nodetype" : "namednumber",
418
+ "number" : "4"
419
+ },
420
+ "envelope" : {
421
+ "nodetype" : "namednumber",
422
+ "number" : "5"
423
+ },
424
+ "envelopePlain" : {
425
+ "nodetype" : "namednumber",
426
+ "number" : "6"
427
+ },
428
+ "envelopeWindow" : {
429
+ "nodetype" : "namednumber",
430
+ "number" : "7"
431
+ },
432
+ "continuousLong" : {
433
+ "nodetype" : "namednumber",
434
+ "number" : "8"
435
+ },
436
+ "continuousShort" : {
437
+ "nodetype" : "namednumber",
438
+ "number" : "9"
439
+ },
440
+ "tabStock" : {
441
+ "nodetype" : "namednumber",
442
+ "number" : "10"
443
+ },
444
+ "multiPartForm" : {
445
+ "nodetype" : "namednumber",
446
+ "number" : "11"
447
+ },
448
+ "labels" : {
449
+ "nodetype" : "namednumber",
450
+ "number" : "12"
451
+ },
452
+ "multiLayer" : {
453
+ "nodetype" : "namednumber",
454
+ "number" : "13"
455
+ },
456
+ "description" :
457
+ """Identifies the type of medium.
458
+
459
+ other(1),
460
+ The type is neither one of the values listed in this
461
+ specification nor a registered value.
462
+
463
+ unknown(2),
464
+ The type is not known.
465
+
466
+ stationery(3),
467
+ Separately cut sheets of an opaque material.
468
+
469
+ transparency(4),
470
+ Separately cut sheets of a transparent material.
471
+
472
+ envelope(5),
473
+ Envelopes that can be used for conventional mailing
474
+ purposes.
475
+
476
+ envelopePlain(6),
477
+ Envelopes that are not preprinted and have no windows.
478
+
479
+ envelopeWindow(7),
480
+ Envelopes that have windows for addressing purposes.
481
+
482
+ continuousLong(8),
483
+ Continuously connected sheets of an opaque material
484
+ connected along the long edge.
485
+
486
+ continuousShort(9),
487
+ Continuously connected sheets of an opaque material
488
+ connected along the short edge.
489
+
490
+ tabStock(10),
491
+ Media with tabs.
492
+
493
+ multiPartForm(11),
494
+ Form medium composed of multiple layers not pre-attached to
495
+ one another; each sheet MAY be drawn separately from an
496
+ input source.
497
+
498
+ labels(12),
499
+ Label-stock.
500
+
501
+ multiLayer(13)
502
+ Form medium composed of multiple layers which are pre-
503
+ attached to one another, e.g. for use with impact printers.
504
+ This is a type 2 enumeration. See Section 3.7.1.2. These enum
505
+ values correspond to the keyword name strings of the
506
+ prtInputMediaType object in the Printer MIB [print-mib]. There
507
+ is no printer description attribute in IPP/1.0 that represents
508
+ these values.""",
509
+ },
510
+ "JmJobCollationTypeTC" : {
511
+ "basetype" : "Enumeration",
512
+ "status" : "current",
513
+ "other" : {
514
+ "nodetype" : "namednumber",
515
+ "number" : "1"
516
+ },
517
+ "unknown" : {
518
+ "nodetype" : "namednumber",
519
+ "number" : "2"
520
+ },
521
+ "uncollatedSheets" : {
522
+ "nodetype" : "namednumber",
523
+ "number" : "3"
524
+ },
525
+ "collatedDocuments" : {
526
+ "nodetype" : "namednumber",
527
+ "number" : "4"
528
+ },
529
+ "uncollatedDocuments" : {
530
+ "nodetype" : "namednumber",
531
+ "number" : "5"
532
+ },
533
+ "description" :
534
+ """This value is the type of job collation. Implementations that
535
+ don't support multiple documents or don't support multiple
536
+ copies SHALL NOT support the uncollatedDocuments(5) value.
537
+
538
+ This is a type 2 enumeration. See Section 3.7.1.2. See also
539
+ Section 3.4, entitled 'Monitoring Job Progress'.""",
540
+ },
541
+ "JmJobSubmissionIDTypeTC" : {
542
+ "basetype" : "OctetString",
543
+ "status" : "current",
544
+ "ranges" : [
545
+ {
546
+ "min" : "1",
547
+ "max" : "1"
548
+ },
549
+ ],
550
+ "range" : {
551
+ "min" : "1",
552
+ "max" : "1"
553
+ },
554
+ "description" :
555
+ """Identifies the format type of a job submission ID.
556
+
557
+ Each job submission ID is a fixed-length, 48-octet printable
558
+ US-ASCII [US-ASCII] coded character string containing no
559
+ control characters, consisting of the fields defined in section
560
+ 3.5.1.
561
+
562
+ This is like a type 2 enumeration. See section 3.7.3.""",
563
+ },
564
+ "JmJobStateTC" : {
565
+ "basetype" : "Enumeration",
566
+ "status" : "current",
567
+ "unknown" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "2"
570
+ },
571
+ "pending" : {
572
+ "nodetype" : "namednumber",
573
+ "number" : "3"
574
+ },
575
+ "pendingHeld" : {
576
+ "nodetype" : "namednumber",
577
+ "number" : "4"
578
+ },
579
+ "processing" : {
580
+ "nodetype" : "namednumber",
581
+ "number" : "5"
582
+ },
583
+ "processingStopped" : {
584
+ "nodetype" : "namednumber",
585
+ "number" : "6"
586
+ },
587
+ "canceled" : {
588
+ "nodetype" : "namednumber",
589
+ "number" : "7"
590
+ },
591
+ "aborted" : {
592
+ "nodetype" : "namednumber",
593
+ "number" : "8"
594
+ },
595
+ "completed" : {
596
+ "nodetype" : "namednumber",
597
+ "number" : "9"
598
+ },
599
+ "description" :
600
+ """The current state of the job (pending, processing, completed,
601
+ etc.). The following figure shows the normal job state
602
+ transitions:
603
+
604
+ +----> canceled(7)
605
+ /
606
+ +---> pending(3) -------> processing(5) ------+------> completed(9)
607
+ | ^ ^ \
608
+ --->+ | | +----> aborted(8)
609
+ | v v /
610
+ +---> pendingHeld(4) processingStopped(6) ---+
611
+
612
+
613
+ Figure 4 - Normal Job State Transitions
614
+
615
+ Normally a job progresses from left to right. Other state
616
+ transitions are unlikely, but are not forbidden. Not shown are
617
+ the transitions to the canceled state from the pending,
618
+ pendingHeld, and processingStopped states.
619
+
620
+ Jobs in the pending, processing, and processingStopped states
621
+ are called 'active', while jobs in the pendingHeld, canceled,
622
+ aborted, and completed states are called 'inactive'. Jobs
623
+ reach one of the three terminal states: completed, canceled, or
624
+ aborted, after the jobs have completed all activity, and all
625
+ MIB objects and attributes have reached their final values for
626
+ the job.
627
+ These values are the same as the enum values of the IPP 'job-
628
+ state' job attribute. See Section 3.7.1.2.
629
+
630
+ unknown(2),
631
+ The job state is not known, or its state is indeterminate.
632
+
633
+ pending(3),
634
+ The job is a candidate to start processing, but is not yet
635
+ processing.
636
+
637
+ pendingHeld(4),
638
+ The job is not a candidate for processing for any number of
639
+ reasons but will return to the pending state as soon as the
640
+ reasons are no longer present. The job's
641
+ jmJobStateReasons1 object and/or jobStateReasonsN (N=2..4)
642
+ attributes SHALL indicate why the job is no longer a
643
+ candidate for processing. The reasons are represented as
644
+ bits in the jmJobStateReasons1 object and/or
645
+ jobStateReasonsN (N=2..4) attributes. See the
646
+ JmJobStateReasonsNTC (N=1..4) textual convention for the
647
+ specification of each reason.
648
+
649
+ processing(5),
650
+ One or more of:
651
+
652
+ 1. the job is using, or is attempting to use, one or
653
+ more purely software processes that are analyzing,
654
+ creating, or interpreting a PDL, etc.,
655
+
656
+ 2. the job is using, or is attempting to use, one or
657
+ more hardware devices that are interpreting a PDL,
658
+ making mark on a medium, and/or performing finishing,
659
+ such as stapling, etc., OR
660
+
661
+ 3. (configuration 2) the server has made the job ready
662
+ for printing, but the output device is not yet printing
663
+ it, either because the job hasn't reached the output
664
+ device or because the job is queued in the output
665
+ device or some other spooler, awaiting the output
666
+ device to print it.
667
+
668
+ When the job is in the processing state, the entire job
669
+ state includes the detailed status represented in the
670
+ device MIB indicated by the hrDeviceIndex value of the
671
+ job's physicalDevice attribute, if the agent implements
672
+ such a device MIB.
673
+
674
+ Implementations MAY, though they NEED NOT, include
675
+ additional values in the job's jmJobStateReasons1 object
676
+ to indicate the progress of the job, such as adding the
677
+ jobPrinting value to indicate when the device is actually
678
+ making marks on a medium and/or the processingToStopPoint
679
+ value to indicate that the server or device is in the
680
+ process of canceling or aborting the job.
681
+
682
+ processingStopped(6),
683
+ The job has stopped while processing for any number of
684
+ reasons and will return to the processing state as soon
685
+ as the reasons are no longer present.
686
+
687
+ The job's jmJobStateReasons1 object and/or the job's
688
+ jobStateReasonsN (N=2..4) attributes MAY indicate why the
689
+ job has stopped processing. For example, if the output
690
+ device is stopped, the deviceStopped value MAY be
691
+ included in the job's jmJobStateReasons1 object.
692
+
693
+ NOTE - When an output device is stopped, the device
694
+ usually indicates its condition in human readable form
695
+ at the device. The management application can obtain
696
+ more complete device status remotely by querying the
697
+ appropriate device MIB using the job's deviceIndex
698
+ attribute(s), if the agent implements such a device MIB
699
+
700
+ canceled(7),
701
+ A client has canceled the job and the server or device
702
+ has completed canceling the job AND all MIB objects and
703
+ attributes have reached their final values for the job.
704
+ While the server or device is canceling the job, the
705
+ job's jmJobStateReasons1 object SHOULD contain the
706
+ processingToStopPoint value and one of the
707
+ canceledByUser, canceledByOperator, or canceledAtDevice
708
+ values. The canceledByUser, canceledByOperator, or
709
+ canceledAtDevice values remain while the job is in the
710
+ canceled state.
711
+
712
+ aborted(8),
713
+ The job has been aborted by the system, usually while the
714
+ job was in the processing or processingStopped state and
715
+ the server or device has completed aborting the job AND
716
+ all MIB objects and attributes have reached their final
717
+ values for the job. While the server or device is
718
+ aborting the job, the job's jmJobStateReasons1 object MAY
719
+ contain the processingToStopPoint and abortedBySystem
720
+ values. If implemented, the abortedBySystem value SHALL
721
+ remain while the job is in the aborted state.
722
+ completed(9)
723
+ The job has completed successfully or with warnings or
724
+ errors after processing and all of the media have been
725
+ successfully stacked in the appropriate output bin(s) AND
726
+ all MIB objects and attributes have reached their final
727
+ values for the job. The job's jmJobStateReasons1 object
728
+ SHOULD contain one of: completedSuccessfully,
729
+ completedWithWarnings, or completedWithErrors values.
730
+
731
+ This is a type 2 enumeration. See Section 3.7.1.2.""",
732
+ },
733
+ "JmAttributeTypeTC" : {
734
+ "basetype" : "Enumeration",
735
+ "status" : "current",
736
+ "other" : {
737
+ "nodetype" : "namednumber",
738
+ "number" : "1"
739
+ },
740
+ "jobStateReasons2" : {
741
+ "nodetype" : "namednumber",
742
+ "number" : "3"
743
+ },
744
+ "jobStateReasons3" : {
745
+ "nodetype" : "namednumber",
746
+ "number" : "4"
747
+ },
748
+ "jobStateReasons4" : {
749
+ "nodetype" : "namednumber",
750
+ "number" : "5"
751
+ },
752
+ "processingMessage" : {
753
+ "nodetype" : "namednumber",
754
+ "number" : "6"
755
+ },
756
+ "processingMessageNaturalLangTag" : {
757
+ "nodetype" : "namednumber",
758
+ "number" : "7"
759
+ },
760
+ "jobCodedCharSet" : {
761
+ "nodetype" : "namednumber",
762
+ "number" : "8"
763
+ },
764
+ "jobNaturalLanguageTag" : {
765
+ "nodetype" : "namednumber",
766
+ "number" : "9"
767
+ },
768
+ "jobURI" : {
769
+ "nodetype" : "namednumber",
770
+ "number" : "20"
771
+ },
772
+ "jobAccountName" : {
773
+ "nodetype" : "namednumber",
774
+ "number" : "21"
775
+ },
776
+ "serverAssignedJobName" : {
777
+ "nodetype" : "namednumber",
778
+ "number" : "22"
779
+ },
780
+ "jobName" : {
781
+ "nodetype" : "namednumber",
782
+ "number" : "23"
783
+ },
784
+ "jobServiceTypes" : {
785
+ "nodetype" : "namednumber",
786
+ "number" : "24"
787
+ },
788
+ "jobSourceChannelIndex" : {
789
+ "nodetype" : "namednumber",
790
+ "number" : "25"
791
+ },
792
+ "jobSourcePlatformType" : {
793
+ "nodetype" : "namednumber",
794
+ "number" : "26"
795
+ },
796
+ "submittingServerName" : {
797
+ "nodetype" : "namednumber",
798
+ "number" : "27"
799
+ },
800
+ "submittingApplicationName" : {
801
+ "nodetype" : "namednumber",
802
+ "number" : "28"
803
+ },
804
+ "jobOriginatingHost" : {
805
+ "nodetype" : "namednumber",
806
+ "number" : "29"
807
+ },
808
+ "deviceNameRequested" : {
809
+ "nodetype" : "namednumber",
810
+ "number" : "30"
811
+ },
812
+ "queueNameRequested" : {
813
+ "nodetype" : "namednumber",
814
+ "number" : "31"
815
+ },
816
+ "physicalDevice" : {
817
+ "nodetype" : "namednumber",
818
+ "number" : "32"
819
+ },
820
+ "numberOfDocuments" : {
821
+ "nodetype" : "namednumber",
822
+ "number" : "33"
823
+ },
824
+ "fileName" : {
825
+ "nodetype" : "namednumber",
826
+ "number" : "34"
827
+ },
828
+ "documentName" : {
829
+ "nodetype" : "namednumber",
830
+ "number" : "35"
831
+ },
832
+ "jobComment" : {
833
+ "nodetype" : "namednumber",
834
+ "number" : "36"
835
+ },
836
+ "documentFormatIndex" : {
837
+ "nodetype" : "namednumber",
838
+ "number" : "37"
839
+ },
840
+ "documentFormat" : {
841
+ "nodetype" : "namednumber",
842
+ "number" : "38"
843
+ },
844
+ "jobPriority" : {
845
+ "nodetype" : "namednumber",
846
+ "number" : "50"
847
+ },
848
+ "jobProcessAfterDateAndTime" : {
849
+ "nodetype" : "namednumber",
850
+ "number" : "51"
851
+ },
852
+ "jobHold" : {
853
+ "nodetype" : "namednumber",
854
+ "number" : "52"
855
+ },
856
+ "jobHoldUntil" : {
857
+ "nodetype" : "namednumber",
858
+ "number" : "53"
859
+ },
860
+ "outputBin" : {
861
+ "nodetype" : "namednumber",
862
+ "number" : "54"
863
+ },
864
+ "sides" : {
865
+ "nodetype" : "namednumber",
866
+ "number" : "55"
867
+ },
868
+ "finishing" : {
869
+ "nodetype" : "namednumber",
870
+ "number" : "56"
871
+ },
872
+ "printQualityRequested" : {
873
+ "nodetype" : "namednumber",
874
+ "number" : "70"
875
+ },
876
+ "printQualityUsed" : {
877
+ "nodetype" : "namednumber",
878
+ "number" : "71"
879
+ },
880
+ "printerResolutionRequested" : {
881
+ "nodetype" : "namednumber",
882
+ "number" : "72"
883
+ },
884
+ "printerResolutionUsed" : {
885
+ "nodetype" : "namednumber",
886
+ "number" : "73"
887
+ },
888
+ "tonerEcomonyRequested" : {
889
+ "nodetype" : "namednumber",
890
+ "number" : "74"
891
+ },
892
+ "tonerEcomonyUsed" : {
893
+ "nodetype" : "namednumber",
894
+ "number" : "75"
895
+ },
896
+ "tonerDensityRequested" : {
897
+ "nodetype" : "namednumber",
898
+ "number" : "76"
899
+ },
900
+ "tonerDensityUsed" : {
901
+ "nodetype" : "namednumber",
902
+ "number" : "77"
903
+ },
904
+ "jobCopiesRequested" : {
905
+ "nodetype" : "namednumber",
906
+ "number" : "90"
907
+ },
908
+ "jobCopiesCompleted" : {
909
+ "nodetype" : "namednumber",
910
+ "number" : "91"
911
+ },
912
+ "documentCopiesRequested" : {
913
+ "nodetype" : "namednumber",
914
+ "number" : "92"
915
+ },
916
+ "documentCopiesCompleted" : {
917
+ "nodetype" : "namednumber",
918
+ "number" : "93"
919
+ },
920
+ "jobKOctetsTransferred" : {
921
+ "nodetype" : "namednumber",
922
+ "number" : "94"
923
+ },
924
+ "sheetCompletedCopyNumber" : {
925
+ "nodetype" : "namednumber",
926
+ "number" : "95"
927
+ },
928
+ "sheetCompletedDocumentNumber" : {
929
+ "nodetype" : "namednumber",
930
+ "number" : "96"
931
+ },
932
+ "jobCollationType" : {
933
+ "nodetype" : "namednumber",
934
+ "number" : "97"
935
+ },
936
+ "impressionsSpooled" : {
937
+ "nodetype" : "namednumber",
938
+ "number" : "110"
939
+ },
940
+ "impressionsSentToDevice" : {
941
+ "nodetype" : "namednumber",
942
+ "number" : "111"
943
+ },
944
+ "impressionsInterpreted" : {
945
+ "nodetype" : "namednumber",
946
+ "number" : "112"
947
+ },
948
+ "impressionsCompletedCurrentCopy" : {
949
+ "nodetype" : "namednumber",
950
+ "number" : "113"
951
+ },
952
+ "fullColorImpressionsCompleted" : {
953
+ "nodetype" : "namednumber",
954
+ "number" : "114"
955
+ },
956
+ "highlightColorImpressionsCompleted" : {
957
+ "nodetype" : "namednumber",
958
+ "number" : "115"
959
+ },
960
+ "pagesRequested" : {
961
+ "nodetype" : "namednumber",
962
+ "number" : "130"
963
+ },
964
+ "pagesCompleted" : {
965
+ "nodetype" : "namednumber",
966
+ "number" : "131"
967
+ },
968
+ "pagesCompletedCurrentCopy" : {
969
+ "nodetype" : "namednumber",
970
+ "number" : "132"
971
+ },
972
+ "sheetsRequested" : {
973
+ "nodetype" : "namednumber",
974
+ "number" : "150"
975
+ },
976
+ "sheetsCompleted" : {
977
+ "nodetype" : "namednumber",
978
+ "number" : "151"
979
+ },
980
+ "sheetsCompletedCurrentCopy" : {
981
+ "nodetype" : "namednumber",
982
+ "number" : "152"
983
+ },
984
+ "mediumRequested" : {
985
+ "nodetype" : "namednumber",
986
+ "number" : "170"
987
+ },
988
+ "mediumConsumed" : {
989
+ "nodetype" : "namednumber",
990
+ "number" : "171"
991
+ },
992
+ "colorantRequested" : {
993
+ "nodetype" : "namednumber",
994
+ "number" : "172"
995
+ },
996
+ "colorantConsumed" : {
997
+ "nodetype" : "namednumber",
998
+ "number" : "173"
999
+ },
1000
+ "mediumTypeConsumed" : {
1001
+ "nodetype" : "namednumber",
1002
+ "number" : "174"
1003
+ },
1004
+ "mediumSizeConsumed" : {
1005
+ "nodetype" : "namednumber",
1006
+ "number" : "175"
1007
+ },
1008
+ "jobSubmissionToServerTime" : {
1009
+ "nodetype" : "namednumber",
1010
+ "number" : "190"
1011
+ },
1012
+ "jobSubmissionTime" : {
1013
+ "nodetype" : "namednumber",
1014
+ "number" : "191"
1015
+ },
1016
+ "jobStartedBeingHeldTime" : {
1017
+ "nodetype" : "namednumber",
1018
+ "number" : "192"
1019
+ },
1020
+ "jobStartedProcessingTime" : {
1021
+ "nodetype" : "namednumber",
1022
+ "number" : "193"
1023
+ },
1024
+ "jobCompletionTime" : {
1025
+ "nodetype" : "namednumber",
1026
+ "number" : "194"
1027
+ },
1028
+ "jobProcessingCPUTime" : {
1029
+ "nodetype" : "namednumber",
1030
+ "number" : "195"
1031
+ },
1032
+ "description" :
1033
+ """The type of the attribute which identifies the attribute.
1034
+
1035
+ NOTE - The enum assignments are grouped logically with values
1036
+ assigned in groups of 20, so that additional values may be
1037
+ registered in the future and assigned a value that is part of
1038
+ their logical grouping.
1039
+
1040
+ Values in the range 2**30 to 2**31-1 are reserved for private
1041
+ or experimental usage. This range corresponds to the same
1042
+ range reserved in IPP. Implementers are warned that use of
1043
+ such values may conflict with other implementations.
1044
+ Implementers are encouraged to request registration of enum
1045
+ values following the procedures in Section 3.7.1.
1046
+
1047
+ See Section 3.2 entitled 'The Attribute Mechanism' for a
1048
+ description of this textual-convention and its use in the
1049
+ jmAttributeTable. See Section 3.3.8 for the specification of
1050
+ each attribute. The comment(s) after each enum assignment
1051
+ specifies the data type(s) of the attribute.
1052
+
1053
+ This is a type 2 enumeration. See Section 3.7.1.2.""",
1054
+ },
1055
+ "JmJobServiceTypesTC" : {
1056
+ "basetype" : "Integer32",
1057
+ "status" : "current",
1058
+ "ranges" : [
1059
+ {
1060
+ "min" : "0",
1061
+ "max" : "2147483647"
1062
+ },
1063
+ ],
1064
+ "range" : {
1065
+ "min" : "0",
1066
+ "max" : "2147483647"
1067
+ },
1068
+ "description" :
1069
+ """Specifies the type(s) of service to which the job has been
1070
+ submitted (print, fax, scan, etc.). The service type is
1071
+ represented as an enum that is bit encoded with each job
1072
+ service type so that more general and arbitrary services can be
1073
+ created, such as services with more than one destination type,
1074
+ or ones with only a source or only a destination. For example,
1075
+ a job service might scan, faxOut, and print a single job. In
1076
+ this case, three bits would be set in the jobServiceTypes
1077
+ attribute, corresponding to the hexadecimal values: 0x8 + 0x20
1078
+ + 0x4, respectively, yielding: 0x2C.
1079
+
1080
+ Whether this attribute is set from a job attribute supplied by
1081
+ the job submission client or is set by the recipient job
1082
+ submission server or device depends on the job submission
1083
+ protocol. With either implementation, the agent SHALL return a
1084
+ non-zero value for this attribute indicating the type of the
1085
+ job.
1086
+
1087
+ One of the purposes of this attribute is to permit a requester
1088
+ to filter out jobs that are not of interest. For example, a
1089
+ printer operator MAY only be interested in jobs that include
1090
+ printing. That is why the attribute is in the job
1091
+ identification category.
1092
+
1093
+ The following service component types are defined (in
1094
+ hexadecimal) and are assigned a separate bit value for use with
1095
+ the jobServiceTypes attribute:
1096
+
1097
+ other 0x1
1098
+ The job contains some instructions that are not one of the
1099
+ identified types.
1100
+
1101
+ unknown 0x2
1102
+ The job contains some instructions whose type is unknown to
1103
+ the agent.
1104
+
1105
+ print 0x4
1106
+ The job contains some instructions that specify printing
1107
+
1108
+ scan 0x8
1109
+ The job contains some instructions that specify scanning
1110
+
1111
+ faxIn 0x10
1112
+ The job contains some instructions that specify receive fax
1113
+
1114
+ faxOut 0x20
1115
+ The job contains some instructions that specify sending fax
1116
+
1117
+ getFile 0x40
1118
+ The job contains some instructions that specify accessing
1119
+ files or documents
1120
+
1121
+ putFile 0x80
1122
+ The job contains some instructions that specify storing
1123
+ files or documents
1124
+
1125
+ mailList 0x100
1126
+ The job contains some instructions that specify
1127
+ distribution of documents using an electronic mail system.
1128
+
1129
+ These bit definitions are the equivalent of a type 2 enum
1130
+ except that combinations of them MAY be used together. See
1131
+ section 3.7.1.2.""",
1132
+ },
1133
+ "JmJobStateReasons1TC" : {
1134
+ "basetype" : "Integer32",
1135
+ "status" : "current",
1136
+ "ranges" : [
1137
+ {
1138
+ "min" : "0",
1139
+ "max" : "2147483647"
1140
+ },
1141
+ ],
1142
+ "range" : {
1143
+ "min" : "0",
1144
+ "max" : "2147483647"
1145
+ },
1146
+ "description" :
1147
+ """The JmJobStateReasonsNTC (N=1..4) textual-conventions are used
1148
+ with the jmJobStateReasons1 object and jobStateReasonsN
1149
+ (N=2..4), respectively, to provide additional information
1150
+ regarding the current jmJobState object value. These values
1151
+ MAY be used with any job state or states for which the reason
1152
+ makes sense. See section 3.3.9.1 for the specification of each
1153
+ bit value defined for use with the JmJobStateReasons1TC.
1154
+
1155
+ These bit definitions are the equivalent of a type 2 enum
1156
+ except that combinations of bits may be used together. See
1157
+ section 3.7.1.2.""",
1158
+ },
1159
+ "JmJobStateReasons2TC" : {
1160
+ "basetype" : "Integer32",
1161
+ "status" : "current",
1162
+ "ranges" : [
1163
+ {
1164
+ "min" : "0",
1165
+ "max" : "2147483647"
1166
+ },
1167
+ ],
1168
+ "range" : {
1169
+ "min" : "0",
1170
+ "max" : "2147483647"
1171
+ },
1172
+ "description" :
1173
+ """This textual-convention is used with the jobStateReasons2
1174
+ attribute to provides additional information regarding the
1175
+ jmJobState object. See section 3.3.9.2 for the specification
1176
+ of JmJobStateReasons2TC. See section 3.3.9.1 for the
1177
+ description under JmJobStateReasons1TC for additional
1178
+ information that applies to all reasons.
1179
+
1180
+ These bit definitions are the equivalent of a type 2 enum
1181
+ except that combinations of them may be used together. See
1182
+ section 3.7.1.2.""",
1183
+ },
1184
+ "JmJobStateReasons3TC" : {
1185
+ "basetype" : "Integer32",
1186
+ "status" : "current",
1187
+ "ranges" : [
1188
+ {
1189
+ "min" : "0",
1190
+ "max" : "2147483647"
1191
+ },
1192
+ ],
1193
+ "range" : {
1194
+ "min" : "0",
1195
+ "max" : "2147483647"
1196
+ },
1197
+ "description" :
1198
+ """This textual-convention is used with the jobStateReasons3
1199
+ attribute to provides additional information regarding the
1200
+ jmJobState object. See section 3.3.9.3 for the specification
1201
+ of JmJobStateReasons3TC. See section 3.3.9.1 for the
1202
+ description under JmJobStateReasons1TC for additional
1203
+ information that applies to all reasons.
1204
+
1205
+ These bit definitions are the equivalent of a type 2 enum
1206
+ except that combinations of them may be used together. See
1207
+ section 3.7.1.2. """,
1208
+ },
1209
+ "JmJobStateReasons4TC" : {
1210
+ "basetype" : "Integer32",
1211
+ "status" : "current",
1212
+ "ranges" : [
1213
+ {
1214
+ "min" : "0",
1215
+ "max" : "2147483647"
1216
+ },
1217
+ ],
1218
+ "range" : {
1219
+ "min" : "0",
1220
+ "max" : "2147483647"
1221
+ },
1222
+ "description" :
1223
+ """This textual-convention is used in the jobStateReasons4
1224
+ attribute to provides additional information regarding the
1225
+ jmJobState object. See section 3.3.9.4 for the specification
1226
+ of JmJobStateReasons4TC. See section 3.3.9.1 for the
1227
+ description under JmJobStateReasons1TC for additional
1228
+ information that applies to all reasons.
1229
+
1230
+ These bit definitions are the equivalent of a type 2 enum
1231
+ except that combinations of them may be used together. See
1232
+ section 3.7.1.2.""",
1233
+ },
1234
+ }, # typedefs
1235
+
1236
+ "nodes" : {
1237
+ "jobmonMIB" : {
1238
+ "nodetype" : "node",
1239
+ "moduleName" : "Job-Monitoring-MIB",
1240
+ "oid" : "1.3.6.1.4.1.2699.1.1",
1241
+ "status" : "current",
1242
+ }, # node
1243
+ "jobmonMIBObjects" : {
1244
+ "nodetype" : "node",
1245
+ "moduleName" : "Job-Monitoring-MIB",
1246
+ "oid" : "1.3.6.1.4.1.2699.1.1.1",
1247
+ }, # node
1248
+ "jmGeneral" : {
1249
+ "nodetype" : "node",
1250
+ "moduleName" : "Job-Monitoring-MIB",
1251
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1",
1252
+ }, # node
1253
+ "jmGeneralTable" : {
1254
+ "nodetype" : "table",
1255
+ "moduleName" : "Job-Monitoring-MIB",
1256
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1",
1257
+ "status" : "current",
1258
+ "description" :
1259
+ """The jmGeneralTable consists of information of a general nature
1260
+ that are per-job-set, but are not per-job. See Section 2
1261
+ entitled 'Terminology and Job Model' for the definition of a
1262
+ job set.
1263
+
1264
+ The MANDATORY-GROUP macro specifies that this group is
1265
+ MANDATORY.""",
1266
+ }, # table
1267
+ "jmGeneralEntry" : {
1268
+ "nodetype" : "row",
1269
+ "moduleName" : "Job-Monitoring-MIB",
1270
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1",
1271
+ "status" : "current",
1272
+ "linkage" : [
1273
+ "jmGeneralJobSetIndex",
1274
+ ],
1275
+ "description" :
1276
+ """Information about a job set (queue).
1277
+
1278
+ An entry SHALL exist in this table for each job set.""",
1279
+ }, # row
1280
+ "jmGeneralJobSetIndex" : {
1281
+ "nodetype" : "column",
1282
+ "moduleName" : "Job-Monitoring-MIB",
1283
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1.1",
1284
+ "status" : "current",
1285
+ "syntax" : {
1286
+ "type" : {
1287
+ "basetype" : "Integer32",
1288
+ "ranges" : [
1289
+ {
1290
+ "min" : "1",
1291
+ "max" : "32767"
1292
+ },
1293
+ ],
1294
+ "range" : {
1295
+ "min" : "1",
1296
+ "max" : "32767"
1297
+ },
1298
+ },
1299
+ },
1300
+ "access" : "noaccess",
1301
+ "description" :
1302
+ """A unique value for each job set in this MIB. The jmJobTable
1303
+ and jmAttributeTable tables have this same index as their
1304
+ primary index.
1305
+
1306
+ The value(s) of the jmGeneralJobSetIndex SHALL be persistent
1307
+ across power cycles, so that clients that have retained
1308
+ jmGeneralJobSetIndex values will access the same job sets upon
1309
+ subsequent power-up.
1310
+
1311
+ An implementation that has only one job set, such as a printer
1312
+ with a single queue, SHALL hard code this object with the value
1313
+ 1.
1314
+
1315
+ See Section 2 entitled 'Terminology and Job Model' for the
1316
+ definition of a job set.
1317
+ Corresponds to the first index in jmJobTable and
1318
+ jmAttributeTable.""",
1319
+ }, # column
1320
+ "jmGeneralNumberOfActiveJobs" : {
1321
+ "nodetype" : "column",
1322
+ "moduleName" : "Job-Monitoring-MIB",
1323
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1.2",
1324
+ "status" : "current",
1325
+ "syntax" : {
1326
+ "type" : {
1327
+ "basetype" : "Integer32",
1328
+ "ranges" : [
1329
+ {
1330
+ "min" : "0",
1331
+ "max" : "2147483647"
1332
+ },
1333
+ ],
1334
+ "range" : {
1335
+ "min" : "0",
1336
+ "max" : "2147483647"
1337
+ },
1338
+ },
1339
+ },
1340
+ "access" : "readonly",
1341
+ "default" : "0",
1342
+ "description" :
1343
+ """The current number of 'active' jobs in the jmJobIDTable,
1344
+ jmJobTable, and jmAttributeTable, i.e., the total number of
1345
+ jobs that are in the pending, processing, or processingStopped
1346
+ states. See the JmJobStateTC textual-convention for the exact
1347
+ specification of the semantics of the job states.""",
1348
+ }, # column
1349
+ "jmGeneralOldestActiveJobIndex" : {
1350
+ "nodetype" : "column",
1351
+ "moduleName" : "Job-Monitoring-MIB",
1352
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1.3",
1353
+ "status" : "current",
1354
+ "syntax" : {
1355
+ "type" : {
1356
+ "basetype" : "Integer32",
1357
+ "ranges" : [
1358
+ {
1359
+ "min" : "0",
1360
+ "max" : "2147483647"
1361
+ },
1362
+ ],
1363
+ "range" : {
1364
+ "min" : "0",
1365
+ "max" : "2147483647"
1366
+ },
1367
+ },
1368
+ },
1369
+ "access" : "readonly",
1370
+ "default" : "0",
1371
+ "description" :
1372
+ """The jmJobIndex of the oldest job that is still in one of the
1373
+ 'active' states (pending, processing, or processingStopped).
1374
+ In other words, the index of the 'active' job that has been in
1375
+ the job tables the longest.
1376
+
1377
+ If there are no active jobs, the agent SHALL set the value of
1378
+ this object to 0.
1379
+
1380
+ See Section 3.2 entitled 'The Job Tables and the Oldest Active
1381
+ and Newest Active Indexes' for a description of the usage of
1382
+ this object.""",
1383
+ }, # column
1384
+ "jmGeneralNewestActiveJobIndex" : {
1385
+ "nodetype" : "column",
1386
+ "moduleName" : "Job-Monitoring-MIB",
1387
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1.4",
1388
+ "status" : "current",
1389
+ "syntax" : {
1390
+ "type" : {
1391
+ "basetype" : "Integer32",
1392
+ "ranges" : [
1393
+ {
1394
+ "min" : "0",
1395
+ "max" : "2147483647"
1396
+ },
1397
+ ],
1398
+ "range" : {
1399
+ "min" : "0",
1400
+ "max" : "2147483647"
1401
+ },
1402
+ },
1403
+ },
1404
+ "access" : "readonly",
1405
+ "default" : "0",
1406
+ "description" :
1407
+ """The jmJobIndex of the newest job that is in one of the
1408
+ 'active' states (pending, processing, or processingStopped).
1409
+ In other words, the index of the 'active' job that has been
1410
+ most recently added to the job tables.
1411
+
1412
+ When all jobs become 'inactive', i.e., enter the pendingHeld,
1413
+ completed, canceled, or aborted states, the agent SHALL set the
1414
+ value of this object to 0.
1415
+
1416
+ See Section 3.2 entitled 'The Job Tables and the Oldest Active
1417
+ and Newest Active Indexes' for a description of the usage of
1418
+ this object.""",
1419
+ }, # column
1420
+ "jmGeneralJobPersistence" : {
1421
+ "nodetype" : "column",
1422
+ "moduleName" : "Job-Monitoring-MIB",
1423
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1.5",
1424
+ "status" : "current",
1425
+ "syntax" : {
1426
+ "type" : {
1427
+ "basetype" : "Integer32",
1428
+ "ranges" : [
1429
+ {
1430
+ "min" : "15",
1431
+ "max" : "2147483647"
1432
+ },
1433
+ ],
1434
+ "range" : {
1435
+ "min" : "15",
1436
+ "max" : "2147483647"
1437
+ },
1438
+ },
1439
+ },
1440
+ "access" : "readonly",
1441
+ "default" : "60",
1442
+ "units" : "seconds",
1443
+ "description" :
1444
+ """The minimum time in seconds for this instance of the Job Set
1445
+ that an entry SHALL remain in the jmJobIDTable and jmJobTable
1446
+ after processing has completed, i.e., the minimum time in
1447
+ seconds starting when the job enters the completed, canceled,
1448
+ or aborted state.
1449
+
1450
+ Configuring this object is implementation-dependent.
1451
+
1452
+ This value SHALL be equal to or greater than the value of
1453
+ jmGeneralAttributePersistence. This value SHOULD be at least
1454
+ 60 which gives a monitoring or accounting application one
1455
+ minute in which to poll for job data.""",
1456
+ }, # column
1457
+ "jmGeneralAttributePersistence" : {
1458
+ "nodetype" : "column",
1459
+ "moduleName" : "Job-Monitoring-MIB",
1460
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1.6",
1461
+ "status" : "current",
1462
+ "syntax" : {
1463
+ "type" : {
1464
+ "basetype" : "Integer32",
1465
+ "ranges" : [
1466
+ {
1467
+ "min" : "15",
1468
+ "max" : "2147483647"
1469
+ },
1470
+ ],
1471
+ "range" : {
1472
+ "min" : "15",
1473
+ "max" : "2147483647"
1474
+ },
1475
+ },
1476
+ },
1477
+ "access" : "readonly",
1478
+ "default" : "60",
1479
+ "units" : "seconds",
1480
+ "description" :
1481
+ """The minimum time in seconds for this instance of the Job Set
1482
+ that an entry SHALL remain in the jmAttributeTable after
1483
+ processing has completed , i.e., the time in seconds starting
1484
+ when the job enters the completed, canceled, or aborted state.
1485
+
1486
+ Configuring this object is implementation-dependent.
1487
+
1488
+ This value SHOULD be at least 60 which gives a monitoring or
1489
+ accounting application one minute in which to poll for job
1490
+ data.""",
1491
+ }, # column
1492
+ "jmGeneralJobSetName" : {
1493
+ "nodetype" : "column",
1494
+ "moduleName" : "Job-Monitoring-MIB",
1495
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.1.1.1.7",
1496
+ "status" : "current",
1497
+ "syntax" : {
1498
+ "type" : {
1499
+ "basetype" : "OctetString",
1500
+ "parent module" : {
1501
+ "name" : "Job-Monitoring-MIB",
1502
+ "type" : "JmUTF8StringTC",
1503
+ },
1504
+ "ranges" : [
1505
+ {
1506
+ "min" : "0",
1507
+ "max" : "63"
1508
+ },
1509
+ ],
1510
+ "range" : {
1511
+ "min" : "0",
1512
+ "max" : "63"
1513
+ },
1514
+ },
1515
+ },
1516
+ "access" : "readonly",
1517
+ "default" : "",
1518
+ "description" :
1519
+ """The human readable name of this job set assigned by the system
1520
+ administrator (by means outside of this MIB). Typically, this
1521
+ name SHOULD be the name of the job queue. If a server or
1522
+ device has only a single job set, this object can be the
1523
+ administratively assigned name of the server or device itself.
1524
+ This name does not need to be unique, though each job set in a
1525
+ single Job Monitoring MIB SHOULD have distinct names.
1526
+
1527
+ NOTE - If the job set corresponds to a single printer and the
1528
+ Printer MIB is implemented, this value SHOULD be the same as
1529
+ the prtGeneralPrinterName object in the draft Printer MIB
1530
+ [print-mib-draft]. If the job set corresponds to an IPP
1531
+ Printer, this value SHOULD be the same as the IPP 'printer-
1532
+ name' Printer attribute.
1533
+
1534
+ NOTE - The purpose of this object is to help the user of the
1535
+ job monitoring application distinguish between several job sets
1536
+ in implementations that support more than one job set.
1537
+
1538
+ See the OBJECT compliance macro for the minimum maximum length
1539
+ required for conformance.""",
1540
+ }, # column
1541
+ "jmJobID" : {
1542
+ "nodetype" : "node",
1543
+ "moduleName" : "Job-Monitoring-MIB",
1544
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.2",
1545
+ }, # node
1546
+ "jmJobIDTable" : {
1547
+ "nodetype" : "table",
1548
+ "moduleName" : "Job-Monitoring-MIB",
1549
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.2.1",
1550
+ "status" : "current",
1551
+ "description" :
1552
+ """The jmJobIDTable provides a correspondence map (1) between the
1553
+ job submission ID that a client uses to refer to a job and (2)
1554
+ the jmGeneralJobSetIndex and jmJobIndex that the Job Monitoring
1555
+ MIB agent assigned to the job and that are used to access the
1556
+ job in all of the other tables in the MIB. If a monitoring
1557
+ application already knows the jmGeneralJobSetIndex and the
1558
+ jmJobIndex of the job it is querying, that application NEED NOT
1559
+ use the jmJobIDTable.
1560
+
1561
+ The MANDATORY-GROUP macro specifies that this group is
1562
+ MANDATORY.""",
1563
+ }, # table
1564
+ "jmJobIDEntry" : {
1565
+ "nodetype" : "row",
1566
+ "moduleName" : "Job-Monitoring-MIB",
1567
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.2.1.1",
1568
+ "status" : "current",
1569
+ "linkage" : [
1570
+ "jmJobSubmissionID",
1571
+ ],
1572
+ "description" :
1573
+ """The map from (1) the jmJobSubmissionID to (2) the
1574
+ jmGeneralJobSetIndex and jmJobIndex.
1575
+
1576
+ An entry SHALL exist in this table for each job currently known
1577
+ to the agent for all job sets and job states. There MAY be
1578
+ more than one jmJobIDEntry that maps to a single job. This
1579
+ many to one mapping can occur when more than one network entity
1580
+ along the job submission path supplies a job submission ID.
1581
+ See Section 3.5. However, each job SHALL appear once and in
1582
+ one and only one job set.""",
1583
+ }, # row
1584
+ "jmJobSubmissionID" : {
1585
+ "nodetype" : "column",
1586
+ "moduleName" : "Job-Monitoring-MIB",
1587
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.2.1.1.1",
1588
+ "status" : "current",
1589
+ "syntax" : {
1590
+ "type" : {
1591
+ "basetype" : "OctetString",
1592
+ "ranges" : [
1593
+ {
1594
+ "min" : "48",
1595
+ "max" : "48"
1596
+ },
1597
+ ],
1598
+ "range" : {
1599
+ "min" : "48",
1600
+ "max" : "48"
1601
+ },
1602
+ },
1603
+ },
1604
+ "access" : "noaccess",
1605
+ "description" :
1606
+ """A quasi-unique 48-octet fixed-length string ID which
1607
+ identifies the job within a particular client-server
1608
+ environment. There are multiple formats for the
1609
+ jmJobSubmissionID. Each format SHALL be uniquely identified.
1610
+ See the JmJobSubmissionIDTypeTC textual convention. Each
1611
+ format SHALL be registered using the procedures of a type 2
1612
+ enum. See section 3.7.3 entitled: 'PWG Registration of Job
1613
+ Submission Id Formats'.
1614
+
1615
+ If the requester (client or server) does not supply a job
1616
+ submission ID in the job submission protocol, then the
1617
+ recipient (server or device) SHALL assign a job submission ID
1618
+ using any of the standard formats that have been reserved for
1619
+ agents and adding the final 8 octets to distinguish the ID from
1620
+ others submitted from the same requester.
1621
+
1622
+ The monitoring application, whether in the client or running
1623
+ separately, MAY use the job submission ID to help identify
1624
+ which jmJobIndex was assigned by the agent, i.e., in which row
1625
+ the job information is in the other tables.
1626
+
1627
+ NOTE - fixed-length is used so that a management application
1628
+ can use a shortened GetNext varbind (in SNMPv1 and SNMPv2) in
1629
+ order to get the next submission ID, disregarding the remainder
1630
+ of the ID in order to access jobs independent of the trailing
1631
+ identifier part, e.g., to get all jobs submitted by a
1632
+ particular jmJobOwner or submitted from a particular MAC
1633
+ address.
1634
+
1635
+ See the JmJobSubmissionIDTypeTC textual convention.
1636
+ See APPENDIX B - Support of Job Submission Protocols.""",
1637
+ }, # column
1638
+ "jmJobIDJobSetIndex" : {
1639
+ "nodetype" : "column",
1640
+ "moduleName" : "Job-Monitoring-MIB",
1641
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.2.1.1.2",
1642
+ "status" : "current",
1643
+ "syntax" : {
1644
+ "type" : {
1645
+ "basetype" : "Integer32",
1646
+ "ranges" : [
1647
+ {
1648
+ "min" : "0",
1649
+ "max" : "32767"
1650
+ },
1651
+ ],
1652
+ "range" : {
1653
+ "min" : "0",
1654
+ "max" : "32767"
1655
+ },
1656
+ },
1657
+ },
1658
+ "access" : "readonly",
1659
+ "default" : "0",
1660
+ "description" :
1661
+ """This object contains the value of the jmGeneralJobSetIndex for
1662
+ the job with the jmJobSubmissionID value, i.e., the job set
1663
+ index of the job set in which the job was placed when that
1664
+ server or device accepted the job. This 16-bit value in
1665
+ combination with the jmJobIDJobIndex value permits the
1666
+ management application to access the other tables to obtain the
1667
+ job-specific objects for this job.
1668
+
1669
+ See jmGeneralJobSetIndex in the jmGeneralTable.""",
1670
+ }, # column
1671
+ "jmJobIDJobIndex" : {
1672
+ "nodetype" : "column",
1673
+ "moduleName" : "Job-Monitoring-MIB",
1674
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.2.1.1.3",
1675
+ "status" : "current",
1676
+ "syntax" : {
1677
+ "type" : {
1678
+ "basetype" : "Integer32",
1679
+ "ranges" : [
1680
+ {
1681
+ "min" : "0",
1682
+ "max" : "2147483647"
1683
+ },
1684
+ ],
1685
+ "range" : {
1686
+ "min" : "0",
1687
+ "max" : "2147483647"
1688
+ },
1689
+ },
1690
+ },
1691
+ "access" : "readonly",
1692
+ "default" : "0",
1693
+ "description" :
1694
+ """This object contains the value of the jmJobIndex for the job
1695
+ with the jmJobSubmissionID value, i.e., the job index for the
1696
+ job when the server or device accepted the job. This value, in
1697
+ combination with the jmJobIDJobSetIndex value, permits the
1698
+ management application to access the other tables to obtain the
1699
+ job-specific objects for this job.
1700
+
1701
+ See jmJobIndex in the jmJobTable.""",
1702
+ }, # column
1703
+ "jmJob" : {
1704
+ "nodetype" : "node",
1705
+ "moduleName" : "Job-Monitoring-MIB",
1706
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3",
1707
+ }, # node
1708
+ "jmJobTable" : {
1709
+ "nodetype" : "table",
1710
+ "moduleName" : "Job-Monitoring-MIB",
1711
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1",
1712
+ "status" : "current",
1713
+ "description" :
1714
+ """The jmJobTable consists of basic job state and status
1715
+ information for each job in a job set that (1) monitoring
1716
+ applications need to be able to access in a single SNMP Get
1717
+ operation, (2) that have a single value per job, and (3) that
1718
+ SHALL always be implemented.
1719
+
1720
+ The MANDATORY-GROUP macro specifies that this group is
1721
+ MANDATORY.""",
1722
+ }, # table
1723
+ "jmJobEntry" : {
1724
+ "nodetype" : "row",
1725
+ "moduleName" : "Job-Monitoring-MIB",
1726
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1",
1727
+ "status" : "current",
1728
+ "linkage" : [
1729
+ "jmGeneralJobSetIndex",
1730
+ "jmJobIndex",
1731
+ ],
1732
+ "description" :
1733
+ """Basic per-job state and status information.
1734
+
1735
+ An entry SHALL exist in this table for each job, no matter what
1736
+ the state of the job is. Each job SHALL appear in one and only
1737
+ one job set.
1738
+
1739
+ See Section 3.2 entitled 'The Job Tables'.""",
1740
+ }, # row
1741
+ "jmJobIndex" : {
1742
+ "nodetype" : "column",
1743
+ "moduleName" : "Job-Monitoring-MIB",
1744
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.1",
1745
+ "status" : "current",
1746
+ "syntax" : {
1747
+ "type" : {
1748
+ "basetype" : "Integer32",
1749
+ "ranges" : [
1750
+ {
1751
+ "min" : "1",
1752
+ "max" : "2147483647"
1753
+ },
1754
+ ],
1755
+ "range" : {
1756
+ "min" : "1",
1757
+ "max" : "2147483647"
1758
+ },
1759
+ },
1760
+ },
1761
+ "access" : "noaccess",
1762
+ "description" :
1763
+ """The sequential, monatonically increasing identifier index for
1764
+ the job generated by the server or device when that server or
1765
+ device accepted the job. This index value permits the
1766
+ management application to access the other tables to obtain the
1767
+ job-specific row entries.
1768
+
1769
+ See Section 3.2 entitled 'The Job Tables and the Oldest Active
1770
+ and Newest Active Indexes'.
1771
+ See Section 3.5 entitled 'Job Identification'.
1772
+ See also jmGeneralNewestActiveJobIndex for the largest value of
1773
+ jmJobIndex.
1774
+ See JmJobSubmissionIDTypeTC for a limit on the size of this
1775
+ index if the agent represents it as an 8-digit decimal number.""",
1776
+ }, # column
1777
+ "jmJobState" : {
1778
+ "nodetype" : "column",
1779
+ "moduleName" : "Job-Monitoring-MIB",
1780
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.2",
1781
+ "status" : "current",
1782
+ "syntax" : {
1783
+ "type" : { "module" :"Job-Monitoring-MIB", "name" : "JmJobStateTC"},
1784
+ },
1785
+ "access" : "readonly",
1786
+ "default" : "unknown",
1787
+ "description" :
1788
+ """The current state of the job (pending, processing, completed,
1789
+ etc.). Agents SHALL implement only those states which are
1790
+ appropriate for the particular implementation. However,
1791
+ management applications SHALL be prepared to receive all the
1792
+ standard job states.
1793
+
1794
+ The final value for this object SHALL be one of: completed,
1795
+ canceled, or aborted. The minimum length of time that the
1796
+ agent SHALL maintain MIB data for a job in the completed,
1797
+ canceled, or aborted state before removing the job data from
1798
+ the jmJobIDTable and jmJobTable is specified by the value of
1799
+ the jmGeneralJobPersistence object.""",
1800
+ }, # column
1801
+ "jmJobStateReasons1" : {
1802
+ "nodetype" : "column",
1803
+ "moduleName" : "Job-Monitoring-MIB",
1804
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.3",
1805
+ "status" : "current",
1806
+ "syntax" : {
1807
+ "type" : { "module" :"Job-Monitoring-MIB", "name" : "JmJobStateReasons1TC"},
1808
+ },
1809
+ "access" : "readonly",
1810
+ "default" : "0",
1811
+ "description" :
1812
+ """Additional information about the job's current state, i.e.,
1813
+ information that augments the value of the job's jmJobState
1814
+ object.
1815
+
1816
+ Implementation of any reason values is OPTIONAL, but an agent
1817
+ SHOULD return any reason information available. These values
1818
+ MAY be used with any job state or states for which the reason
1819
+ makes sense. Since the Job State Reasons will be more dynamic
1820
+ than the Job State, it is recommended that a job monitoring
1821
+ application read this object every time jmJobState is read.
1822
+ When the agent cannot provide a reason for the current state of
1823
+ the job, the value of the jmJobStateReasons1 object and
1824
+ jobStateReasonsN attributes SHALL be 0.
1825
+
1826
+ The jobStateReasonsN (N=2..4) attributes provide further
1827
+ additional information about the job's current state.""",
1828
+ }, # column
1829
+ "jmNumberOfInterveningJobs" : {
1830
+ "nodetype" : "column",
1831
+ "moduleName" : "Job-Monitoring-MIB",
1832
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.4",
1833
+ "status" : "current",
1834
+ "syntax" : {
1835
+ "type" : {
1836
+ "basetype" : "Integer32",
1837
+ "ranges" : [
1838
+ {
1839
+ "min" : "-2",
1840
+ "max" : "2147483647"
1841
+ },
1842
+ ],
1843
+ "range" : {
1844
+ "min" : "-2",
1845
+ "max" : "2147483647"
1846
+ },
1847
+ },
1848
+ },
1849
+ "access" : "readonly",
1850
+ "default" : "0",
1851
+ "description" :
1852
+ """The number of jobs that are expected to complete processing
1853
+ before this job has completed processing according to the
1854
+ implementation's queuing algorithm, if no other jobs were to be
1855
+ submitted. In other words, this value is the job's queue
1856
+ position. The agent SHALL return a value of 0 for this
1857
+ attribute when the job is the next job to complete processing
1858
+ (or has completed processing).""",
1859
+ }, # column
1860
+ "jmJobKOctetsPerCopyRequested" : {
1861
+ "nodetype" : "column",
1862
+ "moduleName" : "Job-Monitoring-MIB",
1863
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.5",
1864
+ "status" : "current",
1865
+ "syntax" : {
1866
+ "type" : {
1867
+ "basetype" : "Integer32",
1868
+ "ranges" : [
1869
+ {
1870
+ "min" : "-2",
1871
+ "max" : "2147483647"
1872
+ },
1873
+ ],
1874
+ "range" : {
1875
+ "min" : "-2",
1876
+ "max" : "2147483647"
1877
+ },
1878
+ },
1879
+ },
1880
+ "access" : "readonly",
1881
+ "default" : "-2",
1882
+ "description" :
1883
+ """The total size in K (1024) octets of the document(s) being
1884
+ requested to be processed in the job. The agent SHALL round
1885
+ the actual number of octets up to the next highest K. Thus 0
1886
+ octets is represented as '0', 1-1024 octets is represented as
1887
+ '1', 1025-2048 is represented as '2', etc.
1888
+
1889
+ In computing this value, the server/device SHALL NOT include
1890
+ the multiplicative factors contributed by (1) the number of
1891
+ document copies, and (2) the number of job copies, independent
1892
+ of whether the device can process multiple copies of the job or
1893
+ document without making multiple passes over the job or
1894
+ document data and independent of whether the output is collated
1895
+ or not. Thus the server/device computation is independent of
1896
+ the implementation and indicates the size of the document(s)
1897
+ measured in K octets independent of the number of copies.""",
1898
+ }, # column
1899
+ "jmJobKOctetsProcessed" : {
1900
+ "nodetype" : "column",
1901
+ "moduleName" : "Job-Monitoring-MIB",
1902
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.6",
1903
+ "status" : "current",
1904
+ "syntax" : {
1905
+ "type" : {
1906
+ "basetype" : "Integer32",
1907
+ "ranges" : [
1908
+ {
1909
+ "min" : "-2",
1910
+ "max" : "2147483647"
1911
+ },
1912
+ ],
1913
+ "range" : {
1914
+ "min" : "-2",
1915
+ "max" : "2147483647"
1916
+ },
1917
+ },
1918
+ },
1919
+ "access" : "readonly",
1920
+ "default" : "0",
1921
+ "description" :
1922
+ """The total number of octets processed by the server or device
1923
+ measured in units of K (1024) octets so far. The agent SHALL
1924
+ round the actual number of octets processed up to the next
1925
+ higher K. Thus 0 octets is represented as '0', 1-1024 octets
1926
+ is represented as '1', 1025-2048 octets is '2', etc. For
1927
+ printing devices, this value is the number interpreted by the
1928
+ page description language interpreter rather than what has been
1929
+ marked on media.
1930
+
1931
+ For implementations where multiple copies are produced by the
1932
+ interpreter with only a single pass over the data, the final
1933
+ value SHALL be equal to the value of the
1934
+ jmJobKOctetsPerCopyRequested object. For implementations where
1935
+ multiple copies are produced by the interpreter by processing
1936
+ the data for each copy, the final value SHALL be a multiple of
1937
+ the value of the jmJobKOctetsPerCopyRequested object.
1938
+
1939
+ NOTE - See the impressionsCompletedCurrentCopy and
1940
+ pagesCompletedCurrentCopy attributes for attributes that are
1941
+ reset on each document copy.
1942
+
1943
+ NOTE - The jmJobKOctetsProcessed object can be used with the
1944
+ jmJobKOctetsPerCopyRequested object to provide an indication of
1945
+ the relative progress of the job, provided that the
1946
+ multiplicative factor is taken into account for some
1947
+ implementations of multiple copies.""",
1948
+ }, # column
1949
+ "jmJobImpressionsPerCopyRequested" : {
1950
+ "nodetype" : "column",
1951
+ "moduleName" : "Job-Monitoring-MIB",
1952
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.7",
1953
+ "status" : "current",
1954
+ "syntax" : {
1955
+ "type" : {
1956
+ "basetype" : "Integer32",
1957
+ "ranges" : [
1958
+ {
1959
+ "min" : "-2",
1960
+ "max" : "2147483647"
1961
+ },
1962
+ ],
1963
+ "range" : {
1964
+ "min" : "-2",
1965
+ "max" : "2147483647"
1966
+ },
1967
+ },
1968
+ },
1969
+ "access" : "readonly",
1970
+ "default" : "-2",
1971
+ "description" :
1972
+ """The total size in number of impressions of the document(s)
1973
+ submitted.
1974
+
1975
+ In computing this value, the server/device SHALL NOT include
1976
+ the multiplicative factors contributed by (1) the number of
1977
+ document copies, and (2) the number of job copies, independent
1978
+ of whether the device can process multiple copies of the job or
1979
+ document without making multiple passes over the job or
1980
+ document data and independent of whether the output is collated
1981
+ or not. Thus the server/device computation is independent of
1982
+ the implementation and reflects the size of the document(s)
1983
+ measured in impressions independent of the number of copies.
1984
+
1985
+ See the definition of the term 'impression' in Section 2.""",
1986
+ }, # column
1987
+ "jmJobImpressionsCompleted" : {
1988
+ "nodetype" : "column",
1989
+ "moduleName" : "Job-Monitoring-MIB",
1990
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.8",
1991
+ "status" : "current",
1992
+ "syntax" : {
1993
+ "type" : {
1994
+ "basetype" : "Integer32",
1995
+ "ranges" : [
1996
+ {
1997
+ "min" : "-2",
1998
+ "max" : "2147483647"
1999
+ },
2000
+ ],
2001
+ "range" : {
2002
+ "min" : "-2",
2003
+ "max" : "2147483647"
2004
+ },
2005
+ },
2006
+ },
2007
+ "access" : "readonly",
2008
+ "default" : "0",
2009
+ "description" :
2010
+ """The total number of impressions completed for this job so far.
2011
+ For printing devices, the impressions completed includes
2012
+ interpreting, marking, and stacking the output. For other
2013
+ types of job services, the number of impressions completed
2014
+ includes the number of impressions processed.
2015
+
2016
+ NOTE - See the impressionsCompletedCurrentCopy and
2017
+ pagesCompletedCurrentCopy attributes for attributes that are
2018
+ reset on each document copy.
2019
+
2020
+ NOTE - The jmJobImpressionsCompleted object can be used with
2021
+ the jmJobImpressionsPerCopyRequested object to provide an
2022
+ indication of the relative progress of the job, provided that
2023
+ the multiplicative factor is taken into account for some
2024
+ implementations of multiple copies.
2025
+
2026
+ See the definition of the term 'impression' in Section 2 and
2027
+ the counting example in Section 3.4 entitled 'Monitoring Job
2028
+ Progress'.""",
2029
+ }, # column
2030
+ "jmJobOwner" : {
2031
+ "nodetype" : "column",
2032
+ "moduleName" : "Job-Monitoring-MIB",
2033
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.3.1.1.9",
2034
+ "status" : "current",
2035
+ "syntax" : {
2036
+ "type" : {
2037
+ "basetype" : "OctetString",
2038
+ "parent module" : {
2039
+ "name" : "Job-Monitoring-MIB",
2040
+ "type" : "JmJobStringTC",
2041
+ },
2042
+ "ranges" : [
2043
+ {
2044
+ "min" : "0",
2045
+ "max" : "63"
2046
+ },
2047
+ ],
2048
+ "range" : {
2049
+ "min" : "0",
2050
+ "max" : "63"
2051
+ },
2052
+ },
2053
+ },
2054
+ "access" : "readonly",
2055
+ "default" : "",
2056
+ "description" :
2057
+ """The coded character set name of the user that submitted the
2058
+ job. The method of assigning this user name will be system
2059
+ and/or site specific but the method MUST ensure that the name
2060
+ is unique to the network that is visible to the client and
2061
+ target device.
2062
+
2063
+ This value SHOULD be the most authenticated name of the user
2064
+ submitting the job.
2065
+
2066
+ See the OBJECT compliance macro for the minimum maximum length
2067
+ required for conformance.""",
2068
+ }, # column
2069
+ "jmAttribute" : {
2070
+ "nodetype" : "node",
2071
+ "moduleName" : "Job-Monitoring-MIB",
2072
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.4",
2073
+ }, # node
2074
+ "jmAttributeTable" : {
2075
+ "nodetype" : "table",
2076
+ "moduleName" : "Job-Monitoring-MIB",
2077
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.4.1",
2078
+ "status" : "current",
2079
+ "description" :
2080
+ """The jmAttributeTable SHALL contain attributes of the job and
2081
+ document(s) for each job in a job set. Instead of allocating
2082
+ distinct objects for each attribute, each attribute is
2083
+ represented as a separate row in the jmAttributeTable.
2084
+
2085
+ The MANDATORY-GROUP macro specifies that this group is
2086
+ MANDATORY. An agent SHALL implement any attribute if (1) the
2087
+ server or device supports the functionality represented by the
2088
+ attribute and (2) the information is available to the agent. """,
2089
+ }, # table
2090
+ "jmAttributeEntry" : {
2091
+ "nodetype" : "row",
2092
+ "moduleName" : "Job-Monitoring-MIB",
2093
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.4.1.1",
2094
+ "status" : "current",
2095
+ "linkage" : [
2096
+ "jmGeneralJobSetIndex",
2097
+ "jmJobIndex",
2098
+ "jmAttributeTypeIndex",
2099
+ "jmAttributeInstanceIndex",
2100
+ ],
2101
+ "description" :
2102
+ """Attributes representing information about the job and
2103
+ document(s) or resources required and/or consumed.
2104
+
2105
+ Each entry in the jmAttributeTable is a per-job entry with an
2106
+ extra index for each type of attribute (jmAttributeTypeIndex)
2107
+ that a job can have and an additional index
2108
+ (jmAttributeInstanceIndex) for those attributes that can have
2109
+ multiple instances per job. The jmAttributeTypeIndex object
2110
+ SHALL contain an enum type that indicates the type of attribute
2111
+ (see the JmAttributeTypeTC textual-convention). The value of
2112
+ the attribute SHALL be represented in either the
2113
+ jmAttributeValueAsInteger or jmAttributeValueAsOctets objects,
2114
+ and/or both, as specified in the JmAttributeTypeTC textual-
2115
+ convention.
2116
+
2117
+ The agent SHALL create rows in the jmAttributeTable as the
2118
+ server or device is able to discover the attributes either from
2119
+ the job submission protocol itself or from the document PDL.
2120
+ As the documents are interpreted, the interpreter MAY discover
2121
+ additional attributes and so the agent adds additional rows to
2122
+ this table. As the attributes that represent resources are
2123
+ actually consumed, the usage counter contained in the
2124
+ jmAttributeValueAsInteger object is incremented according to
2125
+ the units indicated in the description of the JmAttributeTypeTC
2126
+ enum.
2127
+
2128
+ The agent SHALL maintain each row in the jmAttributeTable for
2129
+ at least the minimum time after a job completes as specified by
2130
+ the jmGeneralAttributePersistence object.
2131
+
2132
+ Zero or more entries SHALL exist in this table for each job in
2133
+ a job set.
2134
+
2135
+ See Section 3.3 entitled 'The Attribute Mechanism' for a
2136
+ description of the jmAttributeTable.""",
2137
+ }, # row
2138
+ "jmAttributeTypeIndex" : {
2139
+ "nodetype" : "column",
2140
+ "moduleName" : "Job-Monitoring-MIB",
2141
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.4.1.1.1",
2142
+ "status" : "current",
2143
+ "syntax" : {
2144
+ "type" : { "module" :"Job-Monitoring-MIB", "name" : "JmAttributeTypeTC"},
2145
+ },
2146
+ "access" : "noaccess",
2147
+ "description" :
2148
+ """The type of attribute that this row entry represents.
2149
+
2150
+ The type MAY identify information about the job or document(s)
2151
+ or MAY identify a resource required to process the job before
2152
+ the job start processing and/or consumed by the job as the job
2153
+ is processed.
2154
+
2155
+ Examples of job attributes (i.e., apply to the job as a whole)
2156
+ that have only one instance per job include:
2157
+ jobCopiesRequested(90), documentCopiesRequested(92),
2158
+ jobCopiesCompleted(91), documentCopiesCompleted(93), while
2159
+ examples of job attributes that may have more than one instance
2160
+ per job include: documentFormatIndex(37), and
2161
+ documentFormat(38).
2162
+
2163
+ Examples of document attributes (one instance per document)
2164
+ include: fileName(34), and documentName(35).
2165
+
2166
+ Examples of required and consumed resource attributes include:
2167
+ pagesRequested(130), mediumRequested(170), pagesCompleted(131),
2168
+ and mediumConsumed(171), respectively.""",
2169
+ }, # column
2170
+ "jmAttributeInstanceIndex" : {
2171
+ "nodetype" : "column",
2172
+ "moduleName" : "Job-Monitoring-MIB",
2173
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.4.1.1.2",
2174
+ "status" : "current",
2175
+ "syntax" : {
2176
+ "type" : {
2177
+ "basetype" : "Integer32",
2178
+ "ranges" : [
2179
+ {
2180
+ "min" : "1",
2181
+ "max" : "32767"
2182
+ },
2183
+ ],
2184
+ "range" : {
2185
+ "min" : "1",
2186
+ "max" : "32767"
2187
+ },
2188
+ },
2189
+ },
2190
+ "access" : "noaccess",
2191
+ "description" :
2192
+ """A running 16-bit index of the attributes of the same type for
2193
+ each job. For those attributes with only a single instance per
2194
+ job, this index value SHALL be 1. For those attributes that
2195
+ are a single value per document, the index value SHALL be the
2196
+ document number, starting with 1 for the first document in the
2197
+ job. Jobs with only a single document SHALL use the index
2198
+ value of 1. For those attributes that can have multiple values
2199
+ per job or per document, such as documentFormatIndex(37) or
2200
+ documentFormat(38), the index SHALL be a running index for the
2201
+ job as a whole, starting at 1.""",
2202
+ }, # column
2203
+ "jmAttributeValueAsInteger" : {
2204
+ "nodetype" : "column",
2205
+ "moduleName" : "Job-Monitoring-MIB",
2206
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.4.1.1.3",
2207
+ "status" : "current",
2208
+ "syntax" : {
2209
+ "type" : {
2210
+ "basetype" : "Integer32",
2211
+ "ranges" : [
2212
+ {
2213
+ "min" : "-2",
2214
+ "max" : "2147483647"
2215
+ },
2216
+ ],
2217
+ "range" : {
2218
+ "min" : "-2",
2219
+ "max" : "2147483647"
2220
+ },
2221
+ },
2222
+ },
2223
+ "access" : "readonly",
2224
+ "default" : "-2",
2225
+ "description" :
2226
+ """The integer value of the attribute. The value of the
2227
+ attribute SHALL be represented as an integer if the enum
2228
+ description in the JmAttributeTypeTC textual-convention
2229
+ definition has the tag: 'INTEGER:'.
2230
+
2231
+ Depending on the enum definition, this object value MAY be an
2232
+ integer, a counter, an index, or an enum, depending on the
2233
+ jmAttributeTypeIndex value. The units of this value are
2234
+ specified in the enum description.
2235
+
2236
+ For those attributes that are accumulating job consumption as
2237
+ the job is processed as specified in the JmAttributeTypeTC
2238
+ textual-convention, SHALL contain the final value after the job
2239
+ completes processing, i.e., this value SHALL indicate the total
2240
+ usage of this resource made by the job.
2241
+
2242
+ A monitoring application is able to copy this value to a
2243
+ suitable longer term storage for later processing as part of an
2244
+ accounting system.
2245
+
2246
+ Since the agent MAY add attributes representing resources to
2247
+ this table while the job is waiting to be processed or being
2248
+ processed, which can be a long time before any of the resources
2249
+ are actually used, the agent SHALL set the value of the
2250
+ jmAttributeValueAsInteger object to 0 for resources that the
2251
+ job has not yet consumed.
2252
+
2253
+ Attributes for which the concept of an integer value is
2254
+ meaningless, such as fileName(34), jobName, and
2255
+ processingMessage, do not have the 'INTEGER:' tag in the
2256
+ JmAttributeTypeTC definition and so an agent SHALL always
2257
+ return a value of '-1' to indicate 'other' for the value of the
2258
+ jmAttributeValueAsInteger object for these attributes.
2259
+
2260
+ For attributes which do have the 'INTEGER:' tag in the
2261
+ JmAttributeTypeTC definition, if the integer value is not (yet)
2262
+ known, the agent either (1) SHALL not materialize the row in
2263
+ the jmAttributeTable until the value is known or (2) SHALL
2264
+ return a '-2' to represent an 'unknown' counting integer value,
2265
+ a '0' to represent an 'unknown' index value, and a '2' to
2266
+ represent an 'unknown(2)' enum value.""",
2267
+ }, # column
2268
+ "jmAttributeValueAsOctets" : {
2269
+ "nodetype" : "column",
2270
+ "moduleName" : "Job-Monitoring-MIB",
2271
+ "oid" : "1.3.6.1.4.1.2699.1.1.1.4.1.1.4",
2272
+ "status" : "current",
2273
+ "syntax" : {
2274
+ "type" : {
2275
+ "basetype" : "OctetString",
2276
+ "ranges" : [
2277
+ {
2278
+ "min" : "0",
2279
+ "max" : "63"
2280
+ },
2281
+ ],
2282
+ "range" : {
2283
+ "min" : "0",
2284
+ "max" : "63"
2285
+ },
2286
+ },
2287
+ },
2288
+ "access" : "readonly",
2289
+ "default" : "",
2290
+ "description" :
2291
+ """The octet string value of the attribute. The value of the
2292
+ attribute SHALL be represented as an OCTET STRING if the enum
2293
+ description in the JmAttributeTypeTC textual-convention
2294
+ definition has the tag: 'OCTETS:'.
2295
+
2296
+ Depending on the enum definition, this object value MAY be a
2297
+ coded character set string (text), such as 'JmUTF8StringTC', or
2298
+ a binary octet string, such as 'DateAndTime'.
2299
+
2300
+ Attributes for which the concept of an octet string value is
2301
+ meaningless, such as pagesCompleted, do not have the tag
2302
+ 'OCTETS:' in the JmAttributeTypeTC definition and so the agent
2303
+ SHALL always return a zero length string for the value of the
2304
+ jmAttributeValueAsOctets object.
2305
+
2306
+ For attributes which do have the 'OCTETS:' tag in the
2307
+ JmAttributeTypeTC definition, if the OCTET STRING value is not
2308
+ (yet) known, the agent either SHALL NOT materialize the row in
2309
+ the jmAttributeTable until the value is known or SHALL return a
2310
+ zero-length string.""",
2311
+ }, # column
2312
+ "jobmonMIBNotifications" : {
2313
+ "nodetype" : "node",
2314
+ "moduleName" : "Job-Monitoring-MIB",
2315
+ "oid" : "1.3.6.1.4.1.2699.1.1.2",
2316
+ }, # node
2317
+ "jmMIBConformance" : {
2318
+ "nodetype" : "node",
2319
+ "moduleName" : "Job-Monitoring-MIB",
2320
+ "oid" : "1.3.6.1.4.1.2699.1.1.3",
2321
+ }, # node
2322
+ "jmMIBGroups" : {
2323
+ "nodetype" : "node",
2324
+ "moduleName" : "Job-Monitoring-MIB",
2325
+ "oid" : "1.3.6.1.4.1.2699.1.1.3.2",
2326
+ }, # node
2327
+ }, # nodes
2328
+
2329
+ "groups" : {
2330
+ "jmGeneralGroup" : {
2331
+ "nodetype" : "group",
2332
+ "moduleName" : "Job-Monitoring-MIB",
2333
+ "oid" : "1.3.6.1.4.1.2699.1.1.3.2.1",
2334
+ "status" : "current",
2335
+ "members" : {
2336
+ "jmGeneralNumberOfActiveJobs" : {
2337
+ "nodetype" : "member",
2338
+ "module" : "Job-Monitoring-MIB"
2339
+ },
2340
+ "jmGeneralOldestActiveJobIndex" : {
2341
+ "nodetype" : "member",
2342
+ "module" : "Job-Monitoring-MIB"
2343
+ },
2344
+ "jmGeneralNewestActiveJobIndex" : {
2345
+ "nodetype" : "member",
2346
+ "module" : "Job-Monitoring-MIB"
2347
+ },
2348
+ "jmGeneralJobPersistence" : {
2349
+ "nodetype" : "member",
2350
+ "module" : "Job-Monitoring-MIB"
2351
+ },
2352
+ "jmGeneralAttributePersistence" : {
2353
+ "nodetype" : "member",
2354
+ "module" : "Job-Monitoring-MIB"
2355
+ },
2356
+ "jmGeneralJobSetName" : {
2357
+ "nodetype" : "member",
2358
+ "module" : "Job-Monitoring-MIB"
2359
+ },
2360
+ }, # members
2361
+ "description" :
2362
+ """The general group.""",
2363
+ }, # group
2364
+ "jmJobIDGroup" : {
2365
+ "nodetype" : "group",
2366
+ "moduleName" : "Job-Monitoring-MIB",
2367
+ "oid" : "1.3.6.1.4.1.2699.1.1.3.2.2",
2368
+ "status" : "current",
2369
+ "members" : {
2370
+ "jmJobIDJobSetIndex" : {
2371
+ "nodetype" : "member",
2372
+ "module" : "Job-Monitoring-MIB"
2373
+ },
2374
+ "jmJobIDJobIndex" : {
2375
+ "nodetype" : "member",
2376
+ "module" : "Job-Monitoring-MIB"
2377
+ },
2378
+ }, # members
2379
+ "description" :
2380
+ """The job ID group.""",
2381
+ }, # group
2382
+ "jmJobGroup" : {
2383
+ "nodetype" : "group",
2384
+ "moduleName" : "Job-Monitoring-MIB",
2385
+ "oid" : "1.3.6.1.4.1.2699.1.1.3.2.3",
2386
+ "status" : "current",
2387
+ "members" : {
2388
+ "jmJobState" : {
2389
+ "nodetype" : "member",
2390
+ "module" : "Job-Monitoring-MIB"
2391
+ },
2392
+ "jmJobStateReasons1" : {
2393
+ "nodetype" : "member",
2394
+ "module" : "Job-Monitoring-MIB"
2395
+ },
2396
+ "jmNumberOfInterveningJobs" : {
2397
+ "nodetype" : "member",
2398
+ "module" : "Job-Monitoring-MIB"
2399
+ },
2400
+ "jmJobKOctetsPerCopyRequested" : {
2401
+ "nodetype" : "member",
2402
+ "module" : "Job-Monitoring-MIB"
2403
+ },
2404
+ "jmJobKOctetsProcessed" : {
2405
+ "nodetype" : "member",
2406
+ "module" : "Job-Monitoring-MIB"
2407
+ },
2408
+ "jmJobImpressionsPerCopyRequested" : {
2409
+ "nodetype" : "member",
2410
+ "module" : "Job-Monitoring-MIB"
2411
+ },
2412
+ "jmJobImpressionsCompleted" : {
2413
+ "nodetype" : "member",
2414
+ "module" : "Job-Monitoring-MIB"
2415
+ },
2416
+ "jmJobOwner" : {
2417
+ "nodetype" : "member",
2418
+ "module" : "Job-Monitoring-MIB"
2419
+ },
2420
+ }, # members
2421
+ "description" :
2422
+ """The job group.""",
2423
+ }, # group
2424
+ "jmAttributeGroup" : {
2425
+ "nodetype" : "group",
2426
+ "moduleName" : "Job-Monitoring-MIB",
2427
+ "oid" : "1.3.6.1.4.1.2699.1.1.3.2.4",
2428
+ "status" : "current",
2429
+ "members" : {
2430
+ "jmAttributeValueAsInteger" : {
2431
+ "nodetype" : "member",
2432
+ "module" : "Job-Monitoring-MIB"
2433
+ },
2434
+ "jmAttributeValueAsOctets" : {
2435
+ "nodetype" : "member",
2436
+ "module" : "Job-Monitoring-MIB"
2437
+ },
2438
+ }, # members
2439
+ "description" :
2440
+ """The attribute group.""",
2441
+ }, # group
2442
+ }, # groups
2443
+
2444
+ "compliances" : {
2445
+ "jmMIBCompliance" : {
2446
+ "nodetype" : "compliance",
2447
+ "moduleName" : "Job-Monitoring-MIB",
2448
+ "oid" : "1.3.6.1.4.1.2699.1.1.3.1",
2449
+ "status" : "current",
2450
+ "description" :
2451
+ """The compliance statement for agents that implement the
2452
+ job monitoring MIB.""",
2453
+ "requires" : {
2454
+ "jmGeneralGroup" : {
2455
+ "nodetype" : "mandatory",
2456
+ "module" : "Job-Monitoring-MIB"
2457
+ },
2458
+ "jmJobIDGroup" : {
2459
+ "nodetype" : "mandatory",
2460
+ "module" : "Job-Monitoring-MIB"
2461
+ },
2462
+ "jmJobGroup" : {
2463
+ "nodetype" : "mandatory",
2464
+ "module" : "Job-Monitoring-MIB"
2465
+ },
2466
+ "jmAttributeGroup" : {
2467
+ "nodetype" : "mandatory",
2468
+ "module" : "Job-Monitoring-MIB"
2469
+ },
2470
+ }, # requires
2471
+ "refinements" : {
2472
+ "jmGeneralJobSetName" : {
2473
+ "module" : "Job-Monitoring-MIB",
2474
+ "syntax" : {
2475
+ "type" : {
2476
+ "basetype" : "OctetString",
2477
+ "ranges" : [
2478
+ {
2479
+ "min" : "0",
2480
+ "max" : "8"
2481
+ },
2482
+ ],
2483
+ "range" : {
2484
+ "min" : "0",
2485
+ "max" : "8"
2486
+ },
2487
+ },
2488
+ }, # syntax
2489
+ "description" :
2490
+ """Only 8 octets maximum string length NEED be supported by the
2491
+ agent.""",
2492
+ },
2493
+ "jmJobOwner" : {
2494
+ "module" : "Job-Monitoring-MIB",
2495
+ "syntax" : {
2496
+ "type" : {
2497
+ "basetype" : "OctetString",
2498
+ "ranges" : [
2499
+ {
2500
+ "min" : "0",
2501
+ "max" : "16"
2502
+ },
2503
+ ],
2504
+ "range" : {
2505
+ "min" : "0",
2506
+ "max" : "16"
2507
+ },
2508
+ },
2509
+ }, # syntax
2510
+ "description" :
2511
+ """Only 16 octets maximum string length NEED be supported by the
2512
+ agent.""",
2513
+ },
2514
+ }, # refinements
2515
+
2516
+ }, # compliance
2517
+ }, # compliances
2518
+
2519
+ }