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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
|
WAYSTREAM-RPM-MIB DEFINITIONS ::= BEGIN
--
-- This is the Waystream MIB for Realtime Performance Monitoring.
--
-- Copyright (c) 2017 Waystream AB, All rights reserved
IMPORTS
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Counter32,
Integer32,
Unsigned32,
IpAddress,
TimeTicks
FROM SNMPv2-SMI
wsMgmt
FROM WAYSTREAM-SMI;
--
-- Waystream RPM
--
wsRpm MODULE-IDENTITY
LAST-UPDATED "201702101100Z" -- February 10, 2017
ORGANIZATION "Waystream AB"
CONTACT-INFO
"Waystream AB
Mail : Farogatan 33
SE-164 51 Kista
Sweden
Tel : +46 8 56 26 94 50
E-mail: info@waystream.com
Web : http://www.waystream.com"
DESCRIPTION
"MIB describing the Realtime Performance Monitoring function of ASRs.
This allow operators to determine the quality of IPTV streams being
delivered to end customers"
REVISION "201702101100Z" -- February 10, 2017
DESCRIPTION
"Company name change:
In October 2015 PacketFront Network Products was renamed Waystream.
In this update all PacketFront were changed to Waystream and all
pf* to ws*."
REVISION "201101111759Z" -- January 11, 2011
DESCRIPTION
"Updated company name"
REVISION "201001270541Z"
DESCRIPTION
"Add RPM event-error-check related nodes, this allow to config the
detecting period/threshold of 4 type of multicast MPEG stream
quality error, and receive the trap from the corresponding trap node."
REVISION "200904291352Z"
DESCRIPTION
"Move pfRpm from pfExperimental to pfMgmt. Corrected spelling of
pfRpmTSMpegMisalignments object, added descriptions for audio elementary
stream objects."
REVISION "200903271213Z"
DESCRIPTION
"Add total-error-num for each RPM table, this shows total number of
error packet per type, src/dest IP address, src/dest port tuple."
REVISION "200903231056Z"
DESCRIPTION
"Update telephone information in contact-info"
REVISION "200804301340Z"
DESCRIPTION
"Initial implementation of RPM from PACKETFRONT-MIB"
::= { wsMgmt 14 }
--
-- Realtime Performance Monitoring
--
wsRpmGrp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"RPM multicast groups."
::= { wsRpm 2 }
wsRpmGrpRtp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"RPM rtp multicast groups."
::= { wsRpmGrp 1 }
wsRpmGrpRtpTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmGrpRtpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing an entry for each RTP multicast group
that is measured by RPM."
::= { wsRpmGrpRtp 1 }
wsRpmGrpRtpEntry OBJECT-TYPE
SYNTAX WsRpmGrpRtpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in wsRpmGrpRtpTable."
INDEX { wsRpmGrpRtpSrcAddr, wsRpmGrpRtpDestAddr,
wsRpmGrpRtpSrcPort, wsRpmGrpRtpDestPort}
::= { wsRpmGrpRtpTable 1 }
WsRpmGrpRtpEntry ::= SEQUENCE {
wsRpmGrpRtpSrcAddr IpAddress,
wsRpmGrpRtpDestAddr IpAddress,
wsRpmGrpRtpSrcPort Unsigned32,
wsRpmGrpRtpDestPort Unsigned32,
wsRpmGrpRtpBps Unsigned32,
wsRpmGrpRtpAge TimeTicks,
wsRpmGrpRtpBytes Counter32,
wsRpmGrpRtpUnknownVersion Counter32,
wsRpmGrpRtpIpFragments Counter32,
wsRpmGrpRtpSeqErrors Counter32,
wsRpmGrpRtpJitter Unsigned32,
wsRpmGrpRtpErrSum Counter32,
wsRpmGrpRtpPeriodSeqErrors Counter32,
wsRpmGrpRtpPeriodMaxJitter Unsigned32
}
wsRpmGrpRtpSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group source address."
::= { wsRpmGrpRtpEntry 1}
wsRpmGrpRtpDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group destination address."
::= { wsRpmGrpRtpEntry 2 }
wsRpmGrpRtpSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group source port."
::= { wsRpmGrpRtpEntry 3 }
wsRpmGrpRtpDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group destination port."
::= { wsRpmGrpRtpEntry 4 }
wsRpmGrpRtpBps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes per second received from the multicast group."
::= { wsRpmGrpRtpEntry 5 }
wsRpmGrpRtpAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of time since last seen data of the rtp flow."
::= { wsRpmGrpRtpEntry 6 }
wsRpmGrpRtpBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes received from multicast group."
::= { wsRpmGrpRtpEntry 7 }
wsRpmGrpRtpUnknownVersion OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of occurrences of RTP's version that differs 2."
::= { wsRpmGrpRtpEntry 8 }
wsRpmGrpRtpIpFragments OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of RTP packets carried by fragmented IP packets."
::= { wsRpmGrpRtpEntry 9 }
wsRpmGrpRtpSeqErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of RTP packets that have unexpected sequence number,
indicating RTP packet loss happened."
::= { wsRpmGrpRtpEntry 10 }
wsRpmGrpRtpJitter OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Jitter calculated using RTP packets' timestamps."
::= { wsRpmGrpRtpEntry 11 }
wsRpmGrpRtpErrSum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error sum (wsRpmGrpRtpUnknownVersion + wsRpmGrpRtpIpFragments
+ wsRpmGrpRtpSeqErrors)."
::= { wsRpmGrpRtpEntry 12 }
wsRpmGrpRtpPeriodSeqErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of RTP packets that have unexpected sequence number in current
detecting period(configged by wsRpmRtpSeqErrPeriod), indicating RTP
packet loss happened in current detecting period."
::= { wsRpmGrpRtpEntry 13 }
wsRpmGrpRtpPeriodMaxJitter OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max Jitter(in micro seconds) calculated using RTP packets' timestamps
in current detecting period(configged by wsRpmRtpJitterPeriod),
indicating max RTP packet jitter in current detecting period."
::= { wsRpmGrpRtpEntry 14 }
wsRpmGrpRtpMdiTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmGrpRtpMdiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains RFC 4445 metrics for IPTV QoS."
::= { wsRpmGrpRtp 2 }
wsRpmGrpRtpMdiEntry OBJECT-TYPE
SYNTAX WsRpmGrpRtpMdiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in wsRpmGrpRtpMdiTable."
INDEX { wsRpmGrpRtpMdiSrcAddr, wsRpmGrpRtpMdiDestAddr,
wsRpmGrpRtpMdiSrcPort, wsRpmGrpRtpMdiDestPort}
::= { wsRpmGrpRtpMdiTable 1 }
WsRpmGrpRtpMdiEntry ::= SEQUENCE {
wsRpmGrpRtpMdiSrcAddr IpAddress,
wsRpmGrpRtpMdiDestAddr IpAddress,
wsRpmGrpRtpMdiSrcPort Unsigned32,
wsRpmGrpRtpMdiDestPort Unsigned32,
wsRpmGrpRtpMdiDLFactor Unsigned32,
wsRpmGrpRtpMdiMLRFactor Unsigned32,
wsRpmGrpRtpMdiDFThreshold Unsigned32,
wsRpmGrpRtpMdiMLRThreshold Unsigned32,
wsRpmGrpRtpMdiDFErrorIntervals Unsigned32,
wsRpmGrpRtpMdiMLRErrorIntervals Unsigned32
}
wsRpmGrpRtpMdiSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group source address."
::= { wsRpmGrpRtpMdiEntry 1}
wsRpmGrpRtpMdiDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group destination address."
::= { wsRpmGrpRtpMdiEntry 2 }
wsRpmGrpRtpMdiSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group source port."
::= { wsRpmGrpRtpMdiEntry 3 }
wsRpmGrpRtpMdiDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group destination port."
::= { wsRpmGrpRtpMdiEntry 4 }
wsRpmGrpRtpMdiDLFactor OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The delay factor indicates how long (miliseconds) an IP data
flow must be buffered at its nominal bit rate to prevent
packet loss."
::= { wsRpmGrpRtpMdiEntry 5 }
wsRpmGrpRtpMdiMLRFactor OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Media Loss Rate factor indicates the rate of packet loss
in seconds, including disordered packets and duplicated packets."
::= { wsRpmGrpRtpMdiEntry 6 }
wsRpmGrpRtpMdiDFThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold for Delay factor in miliseconds."
::= { wsRpmGrpRtpMdiEntry 7 }
wsRpmGrpRtpMdiMLRThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold for Media Loss Rate factor in packets/second."
::= { wsRpmGrpRtpMdiEntry 8 }
wsRpmGrpRtpMdiDFErrorIntervals OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that Delay factor value is greater than
the Delay factor threshold."
::= { wsRpmGrpRtpMdiEntry 9 }
wsRpmGrpRtpMdiMLRErrorIntervals OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that the Media Loss Rate value is greater
than the Media Loss Rate threshold."
::= { wsRpmGrpRtpMdiEntry 10 }
wsRpmTS OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Rpm transport stream groups."
::= { wsRpm 3 }
wsRpmTSMpeg OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Rpm MPEG transport stream groups."
::= { wsRpmTS 1 }
wsRpmTSMpegTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmTSMpegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing an entry for each multicast group
that is measured by RPM."
::= { wsRpmTSMpeg 1 }
wsRpmTSMpegEntry OBJECT-TYPE
SYNTAX WsRpmTSMpegEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in wsRpmTSMpegTable."
INDEX { wsRpmTSMpegSrcAddr, wsRpmTSMpegDestAddr,
wsRpmTSMpegSrcPort, wsRpmTSMpegDestPort}
::= { wsRpmTSMpegTable 1 }
WsRpmTSMpegEntry ::= SEQUENCE {
wsRpmTSMpegSrcAddr IpAddress,
wsRpmTSMpegDestAddr IpAddress,
wsRpmTSMpegSrcPort Unsigned32,
wsRpmTSMpegDestPort Unsigned32,
wsRpmTSMpegBps Unsigned32,
wsRpmTSMpegAge TimeTicks,
wsRpmTSMpegBytes Counter32,
wsRpmTSMpegMissingSync Counter32,
wsRpmTSMpegIpFragments Counter32,
wsRpmTSMpegMisalignments Counter32,
wsRpmTSMpegFlowAge TimeTicks,
wsRpmTSMpegIngressIf Unsigned32,
wsRpmTSMpegErrSum Counter32,
wsRpmTSMpegPeriodMissingSync Counter32,
wsRpmTSMpegPeriodMisalignments Counter32
}
wsRpmTSMpegSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group source address."
::= { wsRpmTSMpegEntry 1}
wsRpmTSMpegDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group destination address."
::= { wsRpmTSMpegEntry 2 }
wsRpmTSMpegSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group source port."
::= { wsRpmTSMpegEntry 3 }
wsRpmTSMpegDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Multicast group destination port."
::= { wsRpmTSMpegEntry 4 }
wsRpmTSMpegBps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes per second received from the multicast group."
::= { wsRpmTSMpegEntry 5 }
wsRpmTSMpegAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of time since last seen data of MPEG transport stream."
::= { wsRpmTSMpegEntry 6 }
wsRpmTSMpegBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes received from multicast group."
::= { wsRpmTSMpegEntry 7 }
wsRpmTSMpegMissingSync OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of MPEG TS packets that have sync byte differed than 0x47."
::= { wsRpmTSMpegEntry 8 }
wsRpmTSMpegIpFragments OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of fragmented IP packets that carries MPEG transport
stream packet."
::= { wsRpmTSMpegEntry 9 }
wsRpmTSMpegMisalignments OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each IP packet should carry 7 MPEG TS packets. If not, the counter
will be incremented."
::= { wsRpmTSMpegEntry 10 }
wsRpmTSMpegFlowAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration since the RPM entries for an IPTV group have
been created."
::= { wsRpmTSMpegEntry 11 }
wsRpmTSMpegIngressIf OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface on which this transport stream ingressed."
::= { wsRpmTSMpegEntry 12 }
wsRpmTSMpegErrSum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error sum (wsRpmTSMpegMissingSync + wsRpmTSMpegIpFragments
+ wsRpmTSMpegMisalignments)."
::= { wsRpmTSMpegEntry 13 }
wsRpmTSMpegPeriodMissingSync OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of MPEG TS packets that have sync byte differed than 0x47 in
current detecting period(configged by wsRpmTSMpegMissSyncPeriod),
indicating MPEG TS packet missing syncronization happened in current
detecting period."
::= { wsRpmTSMpegEntry 14 }
wsRpmTSMpegPeriodMisalignments OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of MPEG TS packets that mis-aligned in current detecting period
(configged by wsRpmTSMpegMisalignPeriod), indicating MPEG TS packets
having alignment error happened in current detecting period."
::= { wsRpmTSMpegEntry 15 }
wsRpmES OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Groups for elementary streams."
::= { wsRpm 4 }
wsRpmESPat OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Group of PAT sections."
::= { wsRpmES 1 }
wsRpmESPatTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmESPatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains PAT section's statistics for every IPTV group."
::= { wsRpmESPat 1 }
wsRpmESPatEntry OBJECT-TYPE
SYNTAX WsRpmESPatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries for each PAT section's statistics."
INDEX { wsRpmESPatSrcAddr, wsRpmESPatDestAddr,
wsRpmESPatSrcPort, wsRpmESPatDestPort }
::= { wsRpmESPatTable 1 }
WsRpmESPatEntry ::= SEQUENCE {
wsRpmESPatSrcAddr IpAddress,
wsRpmESPatDestAddr IpAddress,
wsRpmESPatSrcPort Unsigned32,
wsRpmESPatDestPort Unsigned32,
wsRpmESPatBps Unsigned32,
wsRpmESPatAge TimeTicks,
wsRpmESPatBytes Counter32,
wsRpmESPatInterCcErr Counter32,
wsRpmESPatIntraCcErr Counter32,
wsRpmESPatCcErrSum Counter32
}
wsRpmESPatSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source IP address of a IPTV multicast group."
::= { wsRpmESPatEntry 1 }
wsRpmESPatDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination IP address of a IPTV multicast group."
::= { wsRpmESPatEntry 2 }
wsRpmESPatSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source port of a IPTV multicast group."
::= { wsRpmESPatEntry 3 }
wsRpmESPatDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination port of a IPTV multicast group."
::= { wsRpmESPatEntry 4 }
wsRpmESPatBps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transport rate in bits/second of a PAT section."
::= { wsRpmESPatEntry 5 }
wsRpmESPatAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration of time since last seen data of PAT section."
::= { wsRpmESPatEntry 6 }
wsRpmESPatBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes of PAT section has been received."
::= { wsRpmESPatEntry 7 }
wsRpmESPatInterCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities of continuity_counter field for a
particular PAT elementary stream, which is happened between two
different IP packets."
::= { wsRpmESPatEntry 8 }
wsRpmESPatIntraCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities of continuity_counter field for a
particular PAT elementary stream, which is happened within one
IP packet."
::= { wsRpmESPatEntry 9 }
wsRpmESPatCcErrSum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error sum (wsRpmESPatInterCcErr + wsRpmESPatIntraCcErr)."
::= { wsRpmESPatEntry 10 }
wsRpmESPatTr290Table OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmESPatTr290Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains other Qos metrics for PAT defined by the Tr 290."
::= { wsRpmESPat 2 }
wsRpmESPatTr290Entry OBJECT-TYPE
SYNTAX WsRpmESPatTr290Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries for other Qos metrics for PAT defined by the Tr 290."
INDEX { wsRpmESPatTr290SrcAddr, wsRpmESPatTr290DestAddr,
wsRpmESPatTr290SrcPort, wsRpmESPatTr290DestPort }
::= { wsRpmESPatTr290Table 1 }
WsRpmESPatTr290Entry ::= SEQUENCE {
wsRpmESPatTr290SrcAddr IpAddress,
wsRpmESPatTr290DestAddr IpAddress,
wsRpmESPatTr290SrcPort Unsigned32,
wsRpmESPatTr290DestPort Unsigned32,
wsRpmESPatTr290PatErr Counter32,
wsRpmESPatTr290CrcErr Counter32
}
wsRpmESPatTr290SrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source IP address of a IPTV multicast group."
::= { wsRpmESPatTr290Entry 1 }
wsRpmESPatTr290DestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination IP address of a IPTV multicast group."
::= { wsRpmESPatTr290Entry 2 }
wsRpmESPatTr290SrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source port of a IPTV multicast group."
::= { wsRpmESPatTr290Entry 3 }
wsRpmESPatTr290DestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination port of a IPTV multicast group."
::= { wsRpmESPatTr290Entry 4 }
wsRpmESPatTr290PatErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of occurrences of sections with table_id 0x00 do not
occur at least every 0,5 second on PID 0x0000, or section with
table_id other than 0x00 found on PID 0x0000, or
scrambling_control_field is not 00 for PID 0x0000."
::= { wsRpmESPatTr290Entry 5 }
wsRpmESPatTr290CrcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CRC check for the PAT indicates whether the content of the
corresponding table is corrupted. In this case no further error
indication should be derived from the content of the
corresponding table."
::= { wsRpmESPatTr290Entry 6 }
wsRpmESPmt OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Group of PMT sections."
::= { wsRpmES 2 }
wsRpmESPmtTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmESPmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains PMT section's statistics for every IPTV group."
::= { wsRpmESPmt 1 }
wsRpmESPmtEntry OBJECT-TYPE
SYNTAX WsRpmESPmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries for each PAT section's statistics."
INDEX { wsRpmESPmtSrcAddr, wsRpmESPmtDestAddr,
wsRpmESPmtSrcPort, wsRpmESPmtDestPort,
wsRpmESPmtPid }
::= { wsRpmESPmtTable 1 }
WsRpmESPmtEntry ::= SEQUENCE {
wsRpmESPmtSrcAddr IpAddress,
wsRpmESPmtDestAddr IpAddress,
wsRpmESPmtSrcPort Unsigned32,
wsRpmESPmtDestPort Unsigned32,
wsRpmESPmtPid Unsigned32,
wsRpmESPmtBps Unsigned32,
wsRpmESPmtAge TimeTicks,
wsRpmESPmtBytes Counter32,
wsRpmESPmtInterCcErr Counter32,
wsRpmESPmtIntraCcErr Counter32,
wsRpmESPmtCcErrSum Counter32
}
wsRpmESPmtSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source IP address of a IPTV multicast group."
::= { wsRpmESPmtEntry 1 }
wsRpmESPmtDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination IP address of a IPTV multicast group."
::= { wsRpmESPmtEntry 2 }
wsRpmESPmtSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source port of a IPTV multicast group."
::= { wsRpmESPmtEntry 3 }
wsRpmESPmtDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination port of a IPTV multicast group."
::= { wsRpmESPmtEntry 4 }
wsRpmESPmtPid OBJECT-TYPE
SYNTAX Unsigned32 (0..8191)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PID number of the PMT section's elementary stream."
::= { wsRpmESPmtEntry 5 }
wsRpmESPmtBps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transport rate in bits/second of a PMT section."
::= { wsRpmESPmtEntry 6 }
wsRpmESPmtAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration of time since last seen data of PMT section."
::= { wsRpmESPmtEntry 7 }
wsRpmESPmtBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes of PMT section has been received."
::= { wsRpmESPmtEntry 8 }
wsRpmESPmtInterCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities of continuity_counter field for a
particular PMT elementary stream, which is happened between two
different IP packets."
::= { wsRpmESPmtEntry 9 }
wsRpmESPmtIntraCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities of continuity_counter field for a
particular PMT elementary stream, which is happened within one
IP packet."
::= { wsRpmESPmtEntry 10 }
wsRpmESPmtCcErrSum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error sum (wsRpmESPmtInterCcErr + wsRpmESPmtIntraCcErr)."
::= { wsRpmESPmtEntry 11 }
wsRpmESPmtTr290Table OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmESPmtTr290Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains other Qos metrics for PMT defined by the Tr 290."
::= { wsRpmESPmt 2 }
wsRpmESPmtTr290Entry OBJECT-TYPE
SYNTAX WsRpmESPmtTr290Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries for other Qos metrics for PMT defined by the Tr 290."
INDEX { wsRpmESPmtTr290SrcAddr, wsRpmESPmtTr290DestAddr,
wsRpmESPmtTr290SrcPort, wsRpmESPmtTr290DestPort,
wsRpmESPmtTr290Pid }
::= { wsRpmESPmtTr290Table 1 }
WsRpmESPmtTr290Entry ::= SEQUENCE {
wsRpmESPmtTr290SrcAddr IpAddress,
wsRpmESPmtTr290DestAddr IpAddress,
wsRpmESPmtTr290SrcPort Unsigned32,
wsRpmESPmtTr290DestPort Unsigned32,
wsRpmESPmtTr290Pid Unsigned32,
wsRpmESPmtTr290PmtErr Counter32,
wsRpmESPmtTr290CrcErr Counter32
}
wsRpmESPmtTr290SrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source IP address of a IPTV multicast group."
::= { wsRpmESPmtTr290Entry 1 }
wsRpmESPmtTr290DestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination IP address of a IPTV multicast group."
::= { wsRpmESPmtTr290Entry 2 }
wsRpmESPmtTr290SrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source port of a IPTV multicast group."
::= { wsRpmESPmtTr290Entry 3 }
wsRpmESPmtTr290DestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination port of a IPTV multicast group."
::= { wsRpmESPmtTr290Entry 4 }
wsRpmESPmtTr290Pid OBJECT-TYPE
SYNTAX Unsigned32 (0..8191)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PID number for PMT section's elementary stream."
-- INDEX { wsRpmGrpPmtEntry 1 }
::= { wsRpmESPmtTr290Entry 5 }
wsRpmESPmtTr290PmtErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of occurrences of PMT sections with table_id 0x00 do not
occur at least every 0,5 second on PID 0x0000, or section with
table_id other than 0x00 found on PID 0x0000, or
scrambling_control_field is not 00 for PID 0x0000."
::= { wsRpmESPmtTr290Entry 6 }
wsRpmESPmtTr290CrcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CRC check for the PMT indicates whether the content of the
corresponding table is corrupted. In this case no further error
indication should be derived from the content of the
corresponding table."
::= { wsRpmESPmtTr290Entry 7 }
wsRpmESVideo OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Groups for video elementary streams for all RPM multicast groups."
::= { wsRpmES 3 }
wsRpmESVideoTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmESVideoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains Qos metrics for all video elementary streams."
::= { wsRpmESVideo 1 }
wsRpmESVideoEntry OBJECT-TYPE
SYNTAX WsRpmESVideoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries for all video elementary streams."
INDEX { wsRpmESVideoSrcAddr, wsRpmESVideoDestAddr,
wsRpmESVideoSrcPort, wsRpmESVideoDestPort,
wsRpmESVideoPid }
::= { wsRpmESVideoTable 1 }
WsRpmESVideoEntry ::= SEQUENCE {
wsRpmESVideoSrcAddr IpAddress,
wsRpmESVideoDestAddr IpAddress,
wsRpmESVideoSrcPort Unsigned32,
wsRpmESVideoDestPort Unsigned32,
wsRpmESVideoPid Unsigned32,
wsRpmESVideoBps Unsigned32,
wsRpmESVideoAge TimeTicks,
wsRpmESVideoBytes Counter32,
wsRpmESVideoInterCcErr Counter32,
wsRpmESVideoIntraCcErr Counter32,
wsRpmESVideoPCRJitter Unsigned32,
wsRpmESVideoCcErrSum Counter32
}
wsRpmESVideoSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source IP address of a IPTV multicast group."
::= { wsRpmESVideoEntry 1 }
wsRpmESVideoDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination IP address of a IPTV multicast group."
::= { wsRpmESVideoEntry 2 }
wsRpmESVideoSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source port of a IPTV multicast group."
::= { wsRpmESVideoEntry 3 }
wsRpmESVideoDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination port of a IPTV multicast group."
::= { wsRpmESVideoEntry 4 }
wsRpmESVideoPid OBJECT-TYPE
SYNTAX Unsigned32 (0..8191)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PID number of a video elementary stream."
::= { wsRpmESVideoEntry 5 }
wsRpmESVideoBps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tranport rate in bytes per second of a video elementary stream."
::= { wsRpmESVideoEntry 6 }
wsRpmESVideoAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of time since last seen data of a video elementary stream."
::= { wsRpmESVideoEntry 7 }
wsRpmESVideoBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes of a video elementary stream that has been
received."
::= { wsRpmESVideoEntry 8 }
wsRpmESVideoInterCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities of continuity_counter field for a
particular video elementary stream, which is happened between two
different IP packets."
::= { wsRpmESVideoEntry 9 }
wsRpmESVideoIntraCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities of continuity_counter field for a
particular video elementary stream, which is happened within a
single IP packet."
::= { wsRpmESVideoEntry 10 }
wsRpmESVideoPCRJitter OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The jitter calculated using the PCR timestamp built in a video
elementary stream."
::= { wsRpmESVideoEntry 11 }
wsRpmESVideoCcErrSum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error sum (wsRpmESVideoInterCcErr + wsRpmESVideoIntraCcErr)."
::= { wsRpmESVideoEntry 12 }
wsRpmESVideoPicTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmESVideoPicEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains other Qos metrics for video pictures."
::= { wsRpmESVideo 2 }
wsRpmESVideoPicEntry OBJECT-TYPE
SYNTAX WsRpmESVideoPicEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries for Qos metrics for video pictures."
INDEX { wsRpmESVideoPicSrcAddr, wsRpmESVideoPicDestAddr,
wsRpmESVideoPicSrcPort, wsRpmESVideoPicDestPort,
wsRpmESVideoPicPid }
::= { wsRpmESVideoPicTable 1 }
WsRpmESVideoPicEntry ::= SEQUENCE {
wsRpmESVideoPicSrcAddr IpAddress,
wsRpmESVideoPicDestAddr IpAddress,
wsRpmESVideoPicSrcPort Unsigned32,
wsRpmESVideoPicDestPort Unsigned32,
wsRpmESVideoPicPid Unsigned32,
wsRpmESVideoPicTsLossInIframe Counter32,
wsRpmESVideoPicImpairedIframe Counter32,
wsRpmESVideoPicGoodIframe Counter32,
wsRpmESVideoPicTsLossInPframe Counter32,
wsRpmESVideoPicImpairedPframe Counter32,
wsRpmESVideoPicGoodPframe Counter32,
wsRpmESVideoPicTsLossInBframe Counter32,
wsRpmESVideoPicImpairedBframe Counter32,
wsRpmESVideoPicGoodBframe Counter32
}
wsRpmESVideoPicSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source IP address of a IPTV multicast group."
::= { wsRpmESVideoPicEntry 1 }
wsRpmESVideoPicDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination IP address of a IPTV multicast group."
::= { wsRpmESVideoPicEntry 2 }
wsRpmESVideoPicSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source port of a IPTV multicast group."
::= { wsRpmESVideoPicEntry 3 }
wsRpmESVideoPicDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination port of a IPTV multicast group."
::= { wsRpmESVideoPicEntry 4 }
wsRpmESVideoPicPid OBJECT-TYPE
SYNTAX Unsigned32 (0..8191)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PID number of the video elementary stream."
::= { wsRpmESVideoPicEntry 5 }
wsRpmESVideoPicTsLossInIframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times that transport stream packet losses happened in
I-frames."
::= { wsRpmESVideoPicEntry 6 }
wsRpmESVideoPicImpairedIframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of I-frames that have transport stream packet losses."
::= { wsRpmESVideoPicEntry 7 }
wsRpmESVideoPicGoodIframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of I-frames that don't have any loss."
::= { wsRpmESVideoPicEntry 8 }
wsRpmESVideoPicTsLossInPframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times that transport stream packet losses happened in
P-frames."
::= { wsRpmESVideoPicEntry 9 }
wsRpmESVideoPicImpairedPframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P-frames that have transport stream packet losses."
::= { wsRpmESVideoPicEntry 10 }
wsRpmESVideoPicGoodPframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P-frames that don't have any transport stream packet loss."
::= { wsRpmESVideoPicEntry 11 }
wsRpmESVideoPicTsLossInBframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times that transport stream packet losses happened in
B-frames."
::= { wsRpmESVideoPicEntry 12 }
wsRpmESVideoPicImpairedBframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of B-frames that have transport stream packet losses."
::= { wsRpmESVideoPicEntry 13 }
wsRpmESVideoPicGoodBframe OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of B-frames that don't have any transport stream packet loss."
::= { wsRpmESVideoPicEntry 14 }
wsRpmESAudio OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Groups for audio elementary streams for all RPM multicast groups."
::= { wsRpmES 4 }
wsRpmESAudioTable OBJECT-TYPE
SYNTAX SEQUENCE OF WsRpmESAudioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing QoS metrics for all audio elementary streams."
::= { wsRpmESAudio 1 }
wsRpmESAudioEntry OBJECT-TYPE
SYNTAX WsRpmESAudioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries for all audio elementary streams."
INDEX { wsRpmESAudioSrcAddr, wsRpmESAudioDestAddr,
wsRpmESAudioSrcPort, wsRpmESAudioDestPort,
wsRpmESAudioPid }
::= { wsRpmESAudioTable 1 }
WsRpmESAudioEntry ::= SEQUENCE {
wsRpmESAudioSrcAddr IpAddress,
wsRpmESAudioDestAddr IpAddress,
wsRpmESAudioSrcPort Unsigned32,
wsRpmESAudioDestPort Unsigned32,
wsRpmESAudioPid Unsigned32,
wsRpmESAudioBps Unsigned32,
wsRpmESAudioAge TimeTicks,
wsRpmESAudioBytes Counter32,
wsRpmESAudioInterCcErr Counter32,
wsRpmESAudioIntraCcErr Counter32,
wsRpmESAudioCcErrSum Counter32
}
wsRpmESAudioSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source IP address of an IPTV audio multicast group."
::= { wsRpmESAudioEntry 1 }
wsRpmESAudioDestAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination IP address of an IPTV audio multicast group."
::= { wsRpmESAudioEntry 2 }
wsRpmESAudioSrcPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Source port of an IPTV audio multicast group."
::= { wsRpmESAudioEntry 3 }
wsRpmESAudioDestPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Destination port of an IPTV audio multicast group."
::= { wsRpmESAudioEntry 4 }
wsRpmESAudioPid OBJECT-TYPE
SYNTAX Unsigned32 (0..8191)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PID number of the audio elementary stream."
::= { wsRpmESAudioEntry 5 }
wsRpmESAudioBps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tranport rate in bytes per second of an audio elementary stream."
::= { wsRpmESAudioEntry 6 }
wsRpmESAudioAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Elapsed time since last occurence of data from this audio elementary stream."
::= { wsRpmESAudioEntry 7 }
wsRpmESAudioBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of data in bytes of this audio elementary stream that have been received."
::= { wsRpmESAudioEntry 8 }
wsRpmESAudioInterCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities in the continuity_counter field for this
audio elementary stream, which has occurred between two subsequent IP packets."
::= { wsRpmESAudioEntry 9 }
wsRpmESAudioIntraCcErr OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discontinuities in the continuity_counter field for this
audio elementary stream, which has occurred within a single IP packet."
::= { wsRpmESAudioEntry 10 }
wsRpmESAudioCcErrSum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error sum (wsRpmESAudioInterCcErr + wsRpmESAudioIntraCcErr)."
::= { wsRpmESAudioEntry 11 }
--
-- RPM related configuration
--
wsRpmConfig OBJECT IDENTIFIER ::= { wsRpm 5 }
wsRpmTrapEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provides control over if send rpm related traps, by default it is
disabled."
::= { wsRpmConfig 1 }
wsRpmLogEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provides control over if send rpm related log, by default it is
disabled."
::= { wsRpmConfig 2 }
wsRpmThresholdConfig OBJECT IDENTIFIER ::= { wsRpmConfig 3 }
wsRpmRtpSeqErrThreshold OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP sequence error packet event threshold(in packets)."
::= { wsRpmThresholdConfig 1 }
wsRpmRtpJitterThreshold OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP packet jitter threshold (in micro seconds)."
::= { wsRpmThresholdConfig 2 }
wsRpmTSMpegMissSyncThreshold OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transport stream missing-sync packet event threshold (in packets)."
::= { wsRpmThresholdConfig 3 }
wsRpmTSMpegMisalignThreshold OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transport stream misalign packet event threshold (in packets)."
::= { wsRpmThresholdConfig 4 }
wsRpmPeriodConfig OBJECT IDENTIFIER ::= { wsRpmConfig 4 }
wsRpmRtpSeqErrPeriod OBJECT-TYPE
SYNTAX Integer32 (0..604800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP sequence error packet event detect period(in seconds), set a
value of 0 will stop sequence error event detection."
::= { wsRpmPeriodConfig 1 }
wsRpmRtpJitterPeriod OBJECT-TYPE
SYNTAX Integer32 (0..604800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP packet jitter event detect period(in seconds), set a value of 0
will stop packet jitter event detection."
::= { wsRpmPeriodConfig 2 }
wsRpmTSMpegMissSyncPeriod OBJECT-TYPE
SYNTAX Integer32 (0..604800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transport stream missing-sync packet event detect period (in
seconds), set a value of 0 will stop missing-sync packet event
detection."
::= { wsRpmPeriodConfig 3 }
wsRpmTSMpegMisalignPeriod OBJECT-TYPE
SYNTAX Integer32 (0..604800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Transport stream misalign packet event detect period (in seconds),
set a value of 0 will stop misalign packet event detection."
::= { wsRpmPeriodConfig 4 }
--
-- RPM related notifications
--
wsRpmNotifications OBJECT IDENTIFIER ::= { wsRpm 0 }
notifyWsRpmRtpSeqError NOTIFICATION-TYPE
OBJECTS { wsRpmGrpRtpPeriodSeqErrors, wsRpmRtpSeqErrThreshold,
wsRpmRtpSeqErrPeriod
}
STATUS current
DESCRIPTION
"RTP packet sequence error trap, which is sent when RTP packet
drops of a specific group reaches wsRpmRtpSeqErrThreshold in
period wsRpmRtpSeqErrPeriod."
::= { wsRpmNotifications 1 }
notifyWsRpmRtpJitter NOTIFICATION-TYPE
OBJECTS { wsRpmGrpRtpPeriodMaxJitter, wsRpmRtpJitterThreshold,
wsRpmRtpJitterPeriod
}
STATUS current
DESCRIPTION
"RTP packet jitter trap, which is sent when max packet jitter of
a specific multicast group reaches wsRpmRtpJitterThreshold in
period wsRpmRtpJitterPeriod."
::= { wsRpmNotifications 2 }
notifyWsRpmTSMpegMissSync NOTIFICATION-TYPE
OBJECTS { wsRpmTSMpegPeriodMissingSync, wsRpmTSMpegMissSyncThreshold,
wsRpmTSMpegMissSyncPeriod
}
STATUS current
DESCRIPTION
"Transport stream missing-sync trap, which is sent when the
numbers of missing-sync packet of a specific multicast group
reaches wsRpmTSMpegMissSyncThreshold in period
wsRpmTSMpegMissSyncPeriod."
::= { wsRpmNotifications 3 }
notifyWsRpmTSMpegMisalign NOTIFICATION-TYPE
OBJECTS { wsRpmTSMpegPeriodMisalignments, wsRpmTSMpegMisalignThreshold,
wsRpmTSMpegMisalignPeriod
}
STATUS current
DESCRIPTION
"Transport stream misalign trap, which is sent when the numbers
of misalign packet of a specific multicast group reaches
wsRpmTSMpegMisalignThreshold in period wsRpmTSMpegMisalignPeriod."
::= { wsRpmNotifications 4 }
END
|