--
-- This SMIv1 module has been generated by smidump 0.3.0. Do not edit.
--

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

IMPORTS
    applIndex
        FROM NETWORK-SERVICES-MIB
    OBJECT-TYPE
        FROM RFC-1212
    TRAP-TYPE
        FROM RFC-1215
    Counter
        FROM RFC1155-SMI
    SnmpAdminString
        FROM SNMP-FRAMEWORK-MIB
    enterprises
        FROM SNMPv2-SMI
    DateAndTime
        FROM SNMPv2-TC
    wwwServiceIndex
        FROM WWW-MIB;

covalentApacheLogMIB OBJECT IDENTIFIER
    ::= { covalent 10 }

-- 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 ::=
    INTEGER { emerg(1), alert(2), crit(3), error(4), warn(5), notice(6), 
                    info(7), debug(8) }

-- CovalentApacheLogLevel ::= TEXTUAL-CONVENTION
--     STATUS      mandatory
--     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
    ACCESS      not-accessible
    STATUS      mandatory
    DESCRIPTION 
        "The Application Logging Table provides generic
         management information for the Apache application."
    ::= { ctLogObjects 1 }

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

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

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

ctApplicationLogCounter OBJECT-TYPE
    SYNTAX      Counter
    ACCESS      read-only
    STATUS      mandatory
    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
    ACCESS      read-only
    STATUS      mandatory
    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
    ACCESS      read-only
    STATUS      mandatory
    DESCRIPTION 
        "The last message logged for the log level of
         the associated Apache application."
    ::= { ctApplicationLogEntry 4 }

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

ctApplicationLogCtrlEntry OBJECT-TYPE
    SYNTAX      CtApplicationLogCtrlEntry
    ACCESS      not-accessible
    STATUS      mandatory
    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   Gauge
}

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

ctApplicationLogCtrlEnable OBJECT-TYPE
    SYNTAX      INTEGER { enable(1), disable(2) }
    ACCESS      read-write
    STATUS      mandatory
    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
    ACCESS      read-write
    STATUS      mandatory
    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      Gauge
    ACCESS      read-write
    STATUS      mandatory
    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
    ACCESS      not-accessible
    STATUS      mandatory
    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
    ACCESS      not-accessible
    STATUS      mandatory
    DESCRIPTION 
        "The entry providing all the network management
         information for the associated WWW service."
    INDEX       { applIndex, ctApplicationLogLastNIndex }
    ::= { ctApplicationLogLastNTable 1 }

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

ctApplicationLogLastNIndex OBJECT-TYPE
    SYNTAX      Gauge (1..4294967295)
    ACCESS      not-accessible
    STATUS      mandatory
    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
    ACCESS      read-only
    STATUS      mandatory
    DESCRIPTION 
        "The log level with with the message was logged."
    ::= { ctApplicationLogLastNEntry 2 }

ctApplicationLogLastNWwwService OBJECT-TYPE
    SYNTAX      Gauge
    ACCESS      read-only
    STATUS      mandatory
    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
    ACCESS      read-only
    STATUS      mandatory
    DESCRIPTION 
        "The date and time the message was logged."
    ::= { ctApplicationLogLastNEntry 4 }

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

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

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

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

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

ctWwwServiceLogCounter OBJECT-TYPE
    SYNTAX      Counter
    ACCESS      read-only
    STATUS      mandatory
    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
    ACCESS      read-only
    STATUS      mandatory
    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
    ACCESS      read-only
    STATUS      mandatory
    DESCRIPTION 
        "The last message logged for the log level of
         the associated WWW service."
    ::= { ctWwwServiceLogEntry 4 }

ctWwwServiceLogCtrlTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtWwwServiceLogCtrlEntry
    ACCESS      not-accessible
    STATUS      mandatory
    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
    ACCESS      not-accessible
    STATUS      mandatory
    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    Gauge
}

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

