Blame mibs/ietf/RAQMON-MIB

Packit 022b05
RAQMON-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
    IMPORTS
Packit 022b05
        OBJECT-GROUP, NOTIFICATION-GROUP, MODULE-COMPLIANCE
Packit 022b05
            FROM SNMPv2-CONF
Packit 022b05
        Integer32, Unsigned32,
Packit 022b05
        Gauge32, Counter32, OBJECT-TYPE,
Packit 022b05
        MODULE-IDENTITY, NOTIFICATION-TYPE
Packit 022b05
            FROM SNMPv2-SMI
Packit 022b05
        InetAddressType, InetAddress, InetPortNumber
Packit 022b05
            FROM INET-ADDRESS-MIB
Packit 022b05
                 SnmpAdminString
Packit 022b05
        FROM SNMP-FRAMEWORK-MIB
Packit 022b05
        rmon
Packit 022b05
            FROM RMON-MIB
Packit 022b05
        RowStatus, TruthValue, DateAndTime, RowPointer
Packit 022b05
            FROM SNMPv2-TC;
Packit 022b05
Packit 022b05
    raqmonMIB MODULE-IDENTITY
Packit 022b05
        LAST-UPDATED "200610100000Z"     -- October 10, 2006
Packit 022b05
        ORGANIZATION
Packit 022b05
            "IETF RMON MIB Working Group"
Packit 022b05
        CONTACT-INFO
Packit 022b05
            "WG Charter:
Packit 022b05
             http://www.ietf.org/html.charters/rmonmib-charter.html
Packit 022b05
Packit 022b05
             Mailing lists:
Packit 022b05
                 General Discussion: rmonmib@ietf.org
Packit 022b05
                 To Subscribe: rmonmib-requests@ietf.org
Packit 022b05
                 In Body: subscribe your_email_address
Packit 022b05
Packit 022b05
             Chair: Andy Bierman
Packit 022b05
                    Email: ietf@andybierman.com
Packit 022b05
Packit 022b05
             Editor: Dan Romascanu
Packit 022b05
                     Avaya
Packit 022b05
                     Email:  dromasca@avaya.com"
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Real-Time Application QoS Monitoring MIB.
Packit 022b05
Packit 022b05
             Copyright (c) The Internet Society (2006).
Packit 022b05
             This version of this MIB module is part of
Packit 022b05
             RFC 4711; See the RFC itself for full legal notices."
Packit 022b05
        REVISION    "200610100000Z"
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Initial version, published as RFC 4711."
Packit 022b05
        ::= { rmon 31 }
Packit 022b05
-- This OID allocation conforms to [RFC3737]
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
--
Packit 022b05
-- Node definitions
Packit 022b05
--
Packit 022b05
    raqmonNotifications OBJECT IDENTIFIER ::= { raqmonMIB 0 }
Packit 022b05
Packit 022b05
    raqmonSessionAlarm NOTIFICATION-TYPE
Packit 022b05
        OBJECTS { raqmonParticipantAddr,
Packit 022b05
            raqmonParticipantName,
Packit 022b05
            raqmonParticipantPeerAddrType,
Packit 022b05
            raqmonParticipantPeerAddr,
Packit 022b05
            raqmonQoSEnd2EndNetDelay,
Packit 022b05
            raqmonQoSInterArrivalJitter,
Packit 022b05
            raqmonQosLostPackets,
Packit 022b05
            raqmonQosRcvdPackets }
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "A notification generated by an entry in the
Packit 022b05
             raqmonSessionExceptionTable."
Packit 022b05
        ::= { raqmonNotifications 1 }
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonMIBObjects OBJECT IDENTIFIER ::= { raqmonMIB 1 }
Packit 022b05
Packit 022b05
    raqmonSession OBJECT IDENTIFIER ::= { raqmonMIBObjects 1 }
Packit 022b05
Packit 022b05
    raqmonParticipantTable OBJECT-TYPE
Packit 022b05
        SYNTAX SEQUENCE OF RaqmonParticipantEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "This table contains information about participants in
Packit 022b05
             both active and closed (terminated) sessions."
Packit 022b05
        ::= { raqmonSession 1 }
Packit 022b05
Packit 022b05
    raqmonParticipantEntry OBJECT-TYPE
Packit 022b05
        SYNTAX RaqmonParticipantEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Each row contains information for a single session
Packit 022b05
             (application) run by one participant.
Packit 022b05
             Indexation by the start time of the session aims
Packit 022b05
             to ease sorting by management applications.  Agents MUST
Packit 022b05
             NOT report identical start times for any two sessions
Packit 022b05
             on the same host.
Packit 022b05
             Rows are removed for inactive sessions
Packit 022b05
             when implementation-specific age or space limits are
Packit 022b05
             reached."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        INDEX { raqmonParticipantStartDate, raqmonParticipantIndex }
Packit 022b05
        ::= { raqmonParticipantTable 1 }
Packit 022b05
Packit 022b05
    RaqmonParticipantEntry ::=
