Observium_CE/mibs/nortel/BAY-STACK-STATS-MIB

270 lines
8.2 KiB
Plaintext

BAY-STACK-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, Counter64, Integer32
FROM SNMPv2-SMI
InterfaceIndex
FROM IF-MIB
bayStackMibs
FROM SYNOPTICS-ROOT-MIB;
bayStackStatsMib MODULE-IDENTITY
LAST-UPDATED "201505110000Z"
ORGANIZATION "Avaya Networks"
CONTACT-INFO "Avaya Networks"
DESCRIPTION
"Avaya Networks Statistics MIB
Copyright 2005-2014 Avaya Networks
All rights reserved.
This Avaya Networks SNMP Management Information Base
Specification embodies Avaya Networks' confidential and
proprietary intellectual property. Avaya Networks retains
all title and ownership in the Specification, including any
revisions.
This Specification is supplied 'AS IS,' and Avaya Networks
makes no warranty, either express or implied, as to the use,
operation, condition, or performance of the Specification."
REVISION "201505110000Z" -- 11 May 2015
DESCRIPTION "v6: Added bayStackStatsCoSQueueClear in bayStackStatsCoSQueueTable"
REVISION "201412030000Z" -- 03 December 2014
DESCRIPTION "v5: Modify bayStackStatsCoSQueueTable"
REVISION "201410150000Z" -- 15 October 2014
DESCRIPTION "v4: Added bayStackStatsCoSQueueTable"
REVISION "201209120000Z" -- 12 September 2012
DESCRIPTION "v3: Added counters in support of PFC."
REVISION "200703090000Z" -- 09 March 2007
DESCRIPTION "v2: Added bayStackStatsUnitTable."
REVISION "200508120000Z" -- 12 August 2005
DESCRIPTION "v1: Initial version."
::= { bayStackMibs 12 }
bayStackStatsNotifications OBJECT IDENTIFIER ::= { bayStackStatsMib 0 }
bayStackStatsObjects OBJECT IDENTIFIER ::= { bayStackStatsMib 1 }
-- -------------------------------------------------------------
-- Textual Conventions
-- -------------------------------------------------------------
-- -------------------------------------------------------------
-- Baystack Interface Stats Table
-- -------------------------------------------------------------
bayStackStatsIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF BayStackStatsIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of per-interface statistics counters."
::= { bayStackStatsObjects 1 }
bayStackStatsIfEntry OBJECT-TYPE
SYNTAX BayStackStatsIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { bayStackStatsIfIndex }
::= { bayStackStatsIfTable 1 }
BayStackStatsIfEntry ::=
SEQUENCE {
bayStackStatsIfIndex InterfaceIndex,
bayStackStatsIfNoResourcesPktsDropped Counter64,
bayStackStatsIfInPfcFrames Counter64,
bayStackStatsIfOutPfcFrames Counter64
}
bayStackStatsIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "ifIndex value of the interface."
::= { bayStackStatsIfEntry 1 }
bayStackStatsIfNoResourcesPktsDropped OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets dropped due to a lack of resources."
::= { bayStackStatsIfEntry 2 }
bayStackStatsIfInPfcFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of MAC Control frames received on this
interface with an opcode indicating the PFC
operation."
::= { bayStackStatsIfEntry 3 }
bayStackStatsIfOutPfcFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of MAC Control frames transmitted on this
interface with an opcode indicating the PFC
operation."
::= { bayStackStatsIfEntry 4 }
-- -------------------------------------------------------------
-- Baystack Unit Stats Table
-- -------------------------------------------------------------
bayStackStatsUnitTable OBJECT-TYPE
SYNTAX SEQUENCE OF BayStackStatsUnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of per-unit statistics counters. This table only
contains entries in a stack. On a standalone unit, this
table will be empty."
::= { bayStackStatsObjects 2 }
bayStackStatsUnitEntry OBJECT-TYPE
SYNTAX BayStackStatsUnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { bayStackStatsUnitIndex }
::= { bayStackStatsUnitTable 1 }
BayStackStatsUnitEntry ::=
SEQUENCE {
bayStackStatsUnitIndex Integer32,
bayStackStatsUnitNoResourcesPktsDropped Counter64
}
bayStackStatsUnitIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unit number."
::= { bayStackStatsUnitEntry 1 }
bayStackStatsUnitNoResourcesPktsDropped OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets dropped on stack up/down ports on
this unit due to a lack of resources."
::= { bayStackStatsUnitEntry 2 }
-- -------------------------------------------------------------
-- Baystack CoS Queue Stats Table
-- -------------------------------------------------------------
bayStackStatsCoSQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF BayStackStatsCoSQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of per-interface per-CoS queue per-type statistics counters."
::= { bayStackStatsObjects 3 }
bayStackStatsCoSQueueEntry OBJECT-TYPE
SYNTAX BayStackStatsCoSQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { bayStackStatsCoSQueueIfIndex,
bayStackStatsCoSQueueQueue }
::= { bayStackStatsCoSQueueTable 1 }
BayStackStatsCoSQueueEntry ::=
SEQUENCE {
bayStackStatsCoSQueueIfIndex InterfaceIndex,
bayStackStatsCoSQueueQueue Integer32,
bayStackStatsCoSQueueOutPackets Counter64,
bayStackStatsCoSQueueOutBytes Counter64,
bayStackStatsCoSQueueDropPackets Counter64,
bayStackStatsCoSQueueDropBytes Counter64,
bayStackStatsCoSQueueClear INTEGER
}
bayStackStatsCoSQueueIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "ifIndex value of the interface."
::= { bayStackStatsCoSQueueEntry 1 }
bayStackStatsCoSQueueQueue OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The specific queue within the QoS queue set. Queues not valid
in the current queue set will be rejected."
::= { bayStackStatsCoSQueueEntry 2 }
bayStackStatsCoSQueueOutPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted packets from an
interface and queue."
::= { bayStackStatsCoSQueueEntry 3 }
bayStackStatsCoSQueueOutBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted bytes from an
interface and queue."
::= { bayStackStatsCoSQueueEntry 4 }
bayStackStatsCoSQueueDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of dropped packets from an
interface and queue."
::= { bayStackStatsCoSQueueEntry 5 }
bayStackStatsCoSQueueDropBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of dropped bytes from an
interface and queue."
::= { bayStackStatsCoSQueueEntry 6 }
bayStackStatsCoSQueueClear OBJECT-TYPE
SYNTAX INTEGER {
none(1),
clear(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to clear all queue counters on an interface and queue.
Value 'clear(2)' should be used. The value 'none(1)' is only
for retrieve and it does nothing when set."
::= { bayStackStatsCoSQueueEntry 7 }
END