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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
|
-- ################################################################################
EXTREME-SOFTWARE-MONITOR-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY FROM SNMPv2-SMI
NOTIFICATION-TYPE FROM SNMPv2-SMI
OBJECT-TYPE FROM SNMPv2-SMI
Unsigned32 FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC
extremeAgent FROM EXTREME-BASE-MIB
extremeImageDescription FROM EXTREME-SYSTEM-MIB
PortList FROM EXTREME-BASE-MIB;
extremeSwMonitor MODULE-IDENTITY
LAST-UPDATED "201309201006Z"
ORGANIZATION "Extreme Networks, Inc."
CONTACT-INFO "www.extremenetworks.com"
DESCRIPTION "Extreme Software Monitor objects: objects common to all platforms"
::= { extremeAgent 32 }
extremeSwMonitorCpu OBJECT IDENTIFIER
::= { extremeSwMonitor 1 }
extremeSwMonitorMemory OBJECT IDENTIFIER
::= { extremeSwMonitor 2 }
extremeSwMonitorNotifications OBJECT IDENTIFIER
::= { extremeSwMonitor 3 }
extremeServiceLicense OBJECT IDENTIFIER
::= { extremeSwMonitor 4 }
extremeTrialLicense OBJECT IDENTIFIER
::= { extremeSwMonitor 5 }
extremeSwMonitorNotificationsPrefix OBJECT IDENTIFIER
::= { extremeSwMonitorNotifications 0 }
--
-- System group
--
-- Objects common to all platforms
--
extremeCpuMonitorInterval OBJECT-TYPE
SYNTAX INTEGER (5..60)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cpu monitoring interval in seconds. Can not be smaller
then 5 seconds."
::= { extremeSwMonitorCpu 1 }
extremeCpuMonitorTotalUtilization OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total CPU utlization (percentage) as of last sampling."
::= { extremeSwMonitorCpu 2 }
--
-- The CPU Task table lists all executing processs
--
extremeCpuMonitorTable OBJECT-TYPE
SYNTAX SEQUENCE OF ExtremeCpuMonitorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of CPU processes that are active."
::= { extremeSwMonitorCpu 3 }
extremeCpuMonitorEntry OBJECT-TYPE
SYNTAX ExtremeCpuMonitorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in table of describes a single process."
INDEX { extremeCpuMonitorSlotId, IMPLIED extremeCpuMonitorProcessName }
::= { extremeCpuMonitorTable 1 }
ExtremeCpuMonitorEntry ::=
SEQUENCE {
extremeCpuMonitorSlotId
Unsigned32,
extremeCpuMonitorProcessName
DisplayString,
extremeCpuMonitorProcessId
Unsigned32,
extremeCpuMonitorProcessState
DisplayString,
extremeCpuMonitorUtilization5secs
DisplayString,
extremeCpuMonitorUtilization10secs
DisplayString,
extremeCpuMonitorUtilization30secs
DisplayString,
extremeCpuMonitorUtilization1min
DisplayString,
extremeCpuMonitorUtilization5mins
DisplayString,
extremeCpuMonitorUtilization30mins
DisplayString,
extremeCpuMonitorUtilization1hour
DisplayString,
extremeCpuMonitorMaxUtilization
DisplayString,
extremeCpuMonitorUserTime
DisplayString,
extremeCpuMonitorSystemTime
DisplayString
}
extremeCpuMonitorSlotId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot Id of the process monitored."
::= { extremeCpuMonitorEntry 1 }
extremeCpuMonitorProcessName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Name associated with the reported process id."
::= { extremeCpuMonitorEntry 2 }
extremeCpuMonitorProcessId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Process identifier assigned by the operating system when
this process is created."
::= { extremeCpuMonitorEntry 3 }
extremeCpuMonitorProcessState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the process as reported by Extremeware XOS."
::= { extremeCpuMonitorEntry 4 }
extremeCpuMonitorUtilization5secs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 5 seconds."
::= { extremeCpuMonitorEntry 5 }
extremeCpuMonitorUtilization10secs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 10 seconds."
::= { extremeCpuMonitorEntry 6 }
extremeCpuMonitorUtilization30secs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 30 seconds."
::= { extremeCpuMonitorEntry 7 }
extremeCpuMonitorUtilization1min OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 1 minute."
::= { extremeCpuMonitorEntry 8 }
extremeCpuMonitorUtilization5mins OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 5 minutes."
::= { extremeCpuMonitorEntry 9 }
extremeCpuMonitorUtilization30mins OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 30 minutes."
::= { extremeCpuMonitorEntry 10 }
extremeCpuMonitorUtilization1hour OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 1 hour."
::= { extremeCpuMonitorEntry 11 }
extremeCpuMonitorMaxUtilization OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum CPU utilization by this process since
the time the start started executing. "
::= { extremeCpuMonitorEntry 12 }
extremeCpuMonitorUserTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time process spend in application space from
the time the process started executing. "
::= { extremeCpuMonitorEntry 13 }
extremeCpuMonitorSystemTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time process spend in kernel space from
the time the process started executing. "
::= { extremeCpuMonitorEntry 14 }
--
-- The CPU System table lists cpu utilization history for system processes on each slot
--
extremeCpuMonitorSystemTable OBJECT-TYPE
SYNTAX SEQUENCE OF ExtremeCpuMonitorSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of CPU utilization for system processes."
::= { extremeSwMonitorCpu 4 }
extremeCpuMonitorSystemEntry OBJECT-TYPE
SYNTAX ExtremeCpuMonitorSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in table of describes a single slot CPU
utilization."
INDEX { extremeCpuMonitorSystemSlotId }
::= { extremeCpuMonitorSystemTable 1 }
ExtremeCpuMonitorSystemEntry ::=
SEQUENCE {
extremeCpuMonitorSystemSlotId
Unsigned32,
extremeCpuMonitorSystemUtilization5secs
DisplayString,
extremeCpuMonitorSystemUtilization10secs
DisplayString,
extremeCpuMonitorSystemUtilization30secs
DisplayString,
extremeCpuMonitorSystemUtilization1min
DisplayString,
extremeCpuMonitorSystemUtilization5mins
DisplayString,
extremeCpuMonitorSystemUtilization30mins
DisplayString,
extremeCpuMonitorSystemUtilization1hour
DisplayString,
extremeCpuMonitorSystemMaxUtilization
DisplayString
}
extremeCpuMonitorSystemSlotId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot Id of the system monitored."
::= { extremeCpuMonitorSystemEntry 1 }
extremeCpuMonitorSystemUtilization5secs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by set of system resources. This
is the utilization of the process in the last 5 seconds."
::= { extremeCpuMonitorSystemEntry 5 }
extremeCpuMonitorSystemUtilization10secs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by set of system resources This
is the utilization of the system resources in the last 10 seconds."
::= { extremeCpuMonitorSystemEntry 6 }
extremeCpuMonitorSystemUtilization30secs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by system resources process. This
is the utilization of the system resources in the last 30 seconds."
::= { extremeCpuMonitorSystemEntry 7 }
extremeCpuMonitorSystemUtilization1min OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by system resources. This
is the utilization of the system resources in the last 1 minute."
::= { extremeCpuMonitorSystemEntry 8 }
extremeCpuMonitorSystemUtilization5mins OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by system resources. This
is the utilization of the system resourcesin the last 5 minutes."
::= { extremeCpuMonitorSystemEntry 9 }
extremeCpuMonitorSystemUtilization30mins OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by system resources. This
is the utilization of the system resources in the last 30 minutes."
::= { extremeCpuMonitorSystemEntry 10 }
extremeCpuMonitorSystemUtilization1hour OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization by this process. This
is the utilization of the process in the last 1 hour."
::= { extremeCpuMonitorSystemEntry 11 }
extremeCpuMonitorSystemMaxUtilization OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum CPU utilization by this process since
the time the start started executing. "
::= { extremeCpuMonitorSystemEntry 12 }
--
-- The System Memory table lists total, system usage of memory utilization
--
extremeMemoryMonitorSystemTable OBJECT-TYPE
SYNTAX SEQUENCE OF ExtremeMemoryMonitorSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of Memory consumption for processes that are active."
::= { extremeSwMonitorMemory 2 }
extremeMemoryMonitorSystemEntry OBJECT-TYPE
SYNTAX ExtremeMemoryMonitorSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in table of describes a single process."
INDEX { extremeMemoryMonitorSystemSlotId }
::= { extremeMemoryMonitorSystemTable 1 }
ExtremeMemoryMonitorSystemEntry ::=
SEQUENCE {
extremeMemoryMonitorSystemSlotId
Unsigned32,
extremeMemoryMonitorSystemTotal
DisplayString,
extremeMemoryMonitorSystemFree
DisplayString,
extremeMemoryMonitorSystemUsage
DisplayString,
extremeMemoryMonitorUserUsage
DisplayString
}
extremeMemoryMonitorSystemSlotId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot Id of the MSM monitored."
::= { extremeMemoryMonitorSystemEntry 1 }
extremeMemoryMonitorSystemTotal OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total amount of DRAM in Kbytes in the system."
::= { extremeMemoryMonitorSystemEntry 2 }
extremeMemoryMonitorSystemFree OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total amount of free memory in Kbytes in the system."
::= { extremeMemoryMonitorSystemEntry 3 }
extremeMemoryMonitorSystemUsage OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total amount of memory used by system services in Kbytes in the system."
::= { extremeMemoryMonitorSystemEntry 4 }
extremeMemoryMonitorUserUsage OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total amount of memory used by applications in Kbytes in the system."
::= { extremeMemoryMonitorSystemEntry 5 }
--
-- The Memory Task table lists all executing processs
--
extremeMemoryMonitorTable OBJECT-TYPE
SYNTAX SEQUENCE OF ExtremeMemoryMonitorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of Memory consumption for processes that are active."
::= { extremeSwMonitorMemory 3 }
extremeMemoryMonitorEntry OBJECT-TYPE
SYNTAX ExtremeMemoryMonitorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in table of describes a single process."
INDEX { extremeMemoryMonitorSlotId, IMPLIED extremeMemoryMonitorProcessName }
::= { extremeMemoryMonitorTable 1 }
ExtremeMemoryMonitorEntry ::=
SEQUENCE {
extremeMemoryMonitorSlotId
Unsigned32,
extremeMemoryMonitorProcessName
DisplayString,
extremeMemoryMonitorUsage
Unsigned32,
extremeMemoryMonitorLimit
Unsigned32,
extremeMemoryMonitorZone
DisplayString,
extremeMemoryMonitorGreenZoneCount
Unsigned32,
extremeMemoryMonitorYellowZoneCount
Unsigned32,
extremeMemoryMonitorOrangeZoneCount
Unsigned32,
extremeMemoryMonitorRedZoneCount
Unsigned32,
extremeMemoryMonitorGreenZoneThreshold
Unsigned32,
extremeMemoryMonitorYellowZoneThreshold
Unsigned32,
extremeMemoryMonitorOrangeZoneThreshold
Unsigned32,
extremeMemoryMonitorRedZoneThreshold
Unsigned32
}
extremeMemoryMonitorSlotId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot Id of the process monitored."
::= { extremeMemoryMonitorEntry 1 }
extremeMemoryMonitorProcessName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Name associated with the reported process."
::= { extremeMemoryMonitorEntry 2 }
extremeMemoryMonitorUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current memory consumption in Kbytes for the process."
::= { extremeMemoryMonitorEntry 3 }
extremeMemoryMonitorLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum memory consumption in Kbytes for the process."
::= { extremeMemoryMonitorEntry 4 }
extremeMemoryMonitorZone OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current process memory consumption zone. Zones are Green (up to 70% cosumption), Yellow (70-80%), Orange (80-90%), Red (90-95%) either total cpu consumption or memory consumption limit configured per process."
::= { extremeMemoryMonitorEntry 5 }
extremeMemoryMonitorGreenZoneCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times process moved to green zone."
::= { extremeMemoryMonitorEntry 6 }
extremeMemoryMonitorYellowZoneCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times process moved from green to yellow zone."
::= { extremeMemoryMonitorEntry 7 }
extremeMemoryMonitorOrangeZoneCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times process moved from yellow zone to orange."
::= { extremeMemoryMonitorEntry 8 }
extremeMemoryMonitorRedZoneCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times process moved from orange zone to red."
::= { extremeMemoryMonitorEntry 9 }
extremeMemoryMonitorGreenZoneThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of memory consumption that defines green zone."
::= { extremeMemoryMonitorEntry 10 }
extremeMemoryMonitorYellowZoneThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of memory consumption that defines yellow zone."
::= { extremeMemoryMonitorEntry 11 }
extremeMemoryMonitorOrangeZoneThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of memory consumption that defines orange zone."
::= { extremeMemoryMonitorEntry 12 }
extremeMemoryMonitorRedZoneThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of memory consumption that defines red zone."
::= { extremeMemoryMonitorEntry 13 }
extremeCpuMonitorThreshold OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Threshold for CPU Aggregation utilization trap"
::= { extremeSwMonitorCpu 5 }
extremeCpuMonitorCurrentUtilization OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Percentage of the amount of time recorded in seconds that the process spends occupying CPU resources. This value is reported in extremeSwMonitorCpuUtilization and extremeSwMonitorCpuUtilizationNormal trap."
::= { extremeSwMonitorCpu 6 }
extremeSwMonitorCpuUtilization NOTIFICATION-TYPE
OBJECTS { extremeCpuMonitorSlotId,
extremeCpuMonitorProcessName,
extremeCpuMonitorCurrentUtilization,
extremeCpuMonitorThreshold }
STATUS current
DESCRIPTION
"Notification of process exceeding CPU utilization threshold. Notification is send every extremeCpuMonitorInterval value in seconds until utilization falls below threshold."
::= { extremeSwMonitorNotificationsPrefix 1 }
extremeServiceLicenseExpiryDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This report the expiration date of the license."
::= { extremeServiceLicense 1 }
extremeServiceLicenseType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This report the service license type."
::= { extremeServiceLicense 2 }
imageDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This report the image version on which license was enabled."
::= { extremeServiceLicense 3 }
noOfDaysLeft OBJECT-TYPE
SYNTAX INTEGER (0..90)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This report the number of days left to service license expire."
::= { extremeServiceLicense 4 }
trialPeriod OBJECT-TYPE
SYNTAX INTEGER (0..90)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This report the number of days left to service license expire."
::= { extremeTrialLicense 1 }
extremeServiceLicenseExpiration NOTIFICATION-TYPE
OBJECTS { extremeServiceLicenseExpiryDate,
extremeServiceLicenseType,
imageDescription,
noOfDaysLeft
}
STATUS current
DESCRIPTION
"The service expiry notification is generated about 90 days service contract expiration, then 60,30,7 days and daily after that."
::= { extremeSwMonitorNotificationsPrefix 2 }
extremeTrialLicenseExpiration NOTIFICATION-TYPE
OBJECTS { trialPeriod,
imageDescription,
noOfDaysLeft
}
STATUS current
DESCRIPTION
"Trial license expiry notification is generated every day."
::= { extremeSwMonitorNotificationsPrefix 3 }
extremeSwMonitorCpuUtilizationNormal NOTIFICATION-TYPE
OBJECTS { extremeCpuMonitorSlotId,
extremeCpuMonitorProcessName,
extremeCpuMonitorCurrentUtilization,
extremeCpuMonitorThreshold }
STATUS current
DESCRIPTION
"Notification of process CPU utilization falling below threshold. The generation of this notification corresponds with the extremeSwMonitorCpuUtilization (CPU excessed threshold) notification. When the CPU utilization of the process that triggered the extremeSwMonitorCpuUtilization notification falls back below the configured threshold, this (return to normal) notification will be generated."
::= { extremeSwMonitorNotificationsPrefix 4 }
END
|