summaryrefslogtreecommitdiff
path: root/MIBS/extreme/BROCADE-INTERFACE-STATS-MIB
blob: 48d50c55e67c26e2bff5e99c84b4baf63b355d98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
-- MIB File: BROCADE-INTERFACE-STATS-MIB.mib
-- *********************************************************************
-- BROCADE-INTERFACE-STATS-MIB.mib: Extreme Interface Stats MIB
--
-- Copyright (c) 2018 Extreme Networks, Inc.
-- All rights reserved.
--
-- *********************************************************************
BROCADE-INTERFACE-STATS-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE,Integer32, Unsigned32, Gauge32, Counter64
        FROM SNMPv2-SMI
    DateAndTime
        FROM SNMPv2-TC
    CounterBasedGauge64
        FROM HCNUM-TC
    ifIndex
        FROM IF-MIB
    bcsiModules
        FROM Brocade-REG-MIB;
    
brocadeInterfaceStatsMIB  MODULE-IDENTITY
    LAST-UPDATED "201805291200Z" -- May 29, 2018 12:00pm
    ORGANIZATION "Extreme Networks, Inc."
    CONTACT-INFO
         "Postal:  Extreme Networks, Inc.
                   6480 Via Del Oro
                   San Jose, CA 95119 USA
          Phone:   +1 408 579-2800
          E-mail:  support@extremenetworks.com
          WWW:     http://www.extremenetworks.com"
    DESCRIPTION
      "This MIB module supports additional interface stats as compared to ifTable and ifXTable.
       Specifically, it supports interface utilization statistics and 
	   interface watermark statistics."
    REVISION	    "201805291200Z" -- May 29, 2018 12:00pm
    DESCRIPTION	
        "Updated ORGANIZATION and CONTACT-INFO with Extreme Networks"
    REVISION        "201609300000Z"    -- 30 September 2016
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { bcsiModules 11 }

bcsiIfStatsNotifications  OBJECT IDENTIFIER
    ::=  { brocadeInterfaceStatsMIB 0 }
bcsiIfStatsObjects OBJECT IDENTIFIER
    ::=  { brocadeInterfaceStatsMIB 1 }
bcsiIfStatsConformance OBJECT IDENTIFIER
    ::=  { brocadeInterfaceStatsMIB 2 }
    
    
bcsiIfStatsTable OBJECT-TYPE
    SYNTAX  SEQUENCE OF BcsiIfStatsEntry
    MAX-ACCESS  not-accessible
    STATUS  current
    DESCRIPTION
        " This table consists of ingress and egress interface 
        statistics value, ingress and egress interface utilization value. "
    ::= { bcsiIfStatsObjects 1 }

bcsiIfStatsEntry OBJECT-TYPE
    SYNTAX  BcsiIfStatsEntry
    MAX-ACCESS  not-accessible
    STATUS  current
    DESCRIPTION
        "An entry in the bcsiIfStats table indicates the
         stats and utilization on an interface."
    INDEX   { ifIndex }
    ::= { bcsiIfStatsTable 1 }

BcsiIfStatsEntry ::= SEQUENCE {
    bcsiIfStatsInBitsPerSec
        CounterBasedGauge64,
    bcsiIfStatsOutBitsPerSec
        CounterBasedGauge64,
    bcsiIfStatsInPktsPerSec
        Gauge32,
    bcsiIfStatsOutPktsPerSec
        Gauge32,
    bcsiIfStatsInUtilization
        Unsigned32 ,
    bcsiIfStatsOutUtilization
        Unsigned32 ,
    bcsiIfStatsInJumboFrames
        Counter64
    }

bcsiIfStatsInBitsPerSec OBJECT-TYPE
    SYNTAX  CounterBasedGauge64
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION
        "The number of bits per second received on the interface."
    ::= { bcsiIfStatsEntry 1 }

bcsiIfStatsOutBitsPerSec OBJECT-TYPE
    SYNTAX  CounterBasedGauge64
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION
        "The number of bits per second transmitted out of the interface."
    ::= { bcsiIfStatsEntry 2 }

bcsiIfStatsInPktsPerSec OBJECT-TYPE
    SYNTAX  Gauge32
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION
        "The number of packets per second received on the interface."
    ::= { bcsiIfStatsEntry 3 }

bcsiIfStatsOutPktsPerSec OBJECT-TYPE
    SYNTAX  Gauge32
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION
        "The number of packets per second transmitted out of the interface."
    ::= { bcsiIfStatsEntry 4 }

bcsiIfStatsInUtilization OBJECT-TYPE
    SYNTAX  Unsigned32
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION
        "The input network utilization in hundredths of a percent.
        For example, a value of 200 indicates 2 percent utilization."
    ::= { bcsiIfStatsEntry 5 }

bcsiIfStatsOutUtilization OBJECT-TYPE
    SYNTAX  Unsigned32
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION
        "The output network utilization in hundredths of a percent.
        For example, a value of 200 indicates 2 percent utilization."
    ::= { bcsiIfStatsEntry 6 }

bcsiIfStatsInJumboFrames OBJECT-TYPE
    SYNTAX  Counter64
    MAX-ACCESS  read-only
    STATUS  current
    DESCRIPTION
        "The total number of jumbo packets received on the interface."
    ::= { bcsiIfStatsEntry 7 }
    
-- Extreme interface stats watermark table

bcsiIfWatermarkTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF BcsiIfWatermarkEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
           "Table to display the highest/lowest Tx/Rx BitRate and PktRate 
            of a port for the current and previous 1 hour/24 hour window."
    ::= { bcsiIfStatsObjects 2 }