Packit 022b05
        SEQUENCE {
Packit 022b05
            raqmonParticipantStartDate     DateAndTime,
Packit 022b05
            raqmonParticipantIndex         Unsigned32,
Packit 022b05
            raqmonParticipantReportCaps    BITS,
Packit 022b05
            raqmonParticipantAddrType      InetAddressType,
Packit 022b05
            raqmonParticipantAddr          InetAddress,
Packit 022b05
            raqmonParticipantSendPort      InetPortNumber,
Packit 022b05
            raqmonParticipantRecvPort      InetPortNumber,
Packit 022b05
            raqmonParticipantSetupDelay    Integer32,
Packit 022b05
            raqmonParticipantName          SnmpAdminString,
Packit 022b05
            raqmonParticipantAppName       SnmpAdminString,
Packit 022b05
            raqmonParticipantQosCount      Gauge32,
Packit 022b05
            raqmonParticipantEndDate       DateAndTime,
Packit 022b05
            raqmonParticipantDestPayloadType  Integer32,
Packit 022b05
            raqmonParticipantSrcPayloadType   Integer32,
Packit 022b05
            raqmonParticipantActive        TruthValue,
Packit 022b05
            raqmonParticipantPeer          RowPointer,
Packit 022b05
            raqmonParticipantPeerAddrType  InetAddressType,
Packit 022b05
            raqmonParticipantPeerAddr      InetAddress,
Packit 022b05
            raqmonParticipantSrcL2Priority     Integer32,
Packit 022b05
            raqmonParticipantDestL2Priority    Integer32,
Packit 022b05
            raqmonParticipantSrcDSCP       Integer32,
Packit 022b05
            raqmonParticipantDestDSCP      Integer32,
Packit 022b05
            raqmonParticipantCpuMean       Integer32,
Packit 022b05
            raqmonParticipantCpuMin        Integer32,
Packit 022b05
            raqmonParticipantCpuMax        Integer32,
Packit 022b05
            raqmonParticipantMemoryMean    Integer32,
Packit 022b05
            raqmonParticipantMemoryMin     Integer32,
Packit 022b05
            raqmonParticipantMemoryMax     Integer32,
Packit 022b05
            raqmonParticipantNetRTTMean    Integer32,
Packit 022b05
            raqmonParticipantNetRTTMin     Integer32,
Packit 022b05
            raqmonParticipantNetRTTMax     Integer32,
Packit 022b05
            raqmonParticipantIAJitterMean  Integer32,
Packit 022b05
            raqmonParticipantIAJitterMin   Integer32,
Packit 022b05
            raqmonParticipantIAJitterMax   Integer32,
Packit 022b05
            raqmonParticipantIPDVMean      Integer32,
Packit 022b05
            raqmonParticipantIPDVMin       Integer32,
Packit 022b05
            raqmonParticipantIPDVMax       Integer32,
Packit 022b05
            raqmonParticipantNetOwdMean    Integer32,
Packit 022b05
            raqmonParticipantNetOwdMin     Integer32,
Packit 022b05
            raqmonParticipantNetOwdMax     Integer32,
Packit 022b05
            raqmonParticipantAppDelayMean  Integer32,
Packit 022b05
            raqmonParticipantAppDelayMin   Integer32,
Packit 022b05
            raqmonParticipantAppDelayMax   Integer32,
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            raqmonParticipantPacketsRcvd   Integer32,
Packit 022b05
            raqmonParticipantPacketsSent   Integer32,
Packit 022b05
            raqmonParticipantOctetsRcvd    Integer32,
Packit 022b05
            raqmonParticipantOctetsSent    Integer32,
Packit 022b05
            raqmonParticipantLostPackets   Integer32,
Packit 022b05
            raqmonParticipantLostPacketsFrct  Integer32,
Packit 022b05
            raqmonParticipantDiscards      Integer32,
Packit 022b05
            raqmonParticipantDiscardsFrct  Integer32
Packit 022b05
         }
Packit 022b05
Packit 022b05
    raqmonParticipantStartDate OBJECT-TYPE
Packit 022b05
        SYNTAX DateAndTime
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The date and time of this entry.
Packit 022b05
             It will be the date and time
Packit 022b05
             of the first report received."
Packit 022b05
        ::= { raqmonParticipantEntry 1 }
Packit 022b05
Packit 022b05
    raqmonParticipantIndex OBJECT-TYPE
Packit 022b05
        SYNTAX Unsigned32 (1..2147483647)
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The index of the conceptual row, which is for SNMP
Packit 022b05
             purposes only and has no relation to any protocol value.
Packit 022b05
Packit 022b05
             There is no requirement that these rows be created or
Packit 022b05
             maintained sequentially.  The index will be unique for a
Packit 022b05
             particular date and time."
Packit 022b05
        ::= { raqmonParticipantEntry 2 }
Packit 022b05
Packit 022b05
    raqmonParticipantReportCaps   OBJECT-TYPE
Packit 022b05
        SYNTAX      BITS {
Packit 022b05
            raqmonPartRepDsrcName(0),
Packit 022b05
            raqmonPartRepRecvName(1),
Packit 022b05
            raqmonPartRepDsrcPort(2),
Packit 022b05
            raqmonPartRepRecvPort(3),
Packit 022b05
            raqmonPartRepSetupTime(4),
Packit 022b05
            raqmonPartRepSetupDelay(5),
Packit 022b05
            raqmonPartRepSessionDuration(6),
Packit 022b05
            raqmonPartRepSetupStatus(7),
Packit 022b05
            raqmonPartRepRTEnd2EndNetDelay(8),
Packit 022b05
            raqmonPartRepOWEnd2EndNetDelay(9),
Packit 022b05
            raqmonPartApplicationDelay(10),
Packit 022b05
            raqmonPartRepIAJitter(11),
Packit 022b05
            raqmonPartRepIPDV(12),
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            raqmonPartRepRcvdPackets(13),
Packit 022b05
            raqmonPartRepRcvdOctets(14),
Packit 022b05
            raqmonPartRepSentPackets(15),
Packit 022b05
            raqmonPartRepSentOctets(16),
Packit 022b05
            raqmonPartRepCumPacketsLoss(17),
Packit 022b05
            raqmonPartRepFractionPacketsLoss(18),
Packit 022b05
            raqmonPartRepCumDiscards(19),
Packit 022b05
            raqmonPartRepFractionDiscards(20),
Packit 022b05
            raqmonPartRepSrcPayloadType(21),
Packit 022b05
            raqmonPartRepDestPayloadType(22),
Packit 022b05
            raqmonPartRepSrcLayer2Priority(23),
Packit 022b05
            raqmonPartRepSrcTosDscp(24),
Packit 022b05
            raqmonPartRepDestLayer2Priority(25),
Packit 022b05
            raqmonPartRepDestTosDscp(26),
Packit 022b05
            raqmonPartRepCPU(27),
Packit 022b05
            raqmonPartRepMemory(28),
Packit 022b05
            raqmonPartRepAppName(29)
Packit 022b05
            }
Packit 022b05
        MAX-ACCESS  read-only
Packit 022b05
        STATUS      current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The Report capabilities of the participant, as perceived
Packit 022b05
             by the Collector.
Packit 022b05
Packit 022b05
             If the participant can report the Data Source Name as
Packit 022b05
             defined in [RFC4710], Section 5.3, then the
