home *** CD-ROM | disk | FTP | other *** search
/ Soft 19 / Soft19.iso / win95-rc / win95_23.cab / http.mib < prev    next >
Text File  |  1996-06-17  |  8KB  |  221 lines

  1. HttpServer-MIB DEFINITIONS ::= BEGIN
  2.  
  3.         IMPORTS
  4.                 enterprises,
  5.                 OBJECT-TYPE,
  6.                 Counter
  7.                         FROM RFC1155-SMI
  8.                 InternetServer
  9.                         FROM inetsrv;
  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.         TotalBytesSent_HighWord 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.         TotalBytesSent_LowWord 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.         TotalBytesReceived_HighWord 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.         TotalBytesReceived_LowWord 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.         CurrentAnonymousUsers OBJECT-TYPE
  65.                 SYNTAX  Integer
  66.                 ACCESS  read-only
  67.                 STATUS  mandatory
  68.                 DESCRIPTION
  69.                         "This is the number of anonymous users currently
  70.                         connected to the Http Server"
  71.                 ::= { HttpStatistics 6 }
  72.  
  73.         CurrentNonAnonymousUsers OBJECT-TYPE
  74.                 SYNTAX  Integer
  75.                 ACCESS  read-only
  76.                 STATUS  mandatory
  77.                 DESCRIPTION
  78.                         "This is the number of nonanonymous users currently
  79.                         connected to the Http Server"
  80.                 ::= { HttpStatistics 7  }
  81.  
  82.         TotalAnonymousUsers OBJECT-TYPE
  83.                 SYNTAX  Counter
  84.                 ACCESS  read-only
  85.                 STATUS  mandatory
  86.                 DESCRIPTION
  87.                         "This is the total number of anonymous users that
  88.                         have ever connected to the Http Server"
  89.                 ::= { HttpStatistics 8  }
  90.  
  91.         TotalNonAnonymousUsers OBJECT-TYPE
  92.                 SYNTAX  Counter
  93.                 ACCESS  read-only
  94.                 STATUS  mandatory
  95.                 DESCRIPTION
  96.                         "This is the total number of nonanonymous users that
  97.                         have ever connected to the Http Server"
  98.                 ::= { HttpStatistics 9  }
  99.  
  100.         MaxAnonymousUsers OBJECT-TYPE
  101.                 SYNTAX  Counter
  102.                 ACCESS  read-only
  103.                 STATUS  mandatory
  104.                 DESCRIPTION
  105.                         "This is the maximum number of anonymous users
  106.                         simultaneously connected to the Http Server"
  107.                 ::= { HttpStatistics 10 }
  108.  
  109.         MaxNonAnonymousUsers OBJECT-TYPE
  110.                 SYNTAX  Counter
  111.                 ACCESS  read-only
  112.                 STATUS  mandatory
  113.                 DESCRIPTION
  114.                         "This is the maximum number of nonanonymous users
  115.                         simultaneously connected to the Http Server"
  116.                 ::= { HttpStatistics 11 }
  117.  
  118.         CurrentConnections OBJECT-TYPE
  119.                 SYNTAX  Integer
  120.                 ACCESS  read-only
  121.                 STATUS  mandatory
  122.                 DESCRIPTION
  123.                         "This is the current number of connections to the
  124.                         Http Server"
  125.                 ::= { HttpStatistics 12 }
  126.  
  127.         MaxConnections OBJECT-TYPE
  128.                 SYNTAX  Counter
  129.                 ACCESS  read-only
  130.                 STATUS  mandatory
  131.                 DESCRIPTION
  132.                         "This is the maximum number of simultaneous
  133.                         connections to the Http Server"
  134.                 ::= { HttpStatistics 13 }
  135.  
  136.         ConnectionAttempts OBJECT-TYPE
  137.                 SYNTAX  Counter
  138.                 ACCESS  read-only
  139.                 STATUS  mandatory
  140.                 DESCRIPTION
  141.                         "This is the number of connection attempts that
  142.                         have been made to the Http Server"
  143.                 ::= { HttpStatistics 14 }
  144.  
  145.         LogonAttempts OBJECT-TYPE
  146.                 SYNTAX  Counter
  147.                 ACCESS  read-only
  148.                 STATUS  mandatory
  149.                 DESCRIPTION
  150.                         "This is the number of logon attempts that have
  151.                         been made to this Http Server"
  152.                 ::= { HttpStatistics 15 }
  153.  
  154.         TotalGets OBJECT-TYPE
  155.                 SYNTAX  Counter
  156.                 ACCESS  read-only
  157.                 STATUS  mandatory
  158.                 DESCRIPTION
  159.                         "This is the number of requests using the GET method
  160.                         that have been made to this Http Server"
  161.                 ::= { HttpStatistics 16 }
  162.  
  163.         TotalPosts OBJECT-TYPE
  164.                 SYNTAX  Counter
  165.                 ACCESS  read-only
  166.                 STATUS  mandatory
  167.                 DESCRIPTION
  168.                         "This is the number of requests using the POST method
  169.                         that have been made to this Http Server"
  170.                 ::= { HttpStatistics 17 }
  171.  
  172.         TotalHeads OBJECT-TYPE
  173.                 SYNTAX  Counter
  174.                 ACCESS  read-only
  175.                 STATUS  mandatory
  176.                 DESCRIPTION
  177.                         "This is the number of requests using the HEAD method
  178.                         that have been made to this Http Server"
  179.                 ::= { HttpStatistics 18 }
  180.  
  181.         TotalOthers OBJECT-TYPE
  182.                 SYNTAX  Counter
  183.                 ACCESS  read-only
  184.                 STATUS  mandatory
  185.                 DESCRIPTION
  186.                         "This is the number of requests not using the GET,
  187.                         POST or HEAD method that have been made to this Http
  188.                         Server"
  189.                 ::= { HttpStatistics 19 }
  190.  
  191.         TotalCGIRequests OBJECT-TYPE
  192.                 SYNTAX  Counter
  193.                 ACCESS  read-only
  194.                 STATUS  mandatory
  195.                 DESCRIPTION
  196.                         "This is the number of Common Gateway Interface (CGI)
  197.                         requests that have been made to this Http Server"
  198.                 ::= { HttpStatistics 20 }
  199.  
  200.         TotalISAPIRequests OBJECT-TYPE
  201.                 SYNTAX  Counter
  202.                 ACCESS  read-only
  203.                 STATUS  mandatory
  204.                 DESCRIPTION
  205.                         "This is the number of Internet Server (ISAPI)
  206.                         requests that have been made to this Http Server"
  207.                 ::= { HttpStatistics 21 }
  208.  
  209.         TotalNotFoundErrors OBJECT-TYPE
  210.                 SYNTAX  Counter
  211.                 ACCESS  read-only
  212.                 STATUS  mandatory
  213.                 DESCRIPTION
  214.                         "This is the number of requests the Http server could
  215.                         not satisfy because the requested resource could not
  216.                         be found"
  217.                 ::= { HttpStatistics 22 }
  218.  
  219. END
  220.  
  221.