home *** CD-ROM | disk | FTP | other *** search
- HttpServer-MIB DEFINITIONS ::= BEGIN
-
- IMPORTS
- enterprises,
- OBJECT-TYPE,
- Counter
- FROM RFC1155-SMI
- InternetServer
- FROM inetsrv;
-
- -- microsoft OBJECT IDENTIFIER ::= { enterprises 311 }
- -- software OBJECT IDENTIFIER ::= { microsoft 1 }
- -- InternetServer OBJECT IDENTIFIER ::= { software 7 }
- HttpServer OBJECT IDENTIFIER ::= { InternetServer 3 }
- HttpStatistics OBJECT IDENTIFIER ::= { HttpServer 1 }
-
- -- Http Server Statistics
-
- TotalBytesSent_HighWord OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the high 32-bits of the total number of
- of BYTEs sent by the Http Server"
- ::= { HttpStatistics 1 }
-
- TotalBytesSent_LowWord OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the low 32-bits of the total number of
- of BYTEs sent by the Http Server"
- ::= { HttpStatistics 2 }
-
- TotalBytesReceived_HighWord OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the high 32-bits of the total number of
- of BYTEs received by the Http Server"
- ::= { HttpStatistics 3 }
-
- TotalBytesReceived_LowWord OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the low 32-bits of the total number of
- of BYTEs received by the Http Server"
- ::= { HttpStatistics 4 }
-
- TotalFilesSent OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the total number of files sent by this
- Http Server"
- ::= { HttpStatistics 5 }
-
- CurrentAnonymousUsers OBJECT-TYPE
- SYNTAX Integer
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of anonymous users currently
- connected to the Http Server"
- ::= { HttpStatistics 6 }
-
- CurrentNonAnonymousUsers OBJECT-TYPE
- SYNTAX Integer
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of nonanonymous users currently
- connected to the Http Server"
- ::= { HttpStatistics 7 }
-
- TotalAnonymousUsers OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the total number of anonymous users that
- have ever connected to the Http Server"
- ::= { HttpStatistics 8 }
-
- TotalNonAnonymousUsers OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the total number of nonanonymous users that
- have ever connected to the Http Server"
- ::= { HttpStatistics 9 }
-
- MaxAnonymousUsers OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the maximum number of anonymous users
- simultaneously connected to the Http Server"
- ::= { HttpStatistics 10 }
-
- MaxNonAnonymousUsers OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the maximum number of nonanonymous users
- simultaneously connected to the Http Server"
- ::= { HttpStatistics 11 }
-
- CurrentConnections OBJECT-TYPE
- SYNTAX Integer
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the current number of connections to the
- Http Server"
- ::= { HttpStatistics 12 }
-
- MaxConnections OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the maximum number of simultaneous
- connections to the Http Server"
- ::= { HttpStatistics 13 }
-
- ConnectionAttempts OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of connection attempts that
- have been made to the Http Server"
- ::= { HttpStatistics 14 }
-
- LogonAttempts OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of logon attempts that have
- been made to this Http Server"
- ::= { HttpStatistics 15 }
-
- TotalGets OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of requests using the GET method
- that have been made to this Http Server"
- ::= { HttpStatistics 16 }
-
- TotalPosts OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of requests using the POST method
- that have been made to this Http Server"
- ::= { HttpStatistics 17 }
-
- TotalHeads OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of requests using the HEAD method
- that have been made to this Http Server"
- ::= { HttpStatistics 18 }
-
- TotalOthers OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of requests not using the GET,
- POST or HEAD method that have been made to this Http
- Server"
- ::= { HttpStatistics 19 }
-
- TotalCGIRequests OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of Common Gateway Interface (CGI)
- requests that have been made to this Http Server"
- ::= { HttpStatistics 20 }
-
- TotalISAPIRequests OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of Internet Server (ISAPI)
- requests that have been made to this Http Server"
- ::= { HttpStatistics 21 }
-
- TotalNotFoundErrors OBJECT-TYPE
- SYNTAX Counter
- ACCESS read-only
- STATUS mandatory
- DESCRIPTION
- "This is the number of requests the Http server could
- not satisfy because the requested resource could not
- be found"
- ::= { HttpStatistics 22 }
-
- END
-
-