Packit 022b05
             raqmonPartRepDsrcName bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Receiver Name as
Packit 022b05
             defined in [RFC4710], Section 5.4, then the
Packit 022b05
             raqmonPartRepRecvName bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Data Source Port as
Packit 022b05
             defined in [RFC4710], Section 5.5, then the
Packit 022b05
             raqmonPartRepDsrcPort bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Receiver Port as
Packit 022b05
             defined in [RFC4710], Section 5.6, then the
Packit 022b05
             raqmonPartRepRecvPort bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Session Setup Time as
Packit 022b05
             defined in [RFC4710], Section 5.7, then the
Packit 022b05
             raqmonPartRepSetupTime bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Session Setup Delay as
Packit 022b05
             defined in [RFC4710], Section 5.8, then the
Packit 022b05
             raqmonPartRepSetupDelay bit will be set.
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
             If the participant can report the Session Duration as
Packit 022b05
             defined in [RFC4710], Section 5.9, then the
Packit 022b05
             raqmonPartRepSessionDuration bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Setup Status as
Packit 022b05
             defined in [RFC4710], Section 5.10, then the
Packit 022b05
             raqmonPartRepSetupStatus bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Round-Trip End-to-end
Packit 022b05
             Network Delay as defined in [RFC4710], Section 5.11,
Packit 022b05
             then the raqmonPartRepRTEnd2EndNetDelay bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the One-way End-to-end
Packit 022b05
             Network Delay as defined in [RFC4710], Section 5.12,
Packit 022b05
             then the raqmonPartRepOWEnd2EndNetDelay bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Application Delay as
Packit 022b05
             defined in [RFC4710], Section 5.13, then the
Packit 022b05
             raqmonPartApplicationDelay bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Inter-Arrival Jitter
Packit 022b05
             as defined in [RFC4710], Section 5.14, then the
Packit 022b05
             raqmonPartRepIAJitter bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the IP Packet Delay
Packit 022b05
             Variation as defined in [RFC4710], Section 5.15, then
Packit 022b05
             the raqmonPartRepIPDV bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the number of application
Packit 022b05
             packets received as defined in [RFC4710], Section 5.16,
Packit 022b05
             then the raqmonPartRepRcvdPackets bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the number of application
Packit 022b05
             octets received as defined in [RFC4710], Section 5.17,
Packit 022b05
             then the raqmonPartRepRcvdOctets bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the number of application
Packit 022b05
             packets sent as defined in [RFC4710], Section 5.18, then
Packit 022b05
             the raqmonPartRepSentPackets bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the number of application
Packit 022b05
             octets sent as defined in [RFC4710], Section 5.19, then
Packit 022b05
             the raqmonPartRepSentOctets bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the number of cumulative
Packit 022b05
             packets lost as defined in [RFC4710], Section 5.20, then
Packit 022b05
             the raqmonPartRepCumPacketsLoss bit will be set.
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
             If the participant can report the fraction of packet
Packit 022b05
             loss as defined in [RFC4710], Section 5.21, then the
Packit 022b05
             raqmonPartRepFractionPacketsLoss bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the number of cumulative
Packit 022b05
             discards as defined in [RFC4710], Section 5.22, then the
Packit 022b05
             raqmonPartRepCumDiscards bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the fraction of discards
Packit 022b05
             as defined in [RFC4710], Section 5.23, then the
Packit 022b05
             raqmonPartRepFractionDiscards bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Source Payload Type as
Packit 022b05
             defined in [RFC4710], Section 5.24, then the
Packit 022b05
             raqmonPartRepSrcPayloadType bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Destination Payload
Packit 022b05
             Type as defined in [RFC4710], Section 5.25, then the
Packit 022b05
             raqmonPartRepDestPayloadType bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Source Layer 2
Packit 022b05
             Priority as defined in [RFC4710], Section 5.26, then the
Packit 022b05
             raqmonPartRepSrcLayer2Priority bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Source DSCP/ToS value
Packit 022b05
             as defined in [RFC4710], Section 5.27, then the
Packit 022b05
             raqmonPartRepSrcToSDscp bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Destination Layer 2
Packit 022b05
             Priority as defined in [RFC4710], Section 5.28, then the
Packit 022b05
             raqmonPartRepDestLayer2Priority bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Destination DSCP/ToS
Packit 022b05
             Value as defined in [RFC4710], Section 5.29, then the
Packit 022b05
             raqmonPartRepDestToSDscp bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the CPU utilization as
Packit 022b05
             defined in [RFC4710], Section 5.30, then the
Packit 022b05
             raqmonPartRepCPU bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the memory utilization as
Packit 022b05
             defined in [RFC4710], Section 5.31, then the
Packit 022b05
             raqmonPartRepMemory bit will be set.
Packit 022b05
Packit 022b05
             If the participant can report the Application Name as
Packit 022b05
             defined in [RFC4710], Section 5.32, then the
Packit 022b05
             raqmonPartRepAppName bit will be set.
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
             The capability of reporting of a specific metric does
Packit 022b05
             not mandate that the metric must be reported permanently
Packit 022b05
             by the data source to the respective collector.  Some
Packit 022b05
             data sources MAY be configured not to send a metric, or
Packit 022b05
             some metrics may not be relevant to the specific
Packit 022b05
             application."
Packit 022b05
        ::= { raqmonParticipantEntry 3 }
Packit 022b05
Packit 022b05
    raqmonParticipantAddrType OBJECT-TYPE
Packit 022b05
        SYNTAX InetAddressType
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The type of the Internet address of the participant for
Packit 022b05
             this session."
Packit 022b05
        ::= { raqmonParticipantEntry 4 }
Packit 022b05
Packit 022b05
   raqmonParticipantAddr OBJECT-TYPE
Packit 022b05
        SYNTAX InetAddress
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The Internet Address of the participant for this
Packit 022b05
             session.  Formatting of this object is determined
Packit 022b05
             by the value of raqmonParticipantAddrType."
Packit 022b05
        ::= { raqmonParticipantEntry 5 }
Packit 022b05
Packit 022b05
   raqmonParticipantSendPort OBJECT-TYPE