ctWwwServiceLogCtrlEnable OBJECT-TYPE
    SYNTAX      INTEGER { enable(1), disable(2) }
    ACCESS      read-write
    STATUS      mandatory
    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
    ACCESS      read-write
    STATUS      mandatory
    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      Gauge
    ACCESS      read-write
    STATUS      mandatory
    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
    ACCESS      not-accessible
    STATUS      mandatory
    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
    ACCESS      not-accessible
    STATUS      mandatory
    DESCRIPTION 
        "The entry providing all the network management
         information for the associated WWW service."
    INDEX       { wwwServiceIndex, ctWwwServiceLogLastNIndex }
    ::= { ctWwwServiceLogLastNTable 1 }

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

ctWwwServiceLogLastNIndex OBJECT-TYPE
    SYNTAX      Gauge (1..4294967295)
    ACCESS      not-accessible
    STATUS      mandatory
    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
    ACCESS      read-only
    STATUS      mandatory
    DESCRIPTION 
        "The log level with with the message was logged."
    ::= { ctWwwServiceLogLastNEntry 2 }

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

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

ctApacheLogNotifications OBJECT IDENTIFIER
    ::= { covalentApacheLogMIB 2 }

ctApacheLogMIBConformance OBJECT IDENTIFIER
    ::= { covalentApacheLogMIB 3 }

ctApacheLogMIBCompliances OBJECT IDENTIFIER
    ::= { ctApacheLogMIBConformance 1 }

ctApacheLogMIBGroups OBJECT IDENTIFIER
    ::= { ctApacheLogMIBConformance 2 }

ctApplicationLogNotification TRAP-TYPE
    ENTERPRISE  ctApacheLogNotifications
    VARIABLES   { ctApplicationLogLastNLevel, ctApplicationLogLastNTime, 
                  ctApplicationLogLastNMsg }
--     STATUS      mandatory
    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."
    ::= 1

ctWwwServiceLogNotification TRAP-TYPE
    ENTERPRISE  ctApacheLogNotifications
    VARIABLES   { ctWwwServiceLogLastNLevel, ctWwwServiceLogLastNTime, 
                  ctWwwServiceLogLastNMsg }
--     STATUS      mandatory
    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."
    ::= 2

ctApacheLogApplicationGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 1 }

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

ctApacheLogApplicationCtrlGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 2 }

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

ctApacheLogApplicationLastNGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 3 }

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

ctApacheLogWwwServiceGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 4 }

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

ctApacheLogWwwServiceCtrlGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 5 }

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

ctApacheLogWwwServiceLastNGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 6 }

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

ctApacheLogApplNotificationGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 7 }

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

ctApacheLogWWWNotificationGroup OBJECT IDENTIFIER
    ::= { ctApacheLogMIBGroups 8 }

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

ctApacheLogFullCompliance OBJECT IDENTIFIER
    ::= { ctApacheLogMIBCompliances 1 }

-- ctApacheLogFullCompliance MODULE-COMPLIANCE
--     STATUS      mandatory
--     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 OBJECT IDENTIFIER
    ::= { ctApacheLogMIBCompliances 2 }

-- ctApacheLogApplicationCompliance MODULE-COMPLIANCE
--     STATUS      mandatory
--     DESCRIPTION 
--         "The minimal compliance statement for the COVALENT-ANTIVIRUS-MIB."

--     MODULE      -- -- this module

--         MANDATORY-GROUPS        { ctApacheLogApplicationGroup, 
--                   ctApacheLogApplicationCtrlGroup, 
--                   ctApacheLogApplicationLastNGroup, 
--                   ctApacheLogApplNotificationGroup }

--     ::= { ctApacheLogMIBCompliances 2 }

ctApacheLogWwwServiceCompliance OBJECT IDENTIFIER
    ::= { ctApacheLogMIBCompliances 3 }

-- ctApacheLogWwwServiceCompliance MODULE-COMPLIANCE
--     STATUS      mandatory
--     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.
