COVALENT-APACHE-LOGGING-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
    enterprises, Unsigned32
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION, DateAndTime
        FROM SNMPv2-TC
    MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
        FROM SNMPv2-CONF
    SnmpAdminString
        FROM SNMP-FRAMEWORK-MIB
    wwwServiceIndex
        FROM WWW-MIB
    applIndex
        FROM NETWORK-SERVICES-MIB;

covalentApacheLogMIB MODULE-IDENTITY
    LAST-UPDATED "200204020000Z"
    ORGANIZATION 
	"Copyright (C) Covalent Technologies (2000-2002).  All Rights Reserved."
    CONTACT-INFO 
        "SNMP Engineering
         Covalent Technologies
         postal: 303 Second Street
                 Suite 375 South
                 San Francisco, CA 94107
         tel:    +1-800-444-1935
         email: support@covalent.net"
    DESCRIPTION 
	"This MIB module defines managed objects to be used in
         combination with the Apache server. The managed objects
         represent the common logging mechanism of the Apache
         server.

         $Id: COVALENT-APACHE-LOGGING-MIB.txt 8676 2008-01-17 23:11:17Z ispringer $"
    ::= { covalent 10 }

CovalentApacheLogLevel ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "LogLevel adjusts the verbosity of the messages recorded
         in the error logs.
         The following levels are available, in order of
         decreasing significance: 
         emerg: Emergencies - system is unusable. 
                'Child cannot open lock file. Exiting'
         alert: Action must be taken immediately. 
                'getpwuid: couldn't determine user name from uid'
         crit: Critical Conditions. 
                'socket: Failed to get a socket, exiting child'
         error: Error conditions. 
                'Premature end of script headers'
         warn: Warning conditions. 
                'child process 1234 did not exit, sending
                another SIGHUP' 
         notice: Normal but significant condition. 
                'httpd: caught SIGBUS, attempting to dump core in ...' 
         info: Informational. 
                'Server seems busy, (you may need to increase
                StartServers, or Min/MaxSpareServers)...' 
         debug: Debug-level messages 
                'Opening config file ...'"
    SYNTAX INTEGER { emerg(1), alert(2), crit(3), error(4),
                        warn(5), notice(6), info(7), debug(8) }

covalent OBJECT IDENTIFIER
    ::= { enterprises 6100 }

ctLogObjects OBJECT IDENTIFIER
    ::= { covalentApacheLogMIB 1 }

ctApplicationLogTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtApplicationLogEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The Application Logging Table provides generic
         management information for the Apache application."
    ::= { ctLogObjects 1 }

ctApplicationLogEntry OBJECT-TYPE
    SYNTAX      CtApplicationLogEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The entry providing all the network management
         information per Apache application."
    INDEX       { applIndex, ctApplicationLogLevel }
    ::= { ctApplicationLogTable 1 }

CtApplicationLogEntry ::= SEQUENCE {
    ctApplicationLogLevel      CovalentApacheLogLevel,
    ctApplicationLogCounter    Counter32,
    ctApplicationLogLastTime   DateAndTime,
    ctApplicationLogLastMsg    SnmpAdminString
}

ctApplicationLogLevel OBJECT-TYPE
    SYNTAX      CovalentApacheLogLevel
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The LogLevel applicable for the associated
         Apache application."
    ::= { ctApplicationLogEntry 1 }

ctApplicationLogCounter OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The number of times a message was logged for the
         log level of the associated Apache application."
    ::= { ctApplicationLogEntry 2 }

ctApplicationLogLastTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The last date and time a message was logged for
         the log level of the associated Apache application."
    ::= { ctApplicationLogEntry 3 }

ctApplicationLogLastMsg OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The last message logged for the log level of
         the associated Apache application."
    ::= { ctApplicationLogEntry 4 }

ctApplicationLogCtrlTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtApplicationLogCtrlEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The Application Logging Table provides generic
         management information for the Apache application."
    ::= { ctLogObjects 2 }

ctApplicationLogCtrlEntry OBJECT-TYPE
    SYNTAX      CtApplicationLogCtrlEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The entry providing all the network management
         information per Apache application."
    INDEX       { applIndex }
    ::= { ctApplicationLogCtrlTable 1 }