Packit 022b05
        SYNTAX InetPortNumber
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Port from which session data is sent.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value 0."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.5 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 6 }
Packit 022b05
Packit 022b05
    raqmonParticipantRecvPort OBJECT-TYPE
Packit 022b05
        SYNTAX InetPortNumber
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Port on which session data is received.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value 0."
Packit 022b05
        REFERENCE
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            "Section 5.6 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 7 }
Packit 022b05
Packit 022b05
    raqmonParticipantSetupDelay OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Session setup time.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.8 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 8 }
Packit 022b05
Packit 022b05
    raqmonParticipantName OBJECT-TYPE
Packit 022b05
        SYNTAX SnmpAdminString
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The data source name for the participant."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.3 of the [RFC4710]"
Packit 022b05
       ::= { raqmonParticipantEntry 9 }
Packit 022b05
Packit 022b05
    raqmonParticipantAppName OBJECT-TYPE
Packit 022b05
        SYNTAX SnmpAdminString
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "A string giving the name and possibly the version
Packit 022b05
             of the application generating the stream, e.g.,
Packit 022b05
             'videotool 1.2.'
Packit 022b05
Packit 022b05
             This information may be useful for debugging purposes
Packit 022b05
             and is similar to the Mailer or Mail-System-Version SMTP
Packit 022b05
             headers.  The tool value is expected to remain constant
Packit 022b05
             for the duration of the session."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.32 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 10 }
Packit 022b05
Packit 022b05
    raqmonParticipantQosCount OBJECT-TYPE
Packit 022b05
        SYNTAX Gauge32
Packit 022b05
        UNITS  "entries"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The current number of entries in the raqmonQosTable
Packit 022b05
             for this participant and session."
Packit 022b05
        ::= { raqmonParticipantEntry 11 }
Packit 022b05
Packit 022b05
    raqmonParticipantEndDate OBJECT-TYPE
Packit 022b05
        SYNTAX DateAndTime
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The date and time of the most recent report received."
Packit 022b05
        ::= { raqmonParticipantEntry 12 }
Packit 022b05
Packit 022b05
    raqmonParticipantDestPayloadType OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..127)
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Destination Payload Type.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "RFC 3551 and Section 5.25 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 13 }
Packit 022b05
Packit 022b05
    raqmonParticipantSrcPayloadType OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..127)
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Source Payload Type.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "RFC 3551 and Section 5.24 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 14 }
Packit 022b05
Packit 022b05
    raqmonParticipantActive OBJECT-TYPE
Packit 022b05
        SYNTAX TruthValue
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Value 'true' indicates that the session
Packit 022b05
             for this participant is active (open).
Packit 022b05
             Value 'false' indicates that the session
Packit 022b05
             is closed (terminated)."
Packit 022b05
        ::= { raqmonParticipantEntry 15 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonParticipantPeer OBJECT-TYPE
Packit 022b05
        SYNTAX RowPointer
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The pointer to the corresponding entry in this table for
Packit 022b05
             the other peer participant.  If there is no such entry
Packit 022b05
             in the participant table of the collector represented by
Packit 022b05
             this SNMP agent, then the value will be { 0 0 }.
Packit 022b05
            "
Packit 022b05
        ::= { raqmonParticipantEntry 16 }
Packit 022b05
Packit 022b05
    raqmonParticipantPeerAddrType OBJECT-TYPE
Packit 022b05
        SYNTAX InetAddressType
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The type of the Internet address of the peer participant
Packit 022b05
             for this session."
Packit 022b05
        ::= { raqmonParticipantEntry 17 }
Packit 022b05
Packit 022b05
   raqmonParticipantPeerAddr OBJECT-TYPE
Packit 022b05
        SYNTAX InetAddress
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The Internet Address of the peer participant for this
Packit 022b05
             session.  Formatting of this object is determined by
Packit 022b05
             the value of raqmonParticipantPeerAddrType."
Packit 022b05
        ::= { raqmonParticipantEntry 18 }
Packit 022b05
Packit 022b05
   raqmonParticipantSrcL2Priority OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..7)
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Source Layer 2 Priority.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.26 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 19 }
Packit 022b05
Packit 022b05
    raqmonParticipantDestL2Priority OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..7)
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            "Destination Layer 2 Priority.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.28 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 20 }
Packit 022b05
Packit 022b05
    raqmonParticipantSrcDSCP OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..63)
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Source Layer 3 DSCP value.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.27 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 21 }
Packit 022b05
Packit 022b05
    raqmonParticipantDestDSCP OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32  (-1|0..63)
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Destination Layer 3 DSCP value."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.29 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 22 }
Packit 022b05
Packit 022b05
    raqmonParticipantCpuMean OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Mean CPU utilization.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.30 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 23 }
Packit 022b05
Packit 022b05
    raqmonParticipantCpuMin OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            "Minimum CPU utilization.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.30 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 24 }
Packit 022b05
Packit 022b05
    raqmonParticipantCpuMax OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maximum CPU utilization.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.30 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 25 }
Packit 022b05
Packit 022b05
    raqmonParticipantMemoryMean OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Mean memory utilization.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.31 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 26 }
Packit 022b05
Packit 022b05
    raqmonParticipantMemoryMin OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Minimum memory utilization.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.31 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 27 }
Packit 022b05
Packit 022b05
    raqmonParticipantMemoryMax OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maximum memory utilization.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.31 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 28 }
Packit 022b05
Packit 022b05
    raqmonParticipantNetRTTMean OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Mean round-trip end-to-end network
Packit 022b05
             delay over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.11 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 29 }
Packit 022b05
Packit 022b05
    raqmonParticipantNetRTTMin OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Minimum round-trip end-to-end network delay
Packit 022b05
             over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.11 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 30 }
Packit 022b05
Packit 022b05
    raqmonParticipantNetRTTMax OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maximum round-trip end-to-end network delay
Packit 022b05
             over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.11 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 31 }
Packit 022b05
Packit 022b05
    raqmonParticipantIAJitterMean OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Mean inter-arrival jitter over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.14 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 32 }
Packit 022b05
Packit 022b05
    raqmonParticipantIAJitterMin OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Minimum inter-arrival jitter over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.14 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 33 }
