-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-RTP-METRICS-MIB-V1SMI.my
1035 lines (955 loc) · 33.7 KB
/
CISCO-RTP-METRICS-MIB-V1SMI.my
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
-- MIB file created 03-Jan-2011 17:07:18, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-RTP-METRICS-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-RTP-METRICS-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
TimeStamp
FROM SNMPv2-TC-v1
ReportIntervalCount
FROM CISCO-REPORT-INTERVAL-TC-MIB
FlowMetricScale, FlowMetricPrecision, FlowMetricValue
FROM CISCO-FLOW-MONITOR-TC-MIB
cfmFlowMonitorId, cfmFlowId, cfmFlowMetricsIntNumber
FROM CISCO-FLOW-MONITOR-MIB
ciscoMgmt
FROM CISCO-SMI
Gauge, Counter
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoRtpMetricsMIB OBJECT IDENTIFIER ::= { ciscoMgmt 703 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200906170000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- This MIB module defines objects that describe the quality
-- metrics of RTP streams, similar to those described by an RTCP
-- Receiver Report packet [RFC3550].
--
-- GLOSSARY
-- ============
--
-- Expected Packets - this value is formally defined as the
-- extended last sequence number received less the initial
-- sequence number received.
--
-- An extended last sequence number is a 32-bit value, where
-- the most significant 16-bit word indicates the number of
-- sequence number cycles, and the least significant 16-bit
-- word indicates the highest sequence number received.
--
-- Flow Monitor - a hardware or software entity that classifies
-- traffic flows, collects flow data, and periodically
-- computes flow metrics.
--
-- Flow Metric - a measurement that reflects the quality of a
-- traffic flow.
--
-- Inter-Arrival Jitter - an estimate of the statistical variance
-- of the RTP data packet inter-arrival time.
--
-- The inter-arrival jitter, J, is formally defined to be the
-- mean deviation (smoothed absolute value) of the difference,
-- D, in packet spacing at the flow monitor compared to the
-- sender for a pair of packets. This is equivalent to the
-- difference in the relative transit time for two packets; the
-- relative transit time is the difference between a packet's
-- RTP timestamp and the device's clock at the time of arrival
-- (measured in the same units):
--
-- D(i,j) = (Rj - Ri) - (Sj - Si) = (Rj - Sj) - (Ri - Si)
--
-- where Si is the RTP timestamp from packet i, and Ri is the
-- time of arrival in RTP timestamp units for packet i.
--
-- The inter-arrival jitter SHOULD be calculated continuously
-- for each RTP data packet received from source SSRCn, using
-- this equation to compute difference for each packet and the
-- previous packet (in order of arrival, not necessarily in
-- sequence).
--
-- |D(i-1,i)| - J(i-1)
-- J(i) = J(i-1) + ===================
-- 16
--
-- Measurement Interval - the length of time over which a flow
-- monitor collects data related to a traffic flow, after which
-- the flow monitor computes flow metrics using the collected
-- data.
--
-- Loss Distance - the difference between the sequence numbers
-- delimiting the start of two consecutive loss intervals.
--
-- Consider the following sequence of RTP data packets:
--
-- 111111 111222 2233 33333 444 444 5
-- 123456x890123xxxx8901xxx56789x123xx678x0
--
-- ^ ^ ^ ^ ^ ^
-- | | | | | |
-- LI1 LI2 LI3 LI4 LI5 LI6
--
-- Loss Interval | Loss Distance
-- ===============+===============
-- 1 |
-- 2 | 7
-- 3 | 8
-- 4 | 8
-- 5 | 4
-- 6 | 5
--
-- Loss Fraction - the fraction of RTP data packets from source
-- SSRCn lost during a measurement interval, expressed as a
-- fixed-point number:
--
-- Li
-- Fi = ====
-- Ei
--
-- where Fi is the loss fraction for measurement interval i,
-- Li is the lost packets during measurement interval i, and
-- Ei is the expected packets during measurement interval i.
--
-- Observe that the number of packets lost includes packets
-- that are late or duplicates, and hence this number can can
-- have a theoretical theoretical value between negative
-- infinity and one.
--
-- The cumulative loss fraction is the fraction of RTP data
-- packets from source SSRCn lost over the duration
-- monitoring the flow:
--
-- n
-- sum [Li]
-- i=1
-- Fn = ==========
-- n
-- sum [Ei]
-- i=1
--
-- where Fn is the cumulative loss fraction over n measurement
-- intervals.
--
-- Loss Interval - an interval in which consecutive packet losses
-- were experienced.
--
-- Consider the following sequence of RTP data packets:
--
-- 111111 111222 2233 33333 444 444 5
-- 123456x890123xxxx8901xxx56789x123xx678x0
--
-- ^ ^ ^ ^ ^ ^
-- | | | | | |
-- LI1 LI2 LI3 LI4 LI5 LI6
--
-- LI1 through LI6 indicate the start of loss intervals
-- observed in this sequence.
--
-- Loss Interval Duration - the number of packets lost in a loss
-- interval.
--
-- Consider the following sequence of RTP data packets:
--
-- 111111 111222 2233 33333 444 444 5
-- 123456x890123xxxx8901xxx56789x123xx678x0
--
-- ^ ^ ^ ^ ^ ^
-- | | | | | |
-- LI1 LI2 LI3 LI4 LI5 LI6
--
-- Loss Interval | Duration
-- ===============+==========
-- 1 | 1
-- 2 | 4
-- 3 | 3
-- 4 | 1
-- 5 | 2
-- 6 | 1
--
-- Lost Packets - this value is formally defined as the number of
-- packets expected less the number of packets actually
-- received, where the number of packets received includes
-- those which are late or duplicates.
--
-- SSRCn - the SSRC identifier of the source.
--
-- Traffic Flow - a unidirectional stream of packets conforming to
-- a classifier. For example, packets having a particular
-- source IP address, destination IP address, protocol type,
-- source port number, and destination port number.
--
-- Transit Time - the latency from the insertion into the network
-- to the flow monitor. This value can be computed by taking
-- the difference between a packet's RTP timestamp and the
-- device's clock at the time of arrival (measured in the same
-- units).
--
-- REFERENCES
-- ==============
--
-- [RFC3550] H. Schlzrinne, S. Casner, R. Frederick, V. Jacobson,
-- 'RTP: A Transport Protocol for Real-Time
-- Applications', RFC-3550, July 2003.
-- RevDate
-- 200906170000Z
-- RevDescr
-- The initial version of the MIB module.
ciscoRtpMetricsMIBNotifs OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIB 0 }
ciscoRtpMetricsMIBObjects OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIB 1 }
ciscoRtpMetricsMIBConform OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIB 2 }
ciscoRtpMetricsMIBIds OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIB 3 }
cfmRtpMetrics OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIBObjects 1 }
cfmRtpMonitoredElements OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIBIds 1 }
ciscoRtpMetricsMIBCompliances OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIBConform 1 }
ciscoRtpMetricsMIBGroups OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIBConform 2 }
cfmeRtpSsrcMismatch OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 1 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the condition that arises when a flow monitor
-- detects a RTP SSRC mismatch for a traffic flow during the last
-- measurement interval.
cfmeRtpCumulativeLostPkts OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 2 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the cumulative number of lost RTP data packets for a
-- traffic flow (cfmRtpMetricsLostPkts).
cfmeRtpCumulativeLossFraction OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 3 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the cumulative RTP loss fraction for a traffic flow
-- (cfmRtpMetricsFrac).
cfmeRtpCumulativeLossIntervals OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 4 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the cumulative number of RTP loss intervals for a
-- traffic flow (cfmRtpMetricsLIs).
cfmeRtpCumulativeAvgLossDuration OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 5 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the average duration of a RTP loss interval for a
-- traffic flow (cfmRtpMetricsAvgLD).
cfmeRtpCumulativeAvgLossDistance OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 6 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the average RTP loss distance for a traffic flow
-- (cfmRtpMetricsAvgLossDistance).
cfmeRtpCumulativeJitter OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 7 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the average inter-arrival jitter of RTP data
-- packets for a traffic flow (cfmRtpMetricsJitter).
cfmeRtpLostPkts OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 8 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the number of lost RTP data packets for a traffic
-- flow during the last measurement interval
-- (cfmRtpMetricsIntLostPkts).
cfmeRtpLossFraction OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 9 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the RTP loss fraction for a traffic flow during the
-- last measurement interval (cfmRtpMetricsIntFrac).
cfmeRtpLossIntervals OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 10 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the number of RTP loss intervals for a traffic flow
-- during the last measurement interval (cfmRtpMetricsIntLIs).
cfmeRtpAvgLossDuration OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 11 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the average duration of a RTP loss interval for
-- a traffic flow during the last measurement interval
-- (cfmRtpMetricsIntAvgLD).
cfmeRtpAvgLossDistance OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 12 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the average RTP loss distance for a traffic flow
-- during the last measurement interval
-- (cfmRtpMetricsIntAvgLossDistance).
cfmeRtpMaxJitter OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 13 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the maximum inter-arrival jitter of RTP data packets
-- for a traffic flow during the last measurement interval
-- (cfmRtpMetricsIntJitter).
cfmeRtpMaxMinTransit OBJECT IDENTIFIER ::= { cfmRtpMonitoredElements 14 }
-- OBJECT-IDENTITY
-- Status
-- mandatory
-- Descr
-- This object identifier represents the monitored element
-- describing the max-min transit time of the RTP data packets for
-- a traffic flow during the last measurement interval
-- (cfmRtpMetricsIntTransit).
cfmRtpMetricsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfmRtpMetricsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains aggregate data maintained by a flow
monitor for traffic flows for which it is computing RTP
metrics.
This table has an sparse dependent relationship on the
cfmFlowMetricsTable (defined by the CISCO-FLOW-MONITOR-MIB),
containing a row for each row in the cfmFlowMetricsTable having
a corresponding instance of cfmFlowMetricsCollected with the
'rtp' bit set to one."
::= { cfmRtpMetrics 1 }
cfmRtpMetricsEntry OBJECT-TYPE
SYNTAX CfmRtpMetricsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry describes cumulative and aggregate RTP metrics for a
single traffic flow.
The devices creates a row in the cfmRtpMetricsTable when a flow
monitor starts monitoring a traffic flow and has been configured
to compute RTP metrics for the same traffic flow. Likewise, the
device destroys a row in the cfmRtpMetricsTable when the
corresponding flow monitor has ceased monitoring the traffic
flow (e.g., when a traffic flow has timed out)."
INDEX { cfmFlowMonitorId, cfmFlowId }
::= { cfmRtpMetricsTable 1 }
CfmRtpMetricsEntry ::= SEQUENCE {
cfmRtpMetricsValid OCTET STRING,
cfmRtpMetricsExpectedPkts Counter,
cfmRtpMetricsLostPkts Counter,
cfmRtpMetricsFracScale FlowMetricScale,
cfmRtpMetricsFracPrecision FlowMetricPrecision,
cfmRtpMetricsFrac FlowMetricValue,
cfmRtpMetricsLIs Counter,
cfmRtpMetricsAvgLDScale FlowMetricScale,
cfmRtpMetricsAvgLDPrecision FlowMetricPrecision,
cfmRtpMetricsAvgLD FlowMetricValue,
cfmRtpMetricsAvgLossDistance Gauge,
cfmRtpMetricsJitterScale FlowMetricScale,
cfmRtpMetricsJitterPrecision FlowMetricPrecision,
cfmRtpMetricsJitter FlowMetricValue
}
cfmRtpMetricsValid OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- expectedPkts(0)
-- lostPkts(1)
-- lossFraction(2)
-- lossIntervals(3)
-- avgLossDuration(4)
-- avgLossDistance(5)
-- jitter(6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates which metrics are valid for the traffic
flow:
'expectedPkts'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsExpectedPkts is valid.
'lostPkts'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsLostPkts is valid.
'lossFraction'
If this bit is set to '1', then the corresponding
instances of cfmRtpMetricsFracScale,
cfmRtpMetricsFracPrecision, and cfmRtpMetricsFrac are
valid.
'lossIntervals'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsLIs is valid.
'avgLossIntervalDuration'
If this bit is set to '1', then the corresponding
instances of cfmRtpMetricsAvgLDScale,
cfmRtpMetricsAvgLDPrecision, and cfmRtpMetricsAvgLD are
valid.
'avgLossDistance'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsAvgLossDistance is valid.
'jitter'
If this bit is set to '1', then the corresponding
instances of cfmRtpMetricsJitterScale,
cfmRtpMetricsJitterPrecision, and cfmRtpMetricsJitter
are valid."
::= { cfmRtpMetricsEntry 1 }
cfmRtpMetricsExpectedPkts OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of RTP packets expected for
the traffic flow."
::= { cfmRtpMetricsEntry 2 }
cfmRtpMetricsLostPkts OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of RTP packets lost for the
traffic flow."
::= { cfmRtpMetricsEntry 3 }
cfmRtpMetricsFracScale OBJECT-TYPE
SYNTAX FlowMetricScale
-- Rsyntax INTEGER {
-- yocto(1),
-- zepto(2),
-- atto(3),
-- femto(4),
-- pico(5),
-- nano(6),
-- micro(7),
-- milli(8),
-- units(9),
-- kilo(10),
-- mega(11),
-- giga(12),
-- tera(13),
-- exa(14),
-- peta(15),
-- zetta(16),
-- yotta(17)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the scaling factor for the corresponding
instance of cfmRtpMetricsFrac."
::= { cfmRtpMetricsEntry 4 }
cfmRtpMetricsFracPrecision OBJECT-TYPE
SYNTAX FlowMetricPrecision
-- Rsyntax INTEGER(-8..-1|1..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the precision for the corresponding
instance of cfmRtpmetricsFrac."
::= { cfmRtpMetricsEntry 5 }
cfmRtpMetricsFrac OBJECT-TYPE
SYNTAX FlowMetricValue
-- Rsyntax INTEGER(-1000000000..1000000000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the loss fraction for traffic flow."
::= { cfmRtpMetricsEntry 6 }
cfmRtpMetricsLIs OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of loss intervals for the
traffic flow."
::= { cfmRtpMetricsEntry 7 }
cfmRtpMetricsAvgLDScale OBJECT-TYPE
SYNTAX FlowMetricScale
-- Rsyntax INTEGER {
-- yocto(1),
-- zepto(2),
-- atto(3),
-- femto(4),
-- pico(5),
-- nano(6),
-- micro(7),
-- milli(8),
-- units(9),
-- kilo(10),
-- mega(11),
-- giga(12),
-- tera(13),
-- exa(14),
-- peta(15),
-- zetta(16),
-- yotta(17)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the scaling factor for the corresponding
instance of cfmRtpMetricsAvgLD."
::= { cfmRtpMetricsEntry 8 }
cfmRtpMetricsAvgLDPrecision OBJECT-TYPE
SYNTAX FlowMetricPrecision
-- Rsyntax INTEGER(-8..-1|1..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the precision for the corresponding
instance of cfmRtpMetricsAvgLD."
::= { cfmRtpMetricsEntry 9 }
cfmRtpMetricsAvgLD OBJECT-TYPE
SYNTAX FlowMetricValue
-- Rsyntax INTEGER(-1000000000..1000000000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the average loss duration for the
traffic flow."
::= { cfmRtpMetricsEntry 10 }
cfmRtpMetricsAvgLossDistance OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the average loss distance for the
traffic flow."
::= { cfmRtpMetricsEntry 11 }
cfmRtpMetricsJitterScale OBJECT-TYPE
SYNTAX FlowMetricScale
-- Rsyntax INTEGER {
-- yocto(1),
-- zepto(2),
-- atto(3),
-- femto(4),
-- pico(5),
-- nano(6),
-- micro(7),
-- milli(8),
-- units(9),
-- kilo(10),
-- mega(11),
-- giga(12),
-- tera(13),
-- exa(14),
-- peta(15),
-- zetta(16),
-- yotta(17)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the scaling factor for the corresponding
instance of cfmRtpMetricsJitter."
::= { cfmRtpMetricsEntry 12 }
cfmRtpMetricsJitterPrecision OBJECT-TYPE
SYNTAX FlowMetricPrecision
-- Rsyntax INTEGER(-8..-1|1..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the precision for the corresponding
instance of cfmRtpMetricsJitter."
::= { cfmRtpMetricsEntry 13 }
cfmRtpMetricsJitter OBJECT-TYPE
SYNTAX FlowMetricValue
-- Rsyntax INTEGER(-1000000000..1000000000)
-- Units
-- seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the inter-arrival jitter for the traffic
flow."
::= { cfmRtpMetricsEntry 14 }
cfmRtpMetricsTableChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the value of sysUpTime the last time the
device created/destroyed a row in the cfmRtpMetricsTable."
::= { cfmRtpMetrics 2 }
cfmRtpMetricsIntTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfmRtpMetricsIntEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains historic RTP metrics for the traffic flows
monitored by each of the flow monitors supported by the device.
This table has an sparse dependent relationship on the
cfmFlowMetricsIntTable (defined by the CISCO-FLOW-MONITOR-MIB),
containing a row for each row in the cfmFlowMetricsIntTable
having a corresponding instance of cfmFlowMetricsCollected with
the 'rtp' bit set to one."
::= { cfmRtpMetrics 3 }
cfmRtpMetricsIntEntry OBJECT-TYPE
SYNTAX CfmRtpMetricsIntEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry describes RTP metrics collected for a previous
measurement interval for a corresponding traffic flow."
INDEX { cfmFlowMonitorId, cfmFlowId, cfmFlowMetricsIntNumber }
::= { cfmRtpMetricsIntTable 1 }
CfmRtpMetricsIntEntry ::= SEQUENCE {
cfmRtpMetricsIntValid OCTET STRING,
cfmRtpMetricsIntExpectedPkts ReportIntervalCount,
cfmRtpMetricsIntLostPkts ReportIntervalCount,
cfmRtpMetricsIntFracScale FlowMetricScale,
cfmRtpMetricsIntFracPrecision FlowMetricPrecision,
cfmRtpMetricsIntFrac FlowMetricValue,
cfmRtpMetricsIntLIs ReportIntervalCount,
cfmRtpMetricsIntAvgLDScale FlowMetricScale,
cfmRtpMetricsIntAvgLDPrecision FlowMetricPrecision,
cfmRtpMetricsIntAvgLD FlowMetricValue,
cfmRtpMetricsIntAvgLossDistance ReportIntervalCount,
cfmRtpMetricsIntJitterScale FlowMetricScale,
cfmRtpMetricsIntJitterPrecision FlowMetricPrecision,
cfmRtpMetricsIntJitter FlowMetricValue,
cfmRtpMetricsIntTransitScale FlowMetricScale,
cfmRtpMetricsIntTransitPrecision FlowMetricPrecision,
cfmRtpMetricsIntTransit FlowMetricValue
}
cfmRtpMetricsIntValid OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- expectedPkts(0)
-- lostPkts(1)
-- lossFraction(2)
-- lossIntervals(3)
-- avgLossIntervalDuration(4)
-- avgLossDistance(5)
-- maxJitter(6)
-- maxMinTransit(7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates which metrics are valid for the
measurement interval:
'expectedPkts'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsIntExpectedPkts is valid.
'lostPkts'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsIntLostPkts is valid.
'lossFraction'
If this bit is set to '1', then the corresponding
instances of cfmRtpMetricsIntFracScale,
cfmRtpMetricsIntFracPrecision, and cfmRtpMetricsIntFrac
are valid.
'lossIntervals'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsIntLIs is valid.
'avgLossDuration'
If this bit is set to '1', then the corresponding
instances of cfmRtpMetricsIntAvgLDScale,
cfmRtpMetricsIntAvgLDPrecision, and
cfmRtpMetricsIntAvgLD are valid.
'avgLossDistance'
If this bit is set to '1', then the corresponding
instance of cfmRtpMetricsIntAvgLossDistance is valid.
'maxJitter'
If this bit is set to '1', then the corresponding
instances of cfmRtpMetricsIntJitterScale,
cfmRtpMetricsIntJitterPrecision, and
cfmRtpMetricsIntJitter are valid.
'maxMinTransit'
If this bit is set to '1', then the corresponding
instances of cfmRtpMetricsIntTransitScale,
cfmRtpMetricsIntTransitPrecision, and
cfmRtpMetricsIntTransit are valid."
::= { cfmRtpMetricsIntEntry 1 }
cfmRtpMetricsIntExpectedPkts OBJECT-TYPE
SYNTAX ReportIntervalCount
-- Rsyntax Gauge
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of RTP packets expected for
the traffic flow during the measurement interval."
::= { cfmRtpMetricsIntEntry 2 }
cfmRtpMetricsIntLostPkts OBJECT-TYPE
SYNTAX ReportIntervalCount
-- Rsyntax Gauge
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of RTP packets lost for the
traffic flow during the measurement interval."
::= { cfmRtpMetricsIntEntry 3 }
cfmRtpMetricsIntFracScale OBJECT-TYPE
SYNTAX FlowMetricScale
-- Rsyntax INTEGER {
-- yocto(1),
-- zepto(2),
-- atto(3),
-- femto(4),
-- pico(5),
-- nano(6),
-- micro(7),
-- milli(8),
-- units(9),
-- kilo(10),
-- mega(11),
-- giga(12),
-- tera(13),
-- exa(14),
-- peta(15),
-- zetta(16),
-- yotta(17)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the scaling factor for the corresponding
instance of cfmRtpMetricsIntFrac."
::= { cfmRtpMetricsIntEntry 4 }
cfmRtpMetricsIntFracPrecision OBJECT-TYPE
SYNTAX FlowMetricPrecision
-- Rsyntax INTEGER(-8..-1|1..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the precision for the corresponding
instance of cfmRtpmetricsIntFrac."
::= { cfmRtpMetricsIntEntry 5 }
cfmRtpMetricsIntFrac OBJECT-TYPE
SYNTAX FlowMetricValue
-- Rsyntax INTEGER(-1000000000..1000000000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the loss fraction for traffic flow
during the measurement interval."
::= { cfmRtpMetricsIntEntry 6 }
cfmRtpMetricsIntLIs OBJECT-TYPE
SYNTAX ReportIntervalCount
-- Rsyntax Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of loss intervals for the
traffic flow during the measurement interval."
::= { cfmRtpMetricsIntEntry 7 }
cfmRtpMetricsIntAvgLDScale OBJECT-TYPE
SYNTAX FlowMetricScale
-- Rsyntax INTEGER {
-- yocto(1),
-- zepto(2),
-- atto(3),
-- femto(4),
-- pico(5),
-- nano(6),
-- micro(7),
-- milli(8),
-- units(9),
-- kilo(10),
-- mega(11),
-- giga(12),
-- tera(13),
-- exa(14),
-- peta(15),
-- zetta(16),
-- yotta(17)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the scaling factor for the corresponding
instance of cfmRtpMetricsIntAvgLD."
::= { cfmRtpMetricsIntEntry 8 }
cfmRtpMetricsIntAvgLDPrecision OBJECT-TYPE
SYNTAX FlowMetricPrecision
-- Rsyntax INTEGER(-8..-1|1..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the precision for the corresponding
instance of cfmRtpMetricsIntAvgLD."
::= { cfmRtpMetricsIntEntry 9 }
cfmRtpMetricsIntAvgLD OBJECT-TYPE
SYNTAX FlowMetricValue
-- Rsyntax INTEGER(-1000000000..1000000000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the average loss duration for the
traffic flow during the measurement interval."
::= { cfmRtpMetricsIntEntry 10 }
cfmRtpMetricsIntAvgLossDistance OBJECT-TYPE
SYNTAX ReportIntervalCount
-- Rsyntax Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the average loss distance for the
traffic flow during the measurement interval."
::= { cfmRtpMetricsIntEntry 11 }
cfmRtpMetricsIntJitterScale OBJECT-TYPE
SYNTAX FlowMetricScale
-- Rsyntax INTEGER {
-- yocto(1),
-- zepto(2),
-- atto(3),
-- femto(4),
-- pico(5),
-- nano(6),
-- micro(7),
-- milli(8),
-- units(9),
-- kilo(10),
-- mega(11),
-- giga(12),
-- tera(13),
-- exa(14),
-- peta(15),
-- zetta(16),
-- yotta(17)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the scaling factor for the corresponding
instance of cfmRtpMetricsIntJitter."
::= { cfmRtpMetricsIntEntry 12 }
cfmRtpMetricsIntJitterPrecision OBJECT-TYPE
SYNTAX FlowMetricPrecision
-- Rsyntax INTEGER(-8..-1|1..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the precision for the corresponding
instance of cfmRtpMetricsIntJitter."
::= { cfmRtpMetricsIntEntry 13 }
cfmRtpMetricsIntJitter OBJECT-TYPE
SYNTAX FlowMetricValue
-- Rsyntax INTEGER(-1000000000..1000000000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the maximum inter-arrival jitter for the
traffic flow during the measurement interval."
::= { cfmRtpMetricsIntEntry 14 }
cfmRtpMetricsIntTransitScale OBJECT-TYPE
SYNTAX FlowMetricScale
-- Rsyntax INTEGER {
-- yocto(1),
-- zepto(2),
-- atto(3),
-- femto(4),
-- pico(5),
-- nano(6),
-- micro(7),
-- milli(8),
-- units(9),
-- kilo(10),
-- mega(11),
-- giga(12),
-- tera(13),
-- exa(14),
-- peta(15),
-- zetta(16),
-- yotta(17)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the scaling factor for the corresponding
instance of cfmRtpMetricsIntTransit."
::= { cfmRtpMetricsIntEntry 15 }
cfmRtpMetricsIntTransitPrecision OBJECT-TYPE
SYNTAX FlowMetricPrecision
-- Rsyntax INTEGER(-8..-1|1..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the precision for the corresponding
instance of cfmRtpMetricsIntTransit."
::= { cfmRtpMetricsIntEntry 16 }
cfmRtpMetricsIntTransit OBJECT-TYPE
SYNTAX FlowMetricValue
-- Rsyntax INTEGER(-1000000000..1000000000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the max-min transit time for the traffic
flow during the measurement interval. The max-min transit is
the difference between the maximum and minimum transit times
observed for RTP data packets during the measurement interval."
::= { cfmRtpMetricsIntEntry 17 }
cfmRtpMetricsGroup OBJECT IDENTIFIER ::= { ciscoRtpMetricsMIBGroups 1 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr