home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 July / PCWorld_2001-07_cd.bin / Software / Topware / w2ksp2en / w2ksp2.exe / i386 / adminpak.msi / adminpak.CAB / http.mib < prev    next >
Encoding:
Text File  |  1999-01-14  |  19.6 KB  |  491 lines

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