Packit 022b05
Packit 022b05
    raqmonParticipantIAJitterMax OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maximum inter-arrival jitter over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.14 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 34 }
Packit 022b05
Packit 022b05
    raqmonParticipantIPDVMean OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Mean IP packet delay variation over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.15 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 35 }
Packit 022b05
Packit 022b05
    raqmonParticipantIPDVMin OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Minimum IP packet delay variation over the entire
Packit 022b05
             session.  If the value was not reported to the
Packit 022b05
             collector, this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.15 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 36 }
Packit 022b05
Packit 022b05
    raqmonParticipantIPDVMax OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maximum IP packet delay variation over the entire
Packit 022b05
             session.  If the value was not reported to the
Packit 022b05
             collector, this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.15 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 37 }
Packit 022b05
Packit 022b05
    raqmonParticipantNetOwdMean OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Mean Network one-way delay over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.12 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 38 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonParticipantNetOwdMin OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Minimum Network one-way delay over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.12 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 39 }
Packit 022b05
Packit 022b05
    raqmonParticipantNetOwdMax OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maximum Network one-way delay over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.1 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 40 }
Packit 022b05
Packit 022b05
    raqmonParticipantAppDelayMean OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Mean application delay over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.13 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 41 }
Packit 022b05
Packit 022b05
    raqmonParticipantAppDelayMin OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Minimum application delay over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.13 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 42 }
Packit 022b05
Packit 022b05
    raqmonParticipantAppDelayMax OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maximum application delay over the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.13 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 43 }
Packit 022b05
Packit 022b05
    raqmonParticipantPacketsRcvd OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "packets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of packets received for the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.16 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 44 }
Packit 022b05
Packit 022b05
    raqmonParticipantPacketsSent OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "packets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of packets sent for the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.17 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 45 }
Packit 022b05
Packit 022b05
    raqmonParticipantOctetsRcvd OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "Octets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of octets received for the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.18 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 46 }
Packit 022b05
Packit 022b05
    raqmonParticipantOctetsSent OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "Octets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of octets sent for the entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.19 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 47 }
Packit 022b05
Packit 022b05
    raqmonParticipantLostPackets OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "packets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of packets lost by this receiver for the entire
Packit 022b05
             session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.20 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 48 }
Packit 022b05
Packit 022b05
    raqmonParticipantLostPacketsFrct OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Fraction of lost packets out of total packets received.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.21 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 49 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonParticipantDiscards OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..2147483647)
Packit 022b05
        UNITS  "packets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of packets discarded by this receiver for the
Packit 022b05
             entire session.
Packit 022b05
             If the value was not reported to the collector,
Packit 022b05
             this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.22 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 50 }
Packit 022b05
Packit 022b05
    raqmonParticipantDiscardsFrct OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1|0..100)
Packit 022b05
        UNITS  "percents"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Fraction of discarded packets out of total packets
Packit 022b05
             received.  If the value was not reported to the
Packit 022b05
             collector, this object will have the value -1."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.23 of the [RFC4710]"
Packit 022b05
        ::= { raqmonParticipantEntry 51 }
Packit 022b05
Packit 022b05
Packit 022b05
 raqmonQosTable OBJECT-TYPE
Packit 022b05
        SYNTAX SEQUENCE OF RaqmonQosEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Table of historical information about quality-of-service
Packit 022b05
             data during sessions."
Packit 022b05
        ::= { raqmonSession 2 }
Packit 022b05
Packit 022b05
    raqmonQosEntry OBJECT-TYPE
Packit 022b05
        SYNTAX RaqmonQosEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Each entry contains information from a single RAQMON
Packit 022b05
             packet, related to a single session
Packit 022b05
             (application) run by one participant.
Packit 022b05
             Indexation by the start time of the session aims
Packit 022b05
             to ease sorting by management applications.  Agents MUST
Packit 022b05
             NOT report identical start times for any two sessions
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
             on the same host.
Packit 022b05
             Rows are removed for inactive sessions when
Packit 022b05
             implementation-specific time or space limits are
Packit 022b05
             reached."
Packit 022b05
        INDEX { raqmonParticipantStartDate,
Packit 022b05
                raqmonParticipantIndex,
Packit 022b05
                raqmonQosTime }
Packit 022b05
        ::= { raqmonQosTable 1 }
Packit 022b05
Packit 022b05
    RaqmonQosEntry ::=
Packit 022b05
        SEQUENCE {
Packit 022b05
            raqmonQosTime          Unsigned32,
Packit 022b05
            raqmonQoSEnd2EndNetDelay           Integer32,
Packit 022b05
            raqmonQoSInterArrivalJitter        Integer32,
Packit 022b05
            raqmonQosRcvdPackets   Integer32,
Packit 022b05
            raqmonQosRcvdOctets    Integer32,
Packit 022b05
            raqmonQosSentPackets   Integer32,
Packit 022b05
            raqmonQosSentOctets    Integer32,
Packit 022b05
            raqmonQosLostPackets   Integer32,
Packit 022b05
            raqmonQosSessionStatus SnmpAdminString
Packit 022b05
            }
Packit 022b05
Packit 022b05
    raqmonQosTime OBJECT-TYPE
Packit 022b05
        SYNTAX Unsigned32 (0..2147483647)
Packit 022b05
        UNITS  "seconds"
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Time of this entry measured from the start of the
Packit 022b05
             corresponding participant session."
Packit 022b05
        ::= { raqmonQosEntry 1 }
Packit 022b05
Packit 022b05
    raqmonQoSEnd2EndNetDelay OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1 | 0..2147483647)
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The round-trip time.
Packit 022b05
             Will contain the previous value if there was no report
Packit 022b05
             for this time, or -1 if the value has never
Packit 022b05
             been reported."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.11 of the [RFC4710]"
Packit 022b05
        ::= { raqmonQosEntry 2 }
Packit 022b05
Packit 022b05
    raqmonQoSInterArrivalJitter OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1 | 0..2147483647)
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "An estimate of delay variation as observed by this
Packit 022b05
             receiver.  Will contain the previous value if there
Packit 022b05
             was no report for this time, or -1 if the value
Packit 022b05
             has never been reported."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.14 of the [RFC4710]"
