forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ACD-SA-MIB.mib
1182 lines (1023 loc) · 39.9 KB
/
ACD-SA-MIB.mib
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
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- Accedian Enterprise Specific MIB
--
-- Copyright (c) 2005-2016, Accedian Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
ACD-SA-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32, Gauge32
FROM SNMPv2-SMI
DisplayString, DateAndTime, TEXTUAL-CONVENTION, RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
acdMibs
FROM ACCEDIAN-SMI;
acdSa MODULE-IDENTITY
LAST-UPDATED "201609230100Z"
ORGANIZATION "Accedian Networks, Inc."
CONTACT-INFO
"Accedian Technical Assistance Center
Accedian Networks, Inc.
2351 Alfred-Nobel blvd., Suite N-410
Saint-Laurent, Quebec Canada H4S 2A9
E-mail: [email protected]"
DESCRIPTION
"The Service Availability database for this Accedian Networks device."
REVISION "201609230100Z" -- 23 September 2016
DESCRIPTION
"Add acdSaServiceHistCounterPeriodIndex
to acdSaServiceHistCounterGroup.
Add acdSaMetricHistCounterID and acdSaMetricHistCounterPeriodIndex
to acdSaMetricHistCounterGroup."
REVISION "201606160100Z" -- 16 June 2016
DESCRIPTION
"Add invalid(4) value for AcdSaValidFlag syntax."
REVISION "201605260100Z" -- 26 May 2016
DESCRIPTION
"Set access level to read-only for acdSaServiceHistCounterPeriodIndex,
acdSaMetricHistCounterID, acdSaMetricHistCounterPeriodIndex."
REVISION "201112210100Z" -- 21 Dec 2011
DESCRIPTION
"Add support for ETH-SLM metrics."
REVISION "201103150100Z" -- 15 Mars 2011
DESCRIPTION
"Initial version of MIB module ACD-SA-MIB."
::= { acdMibs 12 }
acdSaNotifications OBJECT IDENTIFIER ::= { acdSa 0 }
acdSaMIBObjects OBJECT IDENTIFIER ::= { acdSa 1 }
acdSaConformance OBJECT IDENTIFIER ::= { acdSa 2 }
acdSaConfig OBJECT IDENTIFIER ::= { acdSaMIBObjects 1 }
acdSaCounter OBJECT IDENTIFIER ::= { acdSaMIBObjects 2 }
acdSaStatus OBJECT IDENTIFIER ::= { acdSaMIBObjects 3 }
---------------------------------------------------------------------------
-- Textual conventions
---------------------------------------------------------------------------
AcdSaMetricType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value that represents a type of metric that can be used in an
instance of Service Availability."
SYNTAX INTEGER {
metricPaaPlr(1),
metricPaaOwDelay(2),
metricPaaOwDv(3),
metricPaaTwDelay(4),
metricPaaTwDv(5),
metricCfmPlr(6),
metricCfmOwDelay(7),
metricCfmOwDv(8),
metricCfmTwDelay(9),
metricCfmTwDv(10),
metricCfmSlmNearEndPlr(11),
metricCfmSlmFarEndPlr(12)
}
AcdSaValidFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The validity flag can have three values: valid, adjusted, or pending.
The value of valid indicates the metrics are calculated normally.
The value of adjusted is used to indicate a change occurred in the
configuration during the reporting period which may impact the service
availability calculation.
The value of pending indicates that the counters were reset in the
middle of a time interval."
SYNTAX INTEGER {
valid(1),
adjusted(2),
pending(3),
invalid(4)
}
AcdSaAdminStateFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This flag is used for the administrative state.
The value IS indicates the state is In-Service. The value OOS
indicates the state is Out-of-Service."
SYNTAX INTEGER {
is(1),
oos(2)
}
AcdSaOperStateFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This flag is used for the operational state.
The value IS indicates the state is In-Service. The value OOS
indicates the state is Out-of-Service. The value oos-au indicates
the state is Out-of-Service-Autonomous. This state is entered when
all of the metrics associated with the service instance are disabled."
SYNTAX INTEGER {
is(1),
oos(2),
oosAu(3)
}
---------------------------------------------------------------------------
-- The Service configuration table
-- This table contains all Service entry configurations.
---------------------------------------------------------------------------
acdSaServiceConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaServiceConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaConfig 1 }
acdSaServiceConfigEntry OBJECT-TYPE
SYNTAX AcdSaServiceConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all settings for a Service."
INDEX { acdSaServiceIndex }
::= { acdSaServiceConfigTable 1 }
AcdSaServiceConfigEntry ::= SEQUENCE {
acdSaServiceIndex Unsigned32,
acdSaServiceConfigRowStatus RowStatus,
acdSaServiceConfigName DisplayString,
acdSaServiceConfigAdminState AcdSaAdminStateFlag,
acdSaServiceConfigReportingPeriod Unsigned32,
acdSaServiceConfigUaWindowSize Unsigned32,
acdSaServiceConfigHliWindowSize Unsigned32,
acdSaServiceConfigTimeInterval Unsigned32
}
acdSaServiceIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each service instance."
::= { acdSaServiceConfigEntry 1 }
acdSaServiceConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"All columns must have a valid value before a row can be activated. To
create a new Service you shall provide a unique name for an empty
row with the RowStatus set to Create and Go."
::= { acdSaServiceConfigEntry 2 }
acdSaServiceConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A unique name used to identify the Service."
::= { acdSaServiceConfigEntry 3 }
acdSaServiceConfigAdminState OBJECT-TYPE
SYNTAX AcdSaAdminStateFlag
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative state is(1) or oos(2)."
DEFVAL { 2 }
::= { acdSaServiceConfigEntry 4 }
acdSaServiceConfigReportingPeriod OBJECT-TYPE
SYNTAX Unsigned32 (1 .. 1440)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A reporting period over which availability counters are evaluated
in addition to the monotonic counters (In minutes)."
DEFVAL { 15 }
::= { acdSaServiceConfigEntry 5 }
acdSaServiceConfigUaWindowSize OBJECT-TYPE
SYNTAX Unsigned32 (1 .. 1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of consecutive seconds over which to assess unavailability."
DEFVAL { 10 }
::= { acdSaServiceConfigEntry 6 }
acdSaServiceConfigHliWindowSize OBJECT-TYPE
SYNTAX Unsigned32 (1 .. 999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of consecutive Time Intervals used to assess High Loss Intervals for this instance."
DEFVAL { 3 }
::= { acdSaServiceConfigEntry 7 }
acdSaServiceConfigTimeInterval OBJECT-TYPE
SYNTAX Unsigned32 (1 .. 60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The interval of time during which the metric is evaluated. Allowed values
are 1, 5, 10, 20, or 60."
DEFVAL { 1 }
::= { acdSaServiceConfigEntry 8 }
---------------------------------------------------------------------------
-- The Metric configuration table
-- This table contains all Metric entry configurations.
---------------------------------------------------------------------------
acdSaMetricConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaMetricConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ....."
::= { acdSaConfig 2 }
acdSaMetricConfigEntry OBJECT-TYPE
SYNTAX AcdSaMetricConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all settings for a Metric."
INDEX { acdSaServiceIndex,
acdSaMetricIndex }
::= { acdSaMetricConfigTable 1 }
AcdSaMetricConfigEntry ::= SEQUENCE {
acdSaMetricIndex Unsigned32,
acdSaMetricConfigRowStatus RowStatus,
acdSaMetricConfigName DisplayString,
acdSaMetricConfigSrcName DisplayString,
acdSaMetricConfigType AcdSaMetricType,
acdSaMetricConfigThreshold Unsigned32
}
acdSaMetricIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for each metric instance."
::= { acdSaMetricConfigEntry 1 }
acdSaMetricConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"All columns must have a valid value before a row can be activated. To
create a new Service you shall provide the a unique name for an empty
row with the RowStatus set to Create and Go. To delete the VLAN set
you need to set the RowStatus to destroy."
::= { acdSaMetricConfigEntry 2 }
acdSaMetricConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A unique name used to identify the Metric."
::= { acdSaMetricConfigEntry 3 }
acdSaMetricConfigSrcName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A unique name used to identify the source metric."
::= { acdSaMetricConfigEntry 4 }
acdSaMetricConfigType OBJECT-TYPE
SYNTAX AcdSaMetricType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the Service Availability entry."
DEFVAL { metricCfmTwDelay }
::= { acdSaMetricConfigEntry 5 }
acdSaMetricConfigThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the delay threshold for this metric when type is
one of metric delay parameters (in micro-seconds). Indicates
the packet loss threshold for this metric when type is one of
packet-loss parameter expressed in millionth of percent
(1,000,000 is 1%)."
DEFVAL { 0 }
::= { acdSaMetricConfigEntry 6 }
---------------------------------------------------------------------------
-- The Service counters table
-- This table contains all services history counters.
---------------------------------------------------------------------------
acdSaServiceCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaServiceCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaCounter 1 }
acdSaServiceCounterEntry OBJECT-TYPE
SYNTAX AcdSaServiceCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all counters for a Service."
INDEX { acdSaServiceIndex }
::= { acdSaServiceCounterTable 1 }
AcdSaServiceCounterEntry ::= SEQUENCE {
acdSaServiceCounterPeriodIndex Unsigned32,
acdSaServiceCounterValidFlag AcdSaValidFlag,
acdSaServiceCounterUpTime Unsigned32,
acdSaServiceCounterUaTime Unsigned32,
acdSaServiceCounterMaintTime Unsigned32,
acdSaServiceCounterAvailRatio Unsigned32,
acdSaServiceCounterGaps Unsigned32,
acdSaServiceCounterLargestGap Unsigned32,
acdSaServiceCounterChliTime Unsigned32,
acdSaServiceCounterChliRatio Unsigned32
}
acdSaServiceCounterPeriodIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies the particular sample this entry
represents among all samples associated with the same service
instance. This index starts at 1 and increases by one as each new
period."
::= { acdSaServiceCounterEntry 1 }
acdSaServiceCounterValidFlag OBJECT-TYPE
SYNTAX AcdSaValidFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the validity of the service counter during this sampling
interval."
::= { acdSaServiceCounterEntry 2 }
acdSaServiceCounterUpTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Uptime is a measure of the time a service has been up during this
sampling interval."
::= { acdSaServiceCounterEntry 3 }
acdSaServiceCounterUaTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UaTime is a measure of the time a service has been unavailable
during this sampling interval."
::= { acdSaServiceCounterEntry 4 }
acdSaServiceCounterMaintTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MaintTime is a measure of the time a service has been in maintenance
during this sampling interval."
::= { acdSaServiceCounterEntry 5 }
acdSaServiceCounterAvailRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the availability ratio in millionth of a percent
(1,000,000 is 1%)."
::= { acdSaServiceCounterEntry 6 }
acdSaServiceCounterGaps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The gap shall be the number of time the state change from available
to unavailable."
::= { acdSaServiceCounterEntry 7 }
acdSaServiceCounterLargestGap OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest gap shall be the largest number of consecutive unavailable
second."
::= { acdSaServiceCounterEntry 8 }
acdSaServiceCounterChliTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CHLI time is a counter which increments for every high loss interval.
It is only reset to zero when one of the following conditions occur:
1) device reboot 2) explicit counter reset."
::= { acdSaServiceCounterEntry 9 }
acdSaServiceCounterChliRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio of high loss intervals divided by the uptime minus the sum of
maintenance time and unavailable time, expressed in millionth of a percent (1,000,000 is 1%)."
::= { acdSaServiceCounterEntry 10 }
---------------------------------------------------------------------------
-- The Service History counters table
-- This table contains all services history counters.
---------------------------------------------------------------------------
acdSaServiceHistCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaServiceHistCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaCounter 2 }
acdSaServiceHistCounterEntry OBJECT-TYPE
SYNTAX AcdSaServiceHistCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all counters for a Service."
INDEX { acdSaServiceIndex,
acdSaServiceHistCounterPeriodIndex }
::= { acdSaServiceHistCounterTable 1 }
AcdSaServiceHistCounterEntry ::= SEQUENCE {
acdSaServiceHistCounterPeriodIndex Unsigned32,
acdSaServiceHistCounterIntervalEnd DateAndTime,
acdSaServiceHistCounterValidFlag AcdSaValidFlag,
acdSaServiceHistCounterUpTime Unsigned32,
acdSaServiceHistCounterUaTime Unsigned32,
acdSaServiceHistCounterMaintTime Unsigned32,
acdSaServiceHistCounterAvailRatio Unsigned32,
acdSaServiceHistCounterGaps Unsigned32,
acdSaServiceHistCounterLargestGap Unsigned32,
acdSaServiceHistCounterChliTime Unsigned32,
acdSaServiceHistCounterChliRatio Unsigned32
}
acdSaServiceHistCounterPeriodIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies the particular sample this entry
represents among all samples associated with the same service
instance. This index starts at 1 and increases by one as each new
period."
::= { acdSaServiceHistCounterEntry 1 }
acdSaServiceHistCounterIntervalEnd OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the time of the end of this entry."
::= { acdSaServiceHistCounterEntry 2 }
acdSaServiceHistCounterValidFlag OBJECT-TYPE
SYNTAX AcdSaValidFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the validity of the service counter during this sampling
interval."
::= { acdSaServiceHistCounterEntry 3 }
acdSaServiceHistCounterUpTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Uptime is a measure of the time a service has been up during this
sampling interval."
::= { acdSaServiceHistCounterEntry 4 }
acdSaServiceHistCounterUaTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UaTime is a measure of the time a service has been unavailable
during this sampling interval."
::= { acdSaServiceHistCounterEntry 5 }
acdSaServiceHistCounterMaintTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MaintTime is a measure of the time a service has been in maintenance
during this sampling interval."
::= { acdSaServiceHistCounterEntry 6 }
acdSaServiceHistCounterAvailRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the availability ratio as a percentage."
::= { acdSaServiceHistCounterEntry 7 }
acdSaServiceHistCounterGaps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The gap shall be the number of time the state change from available
to unavailable."
::= { acdSaServiceHistCounterEntry 8 }
acdSaServiceHistCounterLargestGap OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest gap shall be the largest number of consecutive unavailable
second."
::= { acdSaServiceHistCounterEntry 9 }
acdSaServiceHistCounterChliTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CHLI time is a counter which increments for every High Loss Interval.
It is only reset to zero when one of the following conditions occur:
1) device reboot 2) explicit counter reset."
::= { acdSaServiceHistCounterEntry 10 }
acdSaServiceHistCounterChliRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio of high loss intervals divided by the uptime minus the sum of
maintenance time and unavailable time, expressed in millionth of a percent (1,000,000 is 1%)."
::= { acdSaServiceHistCounterEntry 11 }
---------------------------------------------------------------------------
-- The Monotonic Service counters table
-- This table contains all services monotonic counters.
---------------------------------------------------------------------------
acdSaServiceMonoCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaServiceMonoCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaCounter 3 }
acdSaServiceMonoCounterEntry OBJECT-TYPE
SYNTAX AcdSaServiceMonoCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all monotonic counters for a Service."
INDEX { acdSaServiceIndex }
::= { acdSaServiceMonoCounterTable 1 }
AcdSaServiceMonoCounterEntry ::= SEQUENCE {
acdSaServiceMonoCounterValidFlag AcdSaValidFlag,
acdSaServiceMonoCounterUpTime Unsigned32,
acdSaServiceMonoCounterUaTime Unsigned32,
acdSaServiceMonoCounterMaintTime Unsigned32,
acdSaServiceMonoCounterAvailRatio Unsigned32,
acdSaServiceMonoCounterGaps Unsigned32,
acdSaServiceMonoCounterLargestGap Unsigned32,
acdSaServiceMonoCounterChliTime Unsigned32,
acdSaServiceMonoCounterChliRatio Unsigned32
}
acdSaServiceMonoCounterValidFlag OBJECT-TYPE
SYNTAX AcdSaValidFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the validity of the service counter during this sampling
interval."
::= { acdSaServiceMonoCounterEntry 1 }
acdSaServiceMonoCounterUpTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Uptime is a measure of the time a service has been up during this
sampling interval."
::= { acdSaServiceMonoCounterEntry 2 }
acdSaServiceMonoCounterUaTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UaTime is a measure of the time a service has been unavailable
during this sampling interval."
::= { acdSaServiceMonoCounterEntry 3 }
acdSaServiceMonoCounterMaintTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MaintTime is a measure of the time a service has been in maintenance
during this sampling interval."
::= { acdSaServiceMonoCounterEntry 4 }
acdSaServiceMonoCounterAvailRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the availability ratio in millionth of a percent
(1,000,000 is 1%)."
::= { acdSaServiceMonoCounterEntry 5 }
acdSaServiceMonoCounterGaps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The gap shall be the number of time the state change from available
to unavailable."
::= { acdSaServiceMonoCounterEntry 6 }
acdSaServiceMonoCounterLargestGap OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest gap shall be the largest number of consecutive unavailable
second."
::= { acdSaServiceMonoCounterEntry 7 }
acdSaServiceMonoCounterChliTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A counter which increments for every high loss interval.
It is only reset to zero when one of the following conditions occur:
1) device reboot 2) explicit counter reset."
::= { acdSaServiceMonoCounterEntry 8 }
acdSaServiceMonoCounterChliRatio OBJECT-TYPE
SYNTAX Unsigned32 (0..100000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio of high loss intervals divided by the uptime minus the sum of maintenance time and unavailable time,
expressed in millionth of a percent (1,000,000 is 1%)."
::= { acdSaServiceMonoCounterEntry 9 }
---------------------------------------------------------------------------
-- The Metric counters table
-- This table contains all metrics history counters.
---------------------------------------------------------------------------
acdSaMetricCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaMetricCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaCounter 4 }
acdSaMetricCounterEntry OBJECT-TYPE
SYNTAX AcdSaMetricCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all counters for a Metric."
INDEX { acdSaServiceIndex,
acdSaMetricIndex }
::= { acdSaMetricCounterTable 1 }
AcdSaMetricCounterEntry ::= SEQUENCE {
acdSaMetricCounterValidFlag AcdSaValidFlag,
acdSaMetricCounterUaTime Unsigned32,
acdSaMetricCounterChliTime Unsigned32
}
acdSaMetricCounterValidFlag OBJECT-TYPE
SYNTAX AcdSaValidFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the validity of the metric counter during this sampling
interval."
::= { acdSaMetricCounterEntry 1 }
acdSaMetricCounterUaTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UaTime is a measure of the time a metric has been unavailable
during this sampling interval."
::= { acdSaMetricCounterEntry 2 }
acdSaMetricCounterChliTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A counter which increments for every High Loss Interval. It is only reset to zero when one of the following conditions occur:
1) device reboot 2) explicit counter reset."
::= { acdSaMetricCounterEntry 3 }
---------------------------------------------------------------------------
-- The Metric History counters table
-- This table contains all metrics history counters.
---------------------------------------------------------------------------
acdSaMetricHistCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaMetricHistCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaCounter 5 }
acdSaMetricHistCounterEntry OBJECT-TYPE
SYNTAX AcdSaMetricHistCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all counters for a Metric."
INDEX { acdSaMetricHistCounterID,
acdSaMetricHistCounterPeriodIndex }
::= { acdSaMetricHistCounterTable 1 }
AcdSaMetricHistCounterEntry ::= SEQUENCE {
acdSaMetricHistCounterID Unsigned32,
acdSaMetricHistCounterPeriodIndex Unsigned32,
acdSaMetricHistCounterIntervalEnd DateAndTime,
acdSaMetricHistCounterValidFlag AcdSaValidFlag,
acdSaMetricHistCounterUaTime Unsigned32,
acdSaMetricHistCounterChliTime Unsigned32
}
acdSaMetricHistCounterID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique value for each Metric instance. This value follows the
ordering of the service table."
::= { acdSaMetricHistCounterEntry 1 }
acdSaMetricHistCounterPeriodIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies the particular sample this entry
represents among all samples associated with the same service
instance. This index starts at 1 and increases by one as each new
period."
::= { acdSaMetricHistCounterEntry 2 }
acdSaMetricHistCounterIntervalEnd OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the time of the end of this entry."
::= { acdSaMetricHistCounterEntry 3 }
acdSaMetricHistCounterValidFlag OBJECT-TYPE
SYNTAX AcdSaValidFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the validity of the metric counter during this sampling
interval."
::= { acdSaMetricHistCounterEntry 4 }
acdSaMetricHistCounterUaTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UaTime is a measure of the time a metric has been unavailable
during this sampling interval."
::= { acdSaMetricHistCounterEntry 5 }
acdSaMetricHistCounterChliTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A counter which increments for every High Loss Interval. It is only reset to zero when one of the following conditions occur:
1) device reboot 2) explicit counter reset."
::= { acdSaMetricHistCounterEntry 6 }
---------------------------------------------------------------------------
-- The Metric counters table
-- This table contains all metrics history counters.
---------------------------------------------------------------------------
acdSaMetricMonoCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaMetricMonoCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaCounter 6 }
acdSaMetricMonoCounterEntry OBJECT-TYPE
SYNTAX AcdSaMetricMonoCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all counters for a Metric."
INDEX { acdSaServiceIndex,
acdSaMetricIndex }
::= { acdSaMetricMonoCounterTable 1 }
AcdSaMetricMonoCounterEntry ::= SEQUENCE {
acdSaMetricMonoCounterValidFlag AcdSaValidFlag,
acdSaMetricMonoCounterUaTime Unsigned32,
acdSaMetricMonoCounterChliTime Unsigned32
}
acdSaMetricMonoCounterValidFlag OBJECT-TYPE
SYNTAX AcdSaValidFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the validity of the metric counter during this sampling
interval."
::= { acdSaMetricMonoCounterEntry 1 }
acdSaMetricMonoCounterUaTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UaTime is a measure of the time a metric has been unavailable
during this sampling interval."
::= { acdSaMetricMonoCounterEntry 2 }
acdSaMetricMonoCounterChliTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A counter which increments for every high loss interval. It is only reset to zero when one of the following conditions occur:
1) device reboot 2) explicit counter reset."
::= { acdSaMetricMonoCounterEntry 3 }
---------------------------------------------------------------------------
-- The Service status table
-- This table contains all Service entry status.
---------------------------------------------------------------------------
acdSaServiceStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdSaServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of service availability of this unit."
::= { acdSaStatus 1 }
acdSaServiceStatusEntry OBJECT-TYPE
SYNTAX AcdSaServiceStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all status for a Service."
INDEX { acdSaServiceStatusID }
::= { acdSaServiceStatusTable 1 }
AcdSaServiceStatusEntry ::= SEQUENCE {
acdSaServiceStatusID Unsigned32,
acdSaServiceStatusName DisplayString,
acdSaServiceStatusAdminState AcdSaAdminStateFlag,
acdSaServiceStatusOperState AcdSaOperStateFlag,
acdSaServiceStatusNbrMetrics Gauge32
}
acdSaServiceStatusID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each service instance."
::= { acdSaServiceStatusEntry 1 }
acdSaServiceStatusName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique name used to identify the Service."
::= { acdSaServiceStatusEntry 2 }
acdSaServiceStatusAdminState OBJECT-TYPE
SYNTAX AcdSaAdminStateFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Administrative state is one of is(1) or oos(2)."
DEFVAL { 2 }
::= { acdSaServiceStatusEntry 3 }
acdSaServiceStatusOperState OBJECT-TYPE
SYNTAX AcdSaOperStateFlag
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operational state is one of is(1), oos(2) or oosAu (3)."
DEFVAL { 2 }
::= { acdSaServiceStatusEntry 4 }
acdSaServiceStatusNbrMetrics OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only