Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

490 lines
19 KiB

  1. HTTPSERVER-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. enterprises,
  4. OBJECT-TYPE,
  5. Counter
  6. FROM RFC1155-SMI
  7. internetServer
  8. FROM INTERNETSERVER-MIB;
  9. -- microsoft OBJECT IDENTIFIER ::= { enterprises 311 }
  10. -- software OBJECT IDENTIFIER ::= { microsoft 1 }
  11. -- internetServer OBJECT IDENTIFIER ::= { software 7 }
  12. httpServer OBJECT IDENTIFIER ::= { internetServer 3 }
  13. httpStatistics OBJECT IDENTIFIER ::= { httpServer 1 }
  14. -- Http Server Statistics
  15. totalBytesSentHighWord OBJECT-TYPE
  16. SYNTAX Counter
  17. ACCESS read-only
  18. STATUS mandatory
  19. DESCRIPTION
  20. "This is the high 32-bits of the total number of
  21. of BYTEs sent by the HTTP Server."
  22. ::= { httpStatistics 1 }
  23. totalBytesSentLowWord OBJECT-TYPE
  24. SYNTAX Counter
  25. ACCESS read-only
  26. STATUS mandatory
  27. DESCRIPTION
  28. "This is the low 32-bits of the total number of
  29. of BYTEs sent by the HTTP Server."
  30. ::= { httpStatistics 2 }
  31. totalBytesReceivedHighWord OBJECT-TYPE
  32. SYNTAX Counter
  33. ACCESS read-only
  34. STATUS mandatory
  35. DESCRIPTION
  36. "This is the high 32-bits of the total number of
  37. of BYTEs received by the HTTP Server."
  38. ::= { httpStatistics 3 }
  39. totalBytesReceivedLowWord OBJECT-TYPE
  40. SYNTAX Counter
  41. ACCESS read-only
  42. STATUS mandatory
  43. DESCRIPTION
  44. "This is the low 32-bits of the total number of
  45. of BYTEs received by the HTTP Server."
  46. ::= { httpStatistics 4 }
  47. totalFilesSent OBJECT-TYPE
  48. SYNTAX Counter
  49. ACCESS read-only
  50. STATUS mandatory
  51. DESCRIPTION
  52. "This is the total number of files sent by this
  53. HTTP Server."
  54. ::= { httpStatistics 5 }
  55. totalFilesReceived OBJECT-TYPE
  56. SYNTAX Counter
  57. ACCESS read-only
  58. STATUS mandatory
  59. DESCRIPTION
  60. "This is the total number of files received by this
  61. HTTP Server."
  62. ::= { httpStatistics 6 }
  63. currentAnonymousUsers OBJECT-TYPE
  64. SYNTAX Counter
  65. ACCESS read-only
  66. STATUS mandatory
  67. DESCRIPTION
  68. "This is the number of anonymous users currently
  69. connected to the HTTP Server."
  70. ::= { httpStatistics 7 }
  71. currentNonAnonymousUsers OBJECT-TYPE
  72. SYNTAX Counter
  73. ACCESS read-only
  74. STATUS mandatory
  75. DESCRIPTION
  76. "This is the number of nonanonymous users currently
  77. connected to the HTTP Server."
  78. ::= { httpStatistics 8 }
  79. totalAnonymousUsers OBJECT-TYPE
  80. SYNTAX Counter
  81. ACCESS read-only
  82. STATUS mandatory
  83. DESCRIPTION
  84. "This is the total number of anonymous users that
  85. have ever connected to the HTTP Server."
  86. ::= { httpStatistics 9 }
  87. totalNonAnonymousUsers OBJECT-TYPE
  88. SYNTAX Counter
  89. ACCESS read-only
  90. STATUS mandatory
  91. DESCRIPTION
  92. "This is the total number of nonanonymous users that
  93. have ever connected to the HTTP Server."
  94. ::= { httpStatistics 10 }
  95. maxAnonymousUsers OBJECT-TYPE
  96. SYNTAX Counter
  97. ACCESS read-only
  98. STATUS mandatory
  99. DESCRIPTION
  100. "This is the maximum number of anonymous users
  101. simultaneously connected to the HTTP Server."
  102. ::= { httpStatistics 11 }
  103. maxNonAnonymousUsers OBJECT-TYPE
  104. SYNTAX Counter
  105. ACCESS read-only
  106. STATUS mandatory
  107. DESCRIPTION
  108. "This is the maximum number of nonanonymous users
  109. simultaneously connected to the HTTP Server."
  110. ::= { httpStatistics 12 }
  111. currentConnections OBJECT-TYPE
  112. SYNTAX INTEGER
  113. ACCESS read-only
  114. STATUS mandatory
  115. DESCRIPTION
  116. "This is the current number of connections to the
  117. HTTP Server."
  118. ::= { httpStatistics 13 }
  119. maxConnections OBJECT-TYPE
  120. SYNTAX Counter
  121. ACCESS read-only
  122. STATUS mandatory
  123. DESCRIPTION
  124. "This is the maximum number of simultaneous
  125. connections to the HTTP Server."
  126. ::= { httpStatistics 14 }
  127. connectionAttempts OBJECT-TYPE
  128. SYNTAX Counter
  129. ACCESS read-only
  130. STATUS mandatory
  131. DESCRIPTION
  132. "This is the number of connection attempts that
  133. have been made to the HTTP Server."
  134. ::= { httpStatistics 15 }
  135. logonAttempts OBJECT-TYPE
  136. SYNTAX Counter
  137. ACCESS read-only
  138. STATUS mandatory
  139. DESCRIPTION
  140. "This is the number of logon attempts that have
  141. been made to this HTTP Server."
  142. ::= { httpStatistics 16 }
  143. totalOptions OBJECT-TYPE
  144. SYNTAX Counter
  145. ACCESS read-only
  146. STATUS mandatory
  147. DESCRIPTION
  148. "This is the number of requests using the OPTIONS method
  149. that have been made to this HTTP Server."
  150. ::= { httpStatistics 17 }
  151. totalGets OBJECT-TYPE
  152. SYNTAX Counter
  153. ACCESS read-only
  154. STATUS mandatory
  155. DESCRIPTION
  156. "This is the number of requests using the GET method
  157. that have been made to this HTTP Server."
  158. ::= { httpStatistics 18 }
  159. totalPosts OBJECT-TYPE
  160. SYNTAX Counter
  161. ACCESS read-only
  162. STATUS mandatory
  163. DESCRIPTION
  164. "This is the number of requests using the POST method
  165. that have been made to this HTTP Server."
  166. ::= { httpStatistics 19 }
  167. totalHeads OBJECT-TYPE
  168. SYNTAX Counter
  169. ACCESS read-only
  170. STATUS mandatory
  171. DESCRIPTION
  172. "This is the number of requests using the HEAD method
  173. that have been made to this HTTP Server."
  174. ::= { httpStatistics 20 }
  175. totalPuts OBJECT-TYPE
  176. SYNTAX Counter
  177. ACCESS read-only
  178. STATUS mandatory
  179. DESCRIPTION
  180. "This is the number of requests using the PUT method
  181. that have been made to this HTTP Server."
  182. ::= { httpStatistics 21 }
  183. totalDeletes OBJECT-TYPE
  184. SYNTAX Counter
  185. ACCESS read-only
  186. STATUS mandatory
  187. DESCRIPTION
  188. "This is the number of requests using the DELETE method
  189. that have been made to this HTTP Server."
  190. ::= { httpStatistics 22 }
  191. totalTraces OBJECT-TYPE
  192. SYNTAX Counter
  193. ACCESS read-only
  194. STATUS mandatory
  195. DESCRIPTION
  196. "This is the number of requests using the TRACE method
  197. that have been made to this HTTP Server."
  198. ::= { httpStatistics 23 }
  199. totalMove OBJECT-TYPE
  200. SYNTAX Counter
  201. ACCESS read-only
  202. STATUS mandatory
  203. DESCRIPTION
  204. "This is the number of requests using the MOVE method
  205. that have been made to this HTTP Server."
  206. ::= { httpStatistics 24 }
  207. totalCopy OBJECT-TYPE
  208. SYNTAX Counter
  209. ACCESS read-only
  210. STATUS mandatory
  211. DESCRIPTION
  212. "This is the number of requests using the COPY method
  213. that have been made to this HTTP Server."
  214. ::= { httpStatistics 25 }
  215. totalMkcol OBJECT-TYPE
  216. SYNTAX Counter
  217. ACCESS read-only
  218. STATUS mandatory
  219. DESCRIPTION
  220. "This is the number of requests using the MKCOL method
  221. that have been made to this HTTP Server."
  222. ::= { httpStatistics 26 }
  223. totalPropfind OBJECT-TYPE
  224. SYNTAX Counter
  225. ACCESS read-only
  226. STATUS mandatory
  227. DESCRIPTION
  228. "This is the number of requests using the PROPFIND method
  229. that have been made to this HTTP Server."
  230. ::= { httpStatistics 27 }
  231. totalProppatch OBJECT-TYPE
  232. SYNTAX Counter
  233. ACCESS read-only
  234. STATUS mandatory
  235. DESCRIPTION
  236. "This is the number of requests using the PROPPATCH method
  237. that have been made to this HTTP Server."
  238. ::= { httpStatistics 28 }
  239. totalSearch OBJECT-TYPE
  240. SYNTAX Counter
  241. ACCESS read-only
  242. STATUS mandatory
  243. DESCRIPTION
  244. "This is the number of requests using the MS-SEARCH method
  245. that have been made to this HTTP Server."
  246. ::= { httpStatistics 29 }
  247. totalLock OBJECT-TYPE
  248. SYNTAX Counter
  249. ACCESS read-only
  250. STATUS mandatory
  251. DESCRIPTION
  252. "This is the number of requests using the LOCK method
  253. that have been made to this HTTP Server."
  254. ::= { httpStatistics 30 }
  255. totalUnlock OBJECT-TYPE
  256. SYNTAX Counter
  257. ACCESS read-only
  258. STATUS mandatory
  259. DESCRIPTION
  260. "This is the number of requests using the UNLOCK method
  261. that have been made to this HTTP Server."
  262. ::= { httpStatistics 31 }
  263. totalOthers OBJECT-TYPE
  264. SYNTAX Counter
  265. ACCESS read-only
  266. STATUS mandatory
  267. DESCRIPTION
  268. "This is the number of requests not using the OPTIONS, GET, HEAD
  269. POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH,
  270. MS-SEARCH, LOCK or UNLOCK method that have been made to this HTTP
  271. Server. This may include LINK or other methods supported by gateway
  272. applications."
  273. ::= { httpStatistics 32 }
  274. currentCGIRequests OBJECT-TYPE
  275. SYNTAX Counter
  276. ACCESS read-only
  277. STATUS mandatory
  278. DESCRIPTION
  279. "This is the number of Common Gateway Interface (CGI)
  280. requests that are currently being serviced by this HTTP Server."
  281. ::= { httpStatistics 33 }
  282. currentBGIRequests OBJECT-TYPE
  283. SYNTAX Counter
  284. ACCESS read-only
  285. STATUS mandatory
  286. DESCRIPTION
  287. "This is the number of Binary Gateway Interface (BGI)
  288. requests that are currently being serviced by this HTTP Server."
  289. ::= { httpStatistics 34 }
  290. totalCGIRequests OBJECT-TYPE
  291. SYNTAX Counter
  292. ACCESS read-only
  293. STATUS mandatory
  294. DESCRIPTION
  295. "This is the number of Common Gateway Interface (CGI)
  296. requests that have been made to this HTTP Server."
  297. ::= { httpStatistics 35 }
  298. totalBGIRequests OBJECT-TYPE
  299. SYNTAX Counter
  300. ACCESS read-only
  301. STATUS mandatory
  302. DESCRIPTION
  303. "This is the number of Binary Gateway Interface (BGI)
  304. requests that have been made to this HTTP Server."
  305. ::= { httpStatistics 36 }
  306. maxCGIRequests OBJECT-TYPE
  307. SYNTAX Counter
  308. ACCESS read-only
  309. STATUS mandatory
  310. DESCRIPTION
  311. "This is the maximum number of Common Gateway Interface (CGI)
  312. requests simultaneous processed by this HTTP Server."
  313. ::= { httpStatistics 37 }
  314. maxBGIRequests OBJECT-TYPE
  315. SYNTAX Counter
  316. ACCESS read-only
  317. STATUS mandatory
  318. DESCRIPTION
  319. "This is the maximum number of Binary Gateway Interface (BGI)
  320. requests simultaneous processed by this HTTP Server."
  321. ::= { httpStatistics 38 }
  322. currentBlockedRequests OBJECT-TYPE
  323. SYNTAX Counter
  324. ACCESS read-only
  325. STATUS mandatory
  326. DESCRIPTION
  327. "This is the current number of requests that have been temporarily
  328. blocked by this HTTP Server due to bandwidth throttling settings."
  329. ::= { httpStatistics 39 }
  330. totalBlockedRequests OBJECT-TYPE
  331. SYNTAX Counter
  332. ACCESS read-only
  333. STATUS mandatory
  334. DESCRIPTION
  335. "This is the total number of requests that have been temporarily
  336. blocked by this HTTP Server due to bandwidth throttling settings."
  337. ::= { httpStatistics 40 }
  338. totalAllowedRequests OBJECT-TYPE
  339. SYNTAX Counter
  340. ACCESS read-only
  341. STATUS mandatory
  342. DESCRIPTION
  343. "This is the total number of requests that have been allowed
  344. by the bandwidth throttling settings on this HTTP Server."
  345. ::= { httpStatistics 41 }
  346. totalRejectedRequests OBJECT-TYPE
  347. SYNTAX Counter
  348. ACCESS read-only
  349. STATUS mandatory
  350. DESCRIPTION
  351. "This is the total number of requests that have been rejected
  352. by this HTTP Server due to bandwidth throttling settings."
  353. ::= { httpStatistics 42 }
  354. totalNotFoundErrors OBJECT-TYPE
  355. SYNTAX Counter
  356. ACCESS read-only
  357. STATUS mandatory
  358. DESCRIPTION
  359. "This is the total number of requests the HTTP server could
  360. not satisfy because the requested resource could not
  361. be found."
  362. ::= { httpStatistics 43 }
  363. totalLockedErrors OBJECT-TYPE
  364. SYNTAX Counter
  365. ACCESS read-only
  366. STATUS mandatory
  367. DESCRIPTION
  368. "This is the total number of requests the HTTP server could
  369. not satisfy because the requested resource was locked."
  370. ::= { httpStatistics 44 }
  371. measuredBandwidth OBJECT-TYPE
  372. SYNTAX Counter
  373. ACCESS read-only
  374. STATUS mandatory
  375. DESCRIPTION
  376. "This is the I/O bandwidth used by this HTTP Server,
  377. averaged over a minute."
  378. ::= { httpStatistics 45 }
  379. currentCALsforAuthenticatedUsers OBJECT-TYPE
  380. SYNTAX Counter
  381. ACCESS read-only
  382. STATUS mandatory
  383. DESCRIPTION
  384. "This is the current count of Client Access Licenses (CALs)
  385. available to this HTTP Server for simultaneous use by authenticated
  386. users."
  387. ::= { httpStatistics 46 }
  388. maxCALsforAuthenticatedUsers OBJECT-TYPE
  389. SYNTAX Counter
  390. ACCESS read-only
  391. STATUS mandatory
  392. DESCRIPTION
  393. "This is the maximum count of Client Access Licenses (CALs)
  394. used by this HTTP Server for simultaneous use by authenticated
  395. users."
  396. ::= { httpStatistics 47 }
  397. totalCALFailedAuthenticatedUser OBJECT-TYPE
  398. SYNTAX Counter
  399. ACCESS read-only
  400. STATUS mandatory
  401. DESCRIPTION
  402. "This is the total number of HTTP requests that have failed on this
  403. HTTP server due to a Client Access License (CAL) being unavailable for
  404. an authenticated user."
  405. ::= { httpStatistics 48 }
  406. currentCALsforSecureConnections OBJECT-TYPE
  407. SYNTAX Counter
  408. ACCESS read-only
  409. STATUS mandatory
  410. DESCRIPTION
  411. "This is the current count of Client Access Licenses (CALs)
  412. available to this HTTP Server for simultaneous use by secure
  413. connections."
  414. ::= { httpStatistics 49 }
  415. maxCALsforSecureConnections OBJECT-TYPE
  416. SYNTAX Counter
  417. ACCESS read-only
  418. STATUS mandatory
  419. DESCRIPTION
  420. "This is the maximum count of Client Access Licenses (CALs)
  421. available to this Http Server for simultaneous use by secure
  422. connections."
  423. ::= { httpStatistics 50 }
  424. totalCALFailedSecureConnection OBJECT-TYPE
  425. SYNTAX Counter
  426. ACCESS read-only
  427. STATUS mandatory
  428. DESCRIPTION
  429. "This is the total number of HTTP requests that have failed on this
  430. HTTP server due to a Client Access License (CAL) being unavailable for
  431. use by a secure connection."
  432. ::= { httpStatistics 51 }
  433. END
  434.