Packit 022b05
        ::= { raqmonQosEntry 3 }
Packit 022b05
Packit 022b05
    raqmonQosRcvdPackets OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1 | 0..2147483647)
Packit 022b05
        UNITS  "packets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of packets received by this receiver since the
Packit 022b05
             previous entry.  Will contain the previous value if
Packit 022b05
             there was no report for this time, or -1 if the value
Packit 022b05
             has never been reported."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.16 of the [RFC4710]"
Packit 022b05
    ::= { raqmonQosEntry 4 }
Packit 022b05
Packit 022b05
    raqmonQosRcvdOctets OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1 | 0..2147483647)
Packit 022b05
        UNITS  "octets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of octets received by this receiver since the
Packit 022b05
             previous report.  Will contain the previous value if
Packit 022b05
             there was no report for this time, or -1 if the value
Packit 022b05
             has never been reported."
Packit 022b05
            REFERENCE
Packit 022b05
                  "Section 5.18 of the [RFC4710]"
Packit 022b05
        ::= { raqmonQosEntry 5 }
Packit 022b05
Packit 022b05
    raqmonQosSentPackets OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1 | 0..2147483647)
Packit 022b05
        UNITS  "packets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of packets sent since the previous report.
Packit 022b05
             Will contain the previous value if there
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
             was no report for this time, or -1 if the value
Packit 022b05
             has never been reported."
Packit 022b05
       REFERENCE
Packit 022b05
           "Section 5.17 of the [RFC4710]"
Packit 022b05
    ::= { raqmonQosEntry 6 }
Packit 022b05
Packit 022b05
    raqmonQosSentOctets OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1 | 0..2147483647)
Packit 022b05
        UNITS  "octets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of octets sent since the previous report.
Packit 022b05
             Will contain the previous value if there
Packit 022b05
             was no report for this time, or -1 if the value
Packit 022b05
             has never been reported."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.19 of the [RFC4710]"
Packit 022b05
        ::= { raqmonQosEntry 7 }
Packit 022b05
Packit 022b05
    raqmonQosLostPackets OBJECT-TYPE
Packit 022b05
        SYNTAX Integer32 (-1 | 0..2147483647)
Packit 022b05
        UNITS  "packets"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "A count of packets lost as observed by this receiver
Packit 022b05
             since the previous report.  Will contain the previous
Packit 022b05
             value if there was no report for this time, or -1 if
Packit 022b05
             the value has never been reported."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.20 of the [RFC4710]"
Packit 022b05
    ::= { raqmonQosEntry 8 }
Packit 022b05
Packit 022b05
    raqmonQosSessionStatus OBJECT-TYPE
Packit 022b05
        SYNTAX SnmpAdminString
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The session status.  Will contain the previous value
Packit 022b05
             if there was no report for this time or the zero-length
Packit 022b05
             string if no value was ever reported."
Packit 022b05
        REFERENCE
Packit 022b05
            "Section 5.10 of the [RFC4710]"
Packit 022b05
        ::= { raqmonQosEntry 9 }
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonParticipantAddrTable OBJECT-TYPE
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        SYNTAX SEQUENCE OF RaqmonParticipantAddrEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Maps raqmonParticipantAddr to the index of the
Packit 022b05
             raqmonParticipantTable.  This table allows
Packit 022b05
             management applications to find entries
Packit 022b05
             sorted by raqmonParticipantAddr rather than
Packit 022b05
             raqmonParticipantStartDate."
Packit 022b05
        ::= { raqmonSession 3 }
Packit 022b05
Packit 022b05
    raqmonParticipantAddrEntry OBJECT-TYPE
Packit 022b05
        SYNTAX RaqmonParticipantAddrEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Each entry corresponds to exactly one entry in the
Packit 022b05
             raqmonParticipantEntry: the entry containing the
Packit 022b05
             index pair raqmonParticipantStartDate,
Packit 022b05
             raqmonParticipantIndex.
Packit 022b05
Packit 022b05
             Note that there is no concern about the indexation of
Packit 022b05
             this table exceeding the limits defined by RFC 2578,
Packit 022b05
             Section 3.5.  According to [RFC4710], Section
Packit 022b05
             5.1, only IPv4 and IPv6 addresses can be reported as
Packit 022b05
             participant addresses."
Packit 022b05
        INDEX { raqmonParticipantAddrType,
Packit 022b05
                raqmonParticipantAddr,
Packit 022b05
                raqmonParticipantStartDate,
Packit 022b05
                raqmonParticipantIndex }
Packit 022b05
        ::= { raqmonParticipantAddrTable 1 }
Packit 022b05
Packit 022b05
    RaqmonParticipantAddrEntry ::=
Packit 022b05
        SEQUENCE { raqmonParticipantAddrEndDate DateAndTime }
Packit 022b05
Packit 022b05
    raqmonParticipantAddrEndDate OBJECT-TYPE
Packit 022b05
        SYNTAX DateAndTime
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The value of raqmonParticipantEndDate for the
Packit 022b05
             corresponding raqmonParticipantEntry."
Packit 022b05
        ::= { raqmonParticipantAddrEntry 1 }
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonException OBJECT IDENTIFIER ::= { raqmonMIBObjects 2 }
Packit 022b05
Packit 022b05
    raqmonSessionExceptionTable OBJECT-TYPE
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        SYNTAX SEQUENCE OF RaqmonSessionExceptionEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "This table defines thresholds for the management
Packit 022b05
             station to get notifications about sessions that
Packit 022b05
             encountered poor quality of service.
Packit 022b05
Packit 022b05
             The information in this table MUST be persistent
Packit 022b05
             across agent reboots."
Packit 022b05
        ::= { raqmonException 2 }
Packit 022b05
Packit 022b05
    raqmonSessionExceptionEntry OBJECT-TYPE
Packit 022b05
        SYNTAX RaqmonSessionExceptionEntry
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "A conceptual row in the raqmonSessionExceptionTable."
Packit 022b05
        INDEX { raqmonSessionExceptionIndex }
Packit 022b05
        ::= { raqmonSessionExceptionTable 1 }
Packit 022b05
Packit 022b05
    RaqmonSessionExceptionEntry ::=