CtApplicationLogCtrlEntry ::= SEQUENCE {
    ctApplicationLogCtrlFile        SnmpAdminString,
    ctApplicationLogCtrlEnable      INTEGER,
    ctApplicationLogCtrlLevel       CovalentApacheLogLevel,
    ctApplicationLogCtrlLastNSize   Unsigned32
}

ctApplicationLogCtrlFile OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The file name to which the application logs the
          messages."
    ::= { ctApplicationLogCtrlEntry 1 }

ctApplicationLogCtrlEnable OBJECT-TYPE
    SYNTAX      INTEGER { enable(1), disable(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The ctApplicationLogCtrlEnable controls whether
         the SNMP agent sends out notifications for
         the logged messages.

         The ctApplicationLogCtrlLevel determines the
         highest log level for which notifications will
         be generated."
    DEFVAL { enable }
    ::= { ctApplicationLogCtrlEntry 2 }

ctApplicationLogCtrlLevel OBJECT-TYPE
    SYNTAX      CovalentApacheLogLevel
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The log level for which the notification
         generation will be sent. If a loglevel is set
         it will also invoke notifications for all
         log levels of a lower value.

         The ctApplicationLogCtrlEnable controls whether
         a notification is sent."
    ::= { ctApplicationLogCtrlEntry 3 }

ctApplicationLogCtrlLastNSize OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The maximum number of entries that may be maintained
         per Apache application in the ctApplicationLogLastNTable."
    DEFVAL { 10 }
    ::= { ctApplicationLogCtrlEntry 4 }

ctApplicationLogLastNTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtApplicationLogLastNEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The application Logging Last N Table provides generic
         management information for the Apache application.
         That table provides the last N message that were
         logged by the Apache application.

         The number of message that the table may contain per
         Apache application is controlled by"
    ::= { ctLogObjects 3 }

ctApplicationLogLastNEntry OBJECT-TYPE
    SYNTAX      CtApplicationLogLastNEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entry providing all the network management
         information for the associated WWW service."
    INDEX       { applIndex, ctApplicationLogLastNIndex }
    ::= { ctApplicationLogLastNTable 1 }

CtApplicationLogLastNEntry ::= SEQUENCE {
    ctApplicationLogLastNIndex       Unsigned32,
    ctApplicationLogLastNLevel       CovalentApacheLogLevel,
    ctApplicationLogLastNWwwService  Unsigned32,
    ctApplicationLogLastNTime        DateAndTime,
    ctApplicationLogLastNMsg         SnmpAdminString
}

ctApplicationLogLastNIndex OBJECT-TYPE
    SYNTAX      Unsigned32 (1..4294967295)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An arbitrary monotonically increasing integer used for
         for indexing the ctApplicationLogLastNTable.
         The first message logged appears in the table with
         the index value equal to one. Subsequent log messages
         will be indexed with the sequential index value.
         If the table has N entries for a perticular Apache 
         application the table will operate as a sliding 
         window for the last N log messages.
         The size of the table (N) is controlled by
         ctApplicationLogCtrlLastNSize."
    ::= { ctApplicationLogLastNEntry 1 }

ctApplicationLogLastNLevel OBJECT-TYPE
    SYNTAX      CovalentApacheLogLevel
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The log level with with the message was logged."
    ::= { ctApplicationLogLastNEntry 2 }

ctApplicationLogLastNWwwService OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The WWW service with which the logged message
         was associated within the Apache application.

         This is the value of wwwServiceIndex. If the
         logged message is not associated with a WWW
         service this value should be '0'."
    REFERENCE
        "WWW-MIB RFC 2594"
    ::= { ctApplicationLogLastNEntry 3 }

ctApplicationLogLastNTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The date and time the message was logged."
    ::= { ctApplicationLogLastNEntry 4 }

ctApplicationLogLastNMsg OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The message that was logged."
    ::= { ctApplicationLogLastNEntry 5 }

ctWwwServiceLogTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtWwwServiceLogEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The WwwService Logging Table provides generic
         management information for the Apache application."
    ::= { ctLogObjects 4 }

ctWwwServiceLogEntry OBJECT-TYPE
    SYNTAX      CtWwwServiceLogEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entry providing all the network management
         information for the associated WWW service."
    INDEX       { wwwServiceIndex, ctWwwServiceLogLevel }
    ::= { ctWwwServiceLogTable 1 }

CtWwwServiceLogEntry ::= SEQUENCE {
    ctWwwServiceLogLevel       CovalentApacheLogLevel,
    ctWwwServiceLogCounter     Counter32,
    ctWwwServiceLogLastTime    DateAndTime,
    ctWwwServiceLogLastMsg     SnmpAdminString
}

ctWwwServiceLogLevel OBJECT-TYPE
    SYNTAX      CovalentApacheLogLevel
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The LogLevel applicable for the associated
         for the associated WWW service."
    ::= { ctWwwServiceLogEntry 1 }

ctWwwServiceLogCounter OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of times a message was logged for the
         log level of for the associated WWW service."
    ::= { ctWwwServiceLogEntry 2 }

ctWwwServiceLogLastTime OBJECT-TYPE
    SYNTAX      DateAndTime    
    MAX-ACCESS  read-only 
    STATUS      current
    DESCRIPTION
        "The last date and time a message was logged for
         the log level of for the associated WWW service."
    ::= { ctWwwServiceLogEntry 3 }

ctWwwServiceLogLastMsg OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The last message logged for the log level of
         the associated WWW service."
    ::= { ctWwwServiceLogEntry 4 }

ctWwwServiceLogCtrlTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtWwwServiceLogCtrlEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The WwwService Logging Control Table provides generic
         management information to control the logging for the
         WWW service."
    ::= { ctLogObjects 5 }

ctWwwServiceLogCtrlEntry OBJECT-TYPE
    SYNTAX      CtWwwServiceLogCtrlEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The entry providing all the network management
         information per WWW service."
    INDEX       { wwwServiceIndex }
    ::= { ctWwwServiceLogCtrlTable 1 }

CtWwwServiceLogCtrlEntry ::= SEQUENCE {
    ctWwwServiceLogCtrlFile        SnmpAdminString,
    ctWwwServiceLogCtrlEnable      INTEGER,
    ctWwwServiceLogCtrlLevel       CovalentApacheLogLevel,
    ctWwwServiceLogCtrlLastNSize   Unsigned32
}

ctWwwServiceLogCtrlFile OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The file name to which the application logs
          messages."
    ::= { ctWwwServiceLogCtrlEntry 1 }

ctWwwServiceLogCtrlEnable OBJECT-TYPE
    SYNTAX      INTEGER { enable(1), disable(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The ctWwwServiceLogCtrlEnable controls whether
         the SNMP agent sends out notifications for
         the logged messages.

         The ctWwwServiceLogCtrlLevel determines the
         highest log level for which notifications will
         be generated."
    DEFVAL { enable }
    ::= { ctWwwServiceLogCtrlEntry 2 }

ctWwwServiceLogCtrlLevel OBJECT-TYPE
    SYNTAX      CovalentApacheLogLevel
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The log level for which the notification
         generation will be sent. If a loglevel is set
         it will also invoke notifications for all
         log levels of a lower value. 

         The ctWwwServiceLogCtrlEnable controls whether 
         a notification is sent."
    ::= { ctWwwServiceLogCtrlEntry 3 }

ctWwwServiceLogCtrlLastNSize OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The maximum number of entries that may be maintained
         per WWW service in the ctWwwServiceLogLastNTable."
    DEFVAL { 10 }
    ::= { ctWwwServiceLogCtrlEntry 4 }

ctWwwServiceLogLastNTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtWwwServiceLogLastNEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The WWW service Logging Last N Table provides generic
         management information for the Apache application.
         That table provides the last N message that were
         logged by the Apache application.

         The number of message that the table may contain per
         Apache application is controlled by"
    ::= { ctLogObjects 6 }

ctWwwServiceLogLastNEntry OBJECT-TYPE
    SYNTAX      CtWwwServiceLogLastNEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The entry providing all the network management
         information for the associated WWW service."
    INDEX       { wwwServiceIndex, ctWwwServiceLogLastNIndex }
    ::= { ctWwwServiceLogLastNTable 1 }

CtWwwServiceLogLastNEntry ::= SEQUENCE {
    ctWwwServiceLogLastNIndex       Unsigned32,
    ctWwwServiceLogLastNLevel       CovalentApacheLogLevel,
    ctWwwServiceLogLastNTime        DateAndTime,
    ctWwwServiceLogLastNMsg         SnmpAdminString
}

ctWwwServiceLogLastNIndex OBJECT-TYPE
    SYNTAX      Unsigned32 (1..4294967295)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An arbitrary monotonically increasing integer used for
         for indexing the ctWwwServiceLogLastNTable.
         The first message logged appears in the table with
         the index value equal to one. Subsequent log messages
         will be indexed with the sequential index value.
         If the table has N entries for a perticular Apache 
         application the table will operate as a sliding 
         window for the last N log messages.
         The size of the table (N) is controlled by
         ctWwwServiceLogLastNSize."
    ::= { ctWwwServiceLogLastNEntry 1 }

ctWwwServiceLogLastNLevel OBJECT-TYPE
    SYNTAX      CovalentApacheLogLevel
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The log level with with the message was logged."
    ::= { ctWwwServiceLogLastNEntry 2 }

ctWwwServiceLogLastNTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The date and time the message was logged."
    ::= { ctWwwServiceLogLastNEntry 3 }

ctWwwServiceLogLastNMsg OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The message that was logged."
    ::= { ctWwwServiceLogLastNEntry 4 }

ctApacheLogNotifications OBJECT IDENTIFIER
    ::= { covalentApacheLogMIB 2 }

ctApplicationLogNotification NOTIFICATION-TYPE
    OBJECTS     { ctApplicationLogLastNLevel,
                  ctApplicationLogLastNTime,
                  ctApplicationLogLastNMsg }
    STATUS      current
    DESCRIPTION
        "The notification sent if a message is logged.

         -- ctApplicationLogLevel: provides the
            log level of the logged message.
         -- ctApplicationLogLastTime: provides the
            date and time the message was logged.
         -- ctApplicationLogLastMsg:  provides the
            message that was logged."
    ::= { ctApacheLogNotifications 1 }

ctWwwServiceLogNotification NOTIFICATION-TYPE
    OBJECTS     { ctWwwServiceLogLastNLevel,
                  ctWwwServiceLogLastNTime,
                  ctWwwServiceLogLastNMsg }
    STATUS      current
    DESCRIPTION
        "The notification sent if a message is logged.

         -- ctWwwServiceLogLevel: provides the
            log level of the logged message.
         -- ctWwwServiceLogLastTime: provides the
            date and time the message was logged.
         -- ctWwwServiceLogLastMsg: provides the
            logged message."
    ::= { ctApacheLogNotifications 2 }

ctApacheLogMIBConformance OBJECT IDENTIFIER
    ::= { covalentApacheLogMIB 3 }

ctApacheLogMIBCompliances OBJECT IDENTIFIER
    ::= { ctApacheLogMIBConformance 1 }

ctApacheLogMIBGroups OBJECT IDENTIFIER
    ::= { ctApacheLogMIBConformance 2 }

ctApacheLogApplicationGroup OBJECT-GROUP
    OBJECTS     { ctApplicationLogCounter,
                  ctApplicationLogLastTime,
                  ctApplicationLogLastMsg }
    STATUS      current
    DESCRIPTION 
        "The objects that are maintained in order to perform
         log message counting per Apache application."
    ::= { ctApacheLogMIBGroups 1 }

ctApacheLogApplicationCtrlGroup OBJECT-GROUP
    OBJECTS     { ctApplicationLogCtrlFile,
                  ctApplicationLogCtrlEnable,
                  ctApplicationLogCtrlLevel,
                  ctApplicationLogCtrlLastNSize }
    STATUS      current
    DESCRIPTION
        "The objects that are maintained in order to perform
         log message counting per Apache application."
    ::= { ctApacheLogMIBGroups 2 }

ctApacheLogApplicationLastNGroup OBJECT-GROUP
    OBJECTS     { ctApplicationLogLastNLevel,
                  ctApplicationLogLastNWwwService,
                  ctApplicationLogLastNTime,
                  ctApplicationLogLastNMsg }
    STATUS      current
    DESCRIPTION
        "The objects that are maintained in order to provide
         the last N messages for an Apache application."
    ::= { ctApacheLogMIBGroups 3 }


ctApacheLogWwwServiceGroup OBJECT-GROUP
    OBJECTS     { ctWwwServiceLogCounter,
                  ctWwwServiceLogLastTime,
                  ctWwwServiceLogLastMsg }
    STATUS      current
    DESCRIPTION 
        "The objects that are maintained in order to perform
         log message counting per WWW service."
    ::= { ctApacheLogMIBGroups 4 }

ctApacheLogWwwServiceCtrlGroup OBJECT-GROUP
    OBJECTS     { ctWwwServiceLogCtrlFile,
                  ctWwwServiceLogCtrlEnable,
                  ctWwwServiceLogCtrlLevel,
                  ctWwwServiceLogCtrlLastNSize }
    STATUS      current
    DESCRIPTION
        "The objects that are maintained in order to perform
         WWW service specific administration."
    ::= { ctApacheLogMIBGroups 5 }

ctApacheLogWwwServiceLastNGroup OBJECT-GROUP
    OBJECTS     { ctWwwServiceLogLastNLevel, 
                  ctWwwServiceLogLastNTime,
                  ctWwwServiceLogLastNMsg }
    STATUS      current
    DESCRIPTION
        "The objects that are maintained in order to provide
         the last N messages for a WWW service."
    ::= { ctApacheLogMIBGroups 6 }

ctApacheLogApplNotificationGroup NOTIFICATION-GROUP
    NOTIFICATIONS { ctApplicationLogNotification }
    STATUS      current
    DESCRIPTION
        "The notification which are sent for the Apache
         application logging system."
    ::= { ctApacheLogMIBGroups 7 }

ctApacheLogWWWNotificationGroup NOTIFICATION-GROUP
    NOTIFICATIONS { ctApplicationLogNotification,
                    ctWwwServiceLogNotification }
    STATUS      current
    DESCRIPTION 
        "The notification which are sent for the WWW
         service logging system."
    ::= { ctApacheLogMIBGroups 8 }

ctApacheLogFullCompliance MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The basic compliance statement for the COVALENT-ANTIVIRUS-MIB."
    MODULE      -- this module
        MANDATORY-GROUPS {
                  ctApacheLogApplicationGroup,
                  ctApacheLogApplicationCtrlGroup,
                  ctApacheLogApplicationLastNGroup,
                  ctApacheLogWwwServiceGroup,
                  ctApacheLogWwwServiceCtrlGroup,
                  ctApacheLogWwwServiceLastNGroup,
                  ctApacheLogApplNotificationGroup,
                  ctApacheLogWWWNotificationGroup }
    ::= { ctApacheLogMIBCompliances 1 }

ctApacheLogApplicationCompliance MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION 
        "The minimal compliance statement for the COVALENT-ANTIVIRUS-MIB."
    MODULE      -- this module
        MANDATORY-GROUPS        {
                  ctApacheLogApplicationGroup,
                  ctApacheLogApplicationCtrlGroup,
                  ctApacheLogApplicationLastNGroup,
                  ctApacheLogApplNotificationGroup }
    ::= { ctApacheLogMIBCompliances 2 }

ctApacheLogWwwServiceCompliance MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The l compliance statement for the COVALENT-ANTIVIRUS-MIB."
    MODULE      -- this module
        MANDATORY-GROUPS {
                  ctApacheLogWwwServiceGroup,
                  ctApacheLogWwwServiceCtrlGroup,
                  ctApacheLogWwwServiceLastNGroup,
                  ctApacheLogWWWNotificationGroup }
    ::= { ctApacheLogMIBCompliances 3 }


END -- end of module COVALENT-APACHE-LOGGING-MIB.