bcsiIfWatermarkEntry OBJECT-TYPE
    SYNTAX      BcsiIfWatermarkEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "An entry in the bcsiIfWatermarkTable containing the 
             highest/lowest Tx/Rx BitRate and PktRate of a port 
             for the current and previous 1 hour/24 hour window."
    INDEX   { ifIndex, bcsiIfWatermarkWindowType, bcsiIfWatermarkTrafficDirection, bcsiIfWatermarkType }
    ::= { bcsiIfWatermarkTable 1 }

BcsiIfWatermarkEntry ::= SEQUENCE {
    bcsiIfWatermarkWindowType         INTEGER,
    bcsiIfWatermarkTrafficDirection INTEGER,
    bcsiIfWatermarkType             INTEGER,
    bcsiIfWatermarkBitRate             CounterBasedGauge64,
    bcsiIfWatermarkPktRate             Gauge32,
    bcsiIfWatermarkUpdateTime         DateAndTime,
    bcsiIfWatermarkWindowStartTime     DateAndTime
    }

bcsiIfWatermarkWindowType OBJECT-TYPE
    SYNTAX   INTEGER {
             bcsiIfWatermarkCurrent1Hr(1),
             bcsiIfWatermarkLast1Hr(2),
             bcsiIfWatermarkCurrent24Hr(3),
             bcsiIfWatermarkLast24Hr(4)
             }
    MAX-ACCESS not-accessible
    STATUS    current
    DESCRIPTION
        "Interface Watermark window during which the mornitoring is done."
    ::= { bcsiIfWatermarkEntry 1 }

bcsiIfWatermarkTrafficDirection OBJECT-TYPE
    SYNTAX   INTEGER {
             bcsiIfWatermarkTrafficDirIn(1),     -- Traffic direction Ingress
             bcsiIfWatermarkTrafficDirOut(2)     -- Traffic direction Egress
             }
    MAX-ACCESS not-accessible
    STATUS    current
    DESCRIPTION
        "Traffic direction of the mornitored data for Interface Watermarking."
    ::= { bcsiIfWatermarkEntry 2 }

bcsiIfWatermarkType OBJECT-TYPE
    SYNTAX   INTEGER {
             bcsiIfWatermarkTypeLow(1),     -- Low utilization watermark
             bcsiIfWatermarkTypeHigh(2)     -- High utilization watermark
             }
    MAX-ACCESS not-accessible
    STATUS    current
    DESCRIPTION
        "Interface Watermark type."
    ::= { bcsiIfWatermarkEntry 3 }

bcsiIfWatermarkBitRate OBJECT-TYPE
    SYNTAX   CounterBasedGauge64
    UNITS    "BitsPerSec"
    MAX-ACCESS read-only
    STATUS    current
    DESCRIPTION
        "Bit rate when the Lowest/Highest bit rate was recorded on the interface, 
        inside the specified window for the specified traffic direction."
    ::= { bcsiIfWatermarkEntry 4 }

bcsiIfWatermarkPktRate OBJECT-TYPE
    SYNTAX   Gauge32
    UNITS    "PktsPerSec"
    MAX-ACCESS read-only
    STATUS    current
    DESCRIPTION
        "Packet rate when the Lowest/Highest packet rate was recorded on the interface,
        inside the specified window for the specified traffic direction."
    ::= { bcsiIfWatermarkEntry 5 }

bcsiIfWatermarkUpdateTime OBJECT-TYPE
    SYNTAX   DateAndTime
    MAX-ACCESS read-only
    STATUS    current
    DESCRIPTION
        "Time at which the port Bit/Pkt rate hit its lowest/highest mark,
        inside the specified window for the specified traffic direction."
    ::= { bcsiIfWatermarkEntry 6 }

bcsiIfWatermarkWindowStartTime OBJECT-TYPE
    SYNTAX   DateAndTime
    MAX-ACCESS read-only
    STATUS    current
    DESCRIPTION
        "Time at which the specified window (Curr1Hr/Last1Hr/Curr24Hr/Last24Hr) started."
    ::= { bcsiIfWatermarkEntry 7 }

--
-- Conformance
--

bcsiIfStatsCompliances OBJECT IDENTIFIER
                             ::= { bcsiIfStatsConformance 1 }
bcsiIfStatsGroups       OBJECT IDENTIFIER
                             ::= { bcsiIfStatsConformance 2 }

bcsiIfStatsCompliance MODULE-COMPLIANCE
    STATUS     current
    DESCRIPTION
        "The compliance statement for entities which
        implement BROCADE-INTERFACE-STATS-MIB."
    MODULE -- this module
        MANDATORY-GROUPS { bcsiIfStatsGroup, 
                           bcsiIfWatermarkGroup 
                         }
    ::= { bcsiIfStatsCompliances 1 }

--
-- Units of Conformance
--

bcsiIfStatsGroup  OBJECT-GROUP
    OBJECTS {
    bcsiIfStatsInBitsPerSec,
    bcsiIfStatsOutBitsPerSec,
    bcsiIfStatsInPktsPerSec,
    bcsiIfStatsOutPktsPerSec,
    bcsiIfStatsInUtilization,
    bcsiIfStatsOutUtilization,
    bcsiIfStatsInJumboFrames
    }
    STATUS         current
    DESCRIPTION
        "A collection of objects for ingress and egress interface stats and interface utilization."
    ::= { bcsiIfStatsGroups 1 }

bcsiIfWatermarkGroup  OBJECT-GROUP
    OBJECTS {
    bcsiIfWatermarkBitRate,
    bcsiIfWatermarkPktRate,
    bcsiIfWatermarkUpdateTime,
    bcsiIfWatermarkWindowStartTime
    }
    STATUS         current
    DESCRIPTION
        "A collection of objects for interface traffic water marking."
    ::= { bcsiIfStatsGroups 2 }

END