Packit 022b05
        SEQUENCE {
Packit 022b05
            raqmonSessionExceptionIndex                Unsigned32,
Packit 022b05
            raqmonSessionExceptionIAJitterThreshold    Unsigned32,
Packit 022b05
            raqmonSessionExceptionNetRTTThreshold      Unsigned32,
Packit 022b05
            raqmonSessionExceptionLostPacketsThreshold Unsigned32,
Packit 022b05
            raqmonSessionExceptionRowStatus            RowStatus
Packit 022b05
            }
Packit 022b05
Packit 022b05
    raqmonSessionExceptionIndex OBJECT-TYPE
Packit 022b05
        SYNTAX Unsigned32 (1..65535)
Packit 022b05
        MAX-ACCESS not-accessible
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "An index that uniquely identifies an
Packit 022b05
             entry in the raqmonSessionExceptionTable.
Packit 022b05
             Management applications can determine unused indices
Packit 022b05
             by performing GetNext or GetBulk operations on the
Packit 022b05
             Table."
Packit 022b05
        ::= { raqmonSessionExceptionEntry 2 }
Packit 022b05
Packit 022b05
    raqmonSessionExceptionIAJitterThreshold OBJECT-TYPE
Packit 022b05
        SYNTAX Unsigned32
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-create
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            "Threshold for jitter.
Packit 022b05
             The value during a session must be greater than or
Packit 022b05
             equal to this value for an exception to be created."
Packit 022b05
        ::= { raqmonSessionExceptionEntry 3 }
Packit 022b05
Packit 022b05
    raqmonSessionExceptionNetRTTThreshold OBJECT-TYPE
Packit 022b05
        SYNTAX Unsigned32
Packit 022b05
        UNITS  "milliseconds"
Packit 022b05
        MAX-ACCESS read-create
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Threshold for round-trip time.
Packit 022b05
             The value during a session must be greater than or
Packit 022b05
             equal to this value for an exception to be created."
Packit 022b05
        ::= { raqmonSessionExceptionEntry 4 }
Packit 022b05
Packit 022b05
    raqmonSessionExceptionLostPacketsThreshold OBJECT-TYPE
Packit 022b05
        SYNTAX Unsigned32 (0..1000)
Packit 022b05
        UNITS  "tenth of a percent"
Packit 022b05
        MAX-ACCESS read-create
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Threshold for lost packets in units of tenths
Packit 022b05
             of a percent.  The value during a session must
Packit 022b05
             be greater than or equal to this value for an
Packit 022b05
             exception to be created."
Packit 022b05
        ::= { raqmonSessionExceptionEntry 5 }
Packit 022b05
Packit 022b05
    raqmonSessionExceptionRowStatus OBJECT-TYPE
Packit 022b05
        SYNTAX RowStatus
Packit 022b05
        MAX-ACCESS read-create
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "This object has a value of 'active' when
Packit 022b05
             exceptions are being monitored by the system.
Packit 022b05
             A newly-created conceptual row must have all
Packit 022b05
             the read-create objects initialized before
Packit 022b05
             becoming 'active'.  A conceptual row that is in
Packit 022b05
             the 'notReady' or 'notInService' state MAY be
Packit 022b05
             removed after 5 minutes.  No writeable objects
Packit 022b05
             can be changed while the row is active."
Packit 022b05
        ::= { raqmonSessionExceptionEntry 7 }
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonConfig OBJECT IDENTIFIER ::= { raqmonMIBObjects 3 }
Packit 022b05
Packit 022b05
    raqmonConfigPort OBJECT-TYPE
Packit 022b05
        SYNTAX InetPortNumber
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        MAX-ACCESS read-write
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The UDP port to listen on for RAQMON reports,
Packit 022b05
             running on transport protocols other than SNMP.
Packit 022b05
             If the RAQMON PDU transport protocol is SNMP,
Packit 022b05
             a write operation on this object has no effect, as
Packit 022b05
             the standard port 162 is always used.
Packit 022b05
             The value of this object MUST be persistent across
Packit 022b05
             agent reboots."
Packit 022b05
        ::= { raqmonConfig 1 }
Packit 022b05
Packit 022b05
       raqmonConfigPduTransport OBJECT-TYPE
Packit 022b05
         SYNTAX BITS
Packit 022b05
            {
Packit 022b05
                other(0),
Packit 022b05
                tcp(1),
Packit 022b05
                snmp(2)
Packit 022b05
            }
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The PDU transport(s) used by this collector.
Packit 022b05
             If other(0) is set, the collector supports a
Packit 022b05
             transport other than SNMP or TCP.
Packit 022b05
             If tcp(1) is set, the collector supports TCP as a
Packit 022b05
             transport protocol.
Packit 022b05
             If snmp(2) is set, the collector supports SNMP as a
Packit 022b05
             transport protocol."
Packit 022b05
        ::= { raqmonConfig 2 }
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonConfigRaqmonPdus OBJECT-TYPE
Packit 022b05
        SYNTAX Counter32
Packit 022b05
        UNITS  "PDUs"
Packit 022b05
        MAX-ACCESS read-only
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Count of RAQMON PDUs received by the Collector."
Packit 022b05
        ::= { raqmonConfig 3 }
Packit 022b05
Packit 022b05
    raqmonConfigRDSTimeout OBJECT-TYPE
Packit 022b05
        SYNTAX Unsigned32
Packit 022b05
        MAX-ACCESS read-write
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "The number of seconds since the reception of the
Packit 022b05
             last RAQMON PDU from a RDS after which a session
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
             between the respective RDS and the collector will be
Packit 022b05
             considered terminated.
Packit 022b05
             The value of this object MUST be persistent across
Packit 022b05
             agent reboots."
Packit 022b05
        ::= { raqmonConfig 4 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonConformance OBJECT IDENTIFIER ::= { raqmonMIB 2 }
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonCompliances OBJECT IDENTIFIER ::= { raqmonConformance 1 }
Packit 022b05
    raqmonGroups OBJECT IDENTIFIER ::= { raqmonConformance 2 }
Packit 022b05
Packit 022b05
    raqmonCompliance MODULE-COMPLIANCE
Packit 022b05
        STATUS  current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Describes the requirements for conformance to the
Packit 022b05
             RAQMON MIB."
Packit 022b05
        MODULE  -- this module
Packit 022b05
        MANDATORY-GROUPS { raqmonCollectorGroup,
Packit 022b05
                           raqmonCollectorNotificationsGroup
Packit 022b05
                         }
Packit 022b05
Packit 022b05
        OBJECT raqmonParticipantAddrType
Packit 022b05
        SYNTAX  InetAddressType { ipv4(1), ipv6(2) }
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Only IPv4 and IPv6 addresses need to be supported."
Packit 022b05
Packit 022b05
        OBJECT raqmonParticipantAddr
Packit 022b05
        SYNTAX  InetAddress (SIZE(4|16))
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Only IPv4 and IPv6 addresses need to be supported."
Packit 022b05
Packit 022b05
        OBJECT raqmonParticipantPeerAddrType
Packit 022b05
        SYNTAX  InetAddressType { ipv4(1), ipv6(2) }
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Only IPv4 and IPv6 addresses need to be supported."
Packit 022b05
Packit 022b05
        OBJECT raqmonParticipantPeerAddr
Packit 022b05
        SYNTAX  InetAddress (SIZE(4|16))
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Only IPv4 and IPv6 addresses need to be supported."
Packit 022b05
Packit 022b05
           ::= { raqmonCompliances 1 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    raqmonCollectorGroup OBJECT-GROUP
Packit 022b05
        OBJECTS {
Packit 022b05
            raqmonParticipantReportCaps,
Packit 022b05
            raqmonParticipantAddrType,
Packit 022b05
            raqmonParticipantAddr,
Packit 022b05
            raqmonParticipantSendPort,
Packit 022b05
            raqmonParticipantRecvPort,
Packit 022b05
            raqmonParticipantSetupDelay,
Packit 022b05
            raqmonParticipantName,
Packit 022b05
            raqmonParticipantAppName,
Packit 022b05
            raqmonParticipantQosCount,
Packit 022b05
            raqmonParticipantEndDate,
Packit 022b05
            raqmonParticipantDestPayloadType,
Packit 022b05
            raqmonParticipantSrcPayloadType,
Packit 022b05
            raqmonParticipantActive,
Packit 022b05
            raqmonParticipantPeer,
Packit 022b05
            raqmonParticipantPeerAddrType,
Packit 022b05
            raqmonParticipantPeerAddr,
Packit 022b05
            raqmonParticipantSrcL2Priority,
Packit 022b05
            raqmonParticipantDestL2Priority,
Packit 022b05
            raqmonParticipantSrcDSCP,
Packit 022b05
            raqmonParticipantDestDSCP,
Packit 022b05
            raqmonParticipantCpuMean,
Packit 022b05
            raqmonParticipantCpuMin,
Packit 022b05
            raqmonParticipantCpuMax,
Packit 022b05
            raqmonParticipantMemoryMean,
Packit 022b05
            raqmonParticipantMemoryMin,
Packit 022b05
            raqmonParticipantMemoryMax,
Packit 022b05
            raqmonParticipantNetRTTMean,
Packit 022b05
            raqmonParticipantNetRTTMin,
Packit 022b05
            raqmonParticipantNetRTTMax,
Packit 022b05
            raqmonParticipantIAJitterMean,
Packit 022b05
            raqmonParticipantIAJitterMin,
Packit 022b05
            raqmonParticipantIAJitterMax,
Packit 022b05
            raqmonParticipantIPDVMean,
Packit 022b05
            raqmonParticipantIPDVMin,
Packit 022b05
            raqmonParticipantIPDVMax,
Packit 022b05
            raqmonParticipantNetOwdMean,
Packit 022b05
            raqmonParticipantNetOwdMin,
Packit 022b05
            raqmonParticipantNetOwdMax,
Packit 022b05
            raqmonParticipantAppDelayMean,
Packit 022b05
            raqmonParticipantAppDelayMin,
Packit 022b05
            raqmonParticipantAppDelayMax,
Packit 022b05
            raqmonParticipantPacketsRcvd,
Packit 022b05
            raqmonParticipantPacketsSent,
Packit 022b05
            raqmonParticipantOctetsRcvd,
Packit 022b05
            raqmonParticipantOctetsSent,
Packit 022b05
            raqmonParticipantLostPackets,
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            raqmonParticipantLostPacketsFrct,
Packit 022b05
            raqmonParticipantDiscards,
Packit 022b05
            raqmonParticipantDiscardsFrct,
Packit 022b05
            raqmonQoSEnd2EndNetDelay,
Packit 022b05
            raqmonQoSInterArrivalJitter,
Packit 022b05
            raqmonQosRcvdPackets,
Packit 022b05
            raqmonQosRcvdOctets,
Packit 022b05
            raqmonQosSentPackets,
Packit 022b05
            raqmonQosSentOctets,
Packit 022b05
            raqmonQosLostPackets,
Packit 022b05
            raqmonQosSessionStatus,
Packit 022b05
            raqmonParticipantAddrEndDate,
Packit 022b05
            raqmonConfigPort,
Packit 022b05
            raqmonSessionExceptionIAJitterThreshold,
Packit 022b05
            raqmonSessionExceptionNetRTTThreshold,
Packit 022b05
            raqmonSessionExceptionLostPacketsThreshold,
Packit 022b05
            raqmonSessionExceptionRowStatus,
Packit 022b05
            raqmonConfigPduTransport,
Packit 022b05
            raqmonConfigRaqmonPdus,
Packit 022b05
            raqmonConfigRDSTimeout}
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Objects used in RAQMON by a collector."
Packit 022b05
Packit 022b05
Packit 022b05
        ::= { raqmonGroups 1 }
Packit 022b05
Packit 022b05
    raqmonCollectorNotificationsGroup NOTIFICATION-GROUP
Packit 022b05
        NOTIFICATIONS { raqmonSessionAlarm }
Packit 022b05
        STATUS current
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Notifications emitted by a RAQMON collector."
Packit 022b05
        ::= { raqmonGroups 2 }
Packit 022b05
Packit 022b05
END