summaryrefslogtreecommitdiffstats
path: root/docs/files/VESEventRegistration_3_0.rst
blob: 35a017ce71424fcd1d8d20b5ef9eed055435803f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
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
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
.. Copyright 2017-2018 AT&T Intellectual Property, All rights reserved
.. Copyright 2017-2018 Huawei Technologies Co., Ltd.

===================================
Addendum: *VES Event Registration*
===================================

.. contents:: Table of Contents


Introduction
============

This document specifies a YAML format for the registration of VES
Events. The YAML format enables both human designers and applications to
parse and understand the fields that will be sent by event sources in
conjunction with specific types of events, which are identified by their
eventNames.

The semantics of the YAML format are easily extensible to accommodate
processing needs that may arise in the future. Among the types of
information specified in the YAML are field optionality, restrictions on
field values, and event handling recommendations and requirements.

This document should be read in conjunction with the VES Event Listener
service specification, which defines the Common Event Format and
introduces the concept of specific types of events, identified by
eventNames.

Audience
--------

This document is intended to support the following groups:

-  VNF Vendors

-  Service Provider (e.g., AT&T) Teams responsible for deploying VNFs
   within their infrastructure

VNF vendors will provide a YAML file to the Service Provider that
describes the events that their VNFs generate. Using the semantics and
syntax supported by YAML, vendors will indicate specific conditions that
may arise, and recommend actions that should be taken at specific
thresholds, or if specific conditions repeat within a specified time
interval.

Based on the vendor’s recommendations, the Service Provider may create
another YAML, which finalizes their engineering rules for the processing
of the vendor’s events. The Service Provider may alter the threshold
levels recommended by the vendor, and may modify and more clearly
specify actions that should be taken when specified conditions arise.
The Service Provided-created version of the YAML will be distributed to
Service Provider applications at design time.

Goal
----

The goal of the YAML is to completely describe the processing of VNF
events in a way that can be compiled or interpreted by applications
across a Service Provider’s infrastructure.

Relation to the Common Event Format
-----------------------------------

The Common Event Format described in the VES Event Listener service
specification defines the structure of VES events including optional
fields that may be provided.

Specific eventNames registered by the YAML (e.g., an InvalidLicense
fault), may require that certain fields, which are optional in the
Common Event Format, be present when events with that eventName are
published. For example, a fault eventName which communicates an
‘InvalidLicense’ condition, may be registered to require that the
configured ‘licenseKey’ be provided as a name-value pair in the Common
Event Format’s ‘additionalFields’ structure, within the ‘faultFields’
block. Anytime an ‘InvalidLicense’ fault event is detected, designers,
applications and microservices across the Service Provider’s
infrastructure can count on that name-value pair being present.

The YAML registration may also restrict ranges or enumerations defined
in the Common Event Format. For example, eventSeverity is an enumerated
string within the Common Event Format with several values ranging from
‘NORMAL’ to ‘CRITICAL’. The YAML registration for a particular eventName
may require that it always be sent with eventSeverity set to a single
value (e.g., ‘MINOR’), or to a subset of the possible enumerated values
allowed by the Common Event Format (e.g., ‘MINOR’ or ‘NORMAL’).

Relation to Service Design and Creation
---------------------------------------

Event registration for a VNF (or other event source) is provided to the
Service Provider’s Service Creation and Design Environment (e.g., SDC)
as a set of two YAML files consisting of the vendor recommendation YAML
and (optionally) the final Service Provider YAML. These YAML files
describe all the eventNames that that VNF (or other event source)
generates.

Once their events are registered, the Service Creation and Design
Environment can then list the registered eventNames (e.g., as a drop
down list), for each VNF or other event source (e.g., a service), and
enable designers to study the YAML registrations for specific
eventNames. YAML registrations are both human readable and machine
readable.

The final Service Provider YAML is a type of Service Design and Creation
‘artifact’, which can be distributed to Service Provider applications at
design time: notably, to applications involved in the collection and
processing of VNF events. It can be parsed by those applications so they
can support the receipt and processing of VNF events, without the need
for any manual, VNF-specific development.

YAML Files
==========

YAML Specification Conformance
------------------------------

YAML files should conform to version 1.2 of the YAML specification
available at: http://yaml.org/spec/1.2/spec.html.

Filename
--------

YAML file names should conform to the following naming convention:

   {NamingCode}_{ModelType}_{v#}_{AdditionalInfo}.yml

The NamingCode identifies the entity, whose events are being registered
in the yaml, with a naming code that was established in the Service
Providers’ Service Design and Creation Environment (SDC). Example Naming
codes are:

-  tbcx

-  sgsn-mme

The ModelType describes the type of entity whose events are being
registered. It consists of values like:

-  service

-  vfModule

-  vnf

-  vnfc

The ‘#’ should be replaced with the current numbered version of the
file. Note that ‘#’ can be an integer or a number of the form x.y or
x.y.z (where x is the major number, y is the minor number and z is the
patch number)

Additional descriptive info may be added after the version information

Example file name:

-  vIsbcSsc_vnfc_v1.yml

File Structure
--------------

Each eventType is registered as a distinct YAML ‘document’.

YAML files consist of a series of YAML documents delimited by ‘---‘ and
‘…’ for example:

   ---

   # Event Registration for eventName ‘name1’

   # details omitted

   ...

   ---

   # Event Registration for eventName ‘name2’

   # details omitted

   ...

   ---

   # Event Registration for eventName ‘name3’

   # details omitted

   ...

YAML Syntax and Semantics
=========================

YAML registration documents show each relevant VES Common Event Model
object and field (i.e., each element) for the eventName being
registered, including any extensible fields (e.g., specific name-value
pairs).

Qualifiers
----------

Each object or field name in the eventName being registered is followed
by a ‘qualifier’, which consists of a colon and two curly braces, for
example:

   “objectOrFieldName: { }”

The curly braces contain meta-information about that object or field
name (also known as the ‘element’), such as whether it is required to be
present, what values it may have, what handling it should trigger, etc…

Semantics have been defined for the following types of meta-information
within the curly braces:

Action
~~~~~~

The ‘action’ keyword may be applied to field values or to the event as a
whole. The ‘action’ keyword specifies a set of actions that should be
taken if a specified trigger occurs. For example, the ‘action’ keyword
may specify that a threshold crossing alert (i.e., tca) be generated,
and/or that a specific microservice handler be invoked, and/or that a
specific named-condition be asserted. In the Rules section of the YAML
file, tca’s and microservices may be defined on individual
named-conditions or on logical combinations of named-conditions.

The ‘action:’ keyword is followed by five values in square brackets. The
first two values communicate the trigger, and the last three values
communicate the actions to be taken if that trigger occurs:

1. The first value conveys the trigger level. If the field on which the
   action is defined reaches or passes through that level, then the
   trigger fires. If a specific level is not important to the
   recommended action, the ‘any’ keyword may be used as the first value.
   (Note: ‘any’ is often used when an action is defined on the ‘event’
   structure as a whole).

2. The second value indicates the direction of traversal of the level
   specified in the first value. The second value may be ‘up’, ‘down’,
   ‘at’ or ‘any’. ‘any’ is used if the direction of traversal is not
   important. ‘at’ implies that it traversed (or exactly attained) the
   trigger level but it doesn’t matter if the traversal was in the up
   direction or down direction. Note: If ‘up’, ‘down’ or ‘at’ are used,
   the implication is that the microservices processing the events
   within the service provider are maintaining state (e.g., to know that
   a measurement field traversed a trigger level in an ‘up’ direction,
   the microservice would have to know that the field was previously
   below the trigger level). When initially implementing support for
   YAML actions, a service provider may choose to use and interpret
   these keywords in a simpler way to eliminate the need to handle
   state. Specifically, they may choose to define and interpret all ‘up’
   guidance to mean ‘at the indicated trigger level or greater’, and
   they may choose to define and interpret all ‘down’ guidance to mean
   ‘at the indicated trigger level or lower’.

3. The third value optionally names the condition that has been attained
   when the triggers fires (e.g., ‘invalidLicence’ or
   ‘capacityExhaustion’). Named-conditions should be expressed in camel
   case with no underscores, hyphens or spaces and with the first letter
   in lowercase. In the Rules section of the YAML file, named-conditions
   may be used to specify events that should be generated and/or
   microservices that should be invoked. If it is not important to name
   a condition, then the string ‘null’ (without the quotes) must be used
   as the third value.

4. The fourth value recommends a specific microservice (e.g., ‘rebootVm’
   or ‘rebuildVnf’) supported by the Service Provider, be invoked if the
   trigger is attained. Design time processing of the YAML by the
   service provider can use these directives to automatically establish
   policies and configure flows that need to be in place to support the
   recommended runtime behavior.

..

   If a vendor wants to recommend an action, it can either work with the
   service provider to identify and specify microservices that the
   service provider support, or, the vendor may simply indicate and
   recommend a generic microservice function by prefixing ‘RECO-’ in
   front of the microservice name, which should be expressed in upper
   camel case with no underscores, hyphens or spaces.

   A fourth value must be provided. If not needed, the string ‘null’
   (without the quotes) must be used.

5. The fifth value indicates a specific named event (e.g., a TCA) that
   should be generated if the trigger occurs. This field must be
   provided as a VES eventName or, if not needed, as the string ‘null’
   (without the quotes).

..

   When an event is specified, a YAML registration for that eventName
   should be added to the event registrations within the YAML file.

Examples:

-  event: { action: [ any, any, null, rebootVm, null ] }

..

   # whenever the above event occurs, the VM should be rebooted

-  fieldname: { action: [ 80, up, null, null, tcaUpEventName ], action:
      [ 60, down, overcapacity, null, null ] }

..

   # when the value of fieldname crosses 80 in an up direction,
   tcaUpEventName

   should be published; if the fieldname crosses 60 in a down direction
   an

   ‘overCapacity’ named-condition is asserted.

AggregationRole
~~~~~~~~~~~~~~~

The ‘aggregationRole’ keyword is applied to a keyValuePair.

AggregationRole may be set to one of the following:

-  cumulativeCounter

-  gauge

-  index

-  reference

“index” identifies a field as an index or a key for aggregation.

“reference” fields have values that typically do not change over
consecutive collection intervals.

“gauge” values may fluctuate from one collection interval to the next,
i.e., increase or decrease.

“cumulativeCounter” values keep incrementing regardless of collection
interval boundaries until they overflow, i.e., until they exceed a
maximum value specified by design. Typically, delta calculation is
needed based on two cumulativeCounter values over two consecutive
collection intervals.

If needed, the aggergationRole setting tells the receiving event
processor how to aggregate the extensible keyValuePair data. Data
aggregation may use a combination of ‘index’ and ‘reference’ data fields
as aggregation keys while applying aggregation formulas, such as
summation or average on the ‘gauge’ fields.

Example 1:

   Interpretation of the below: If additionalMeasurements is supplied,
   it must have key name1 and name1’s value should be interpreted as an
   index:

-  additionalMeasurements: {presence: optional, structure: {

..

   keyValuePair: {presence: required, structure: {

   key: {presence: required, value: name1},

   value: {presence: required, aggregationRole: index }

   }},

   . . .

   }}

Example 2:

-  Let’s say a vnf wants to send the following ‘TunnelTraffic’ fields
      through a VES arrayOfNamedHashMap structure (specifically through
      additionalMeasurements in the VES measurementField block):

+-------------+-------------+-------------+-------------+-------------+
| Tunnel Name | Tunnel Type | Total       | Total       | Total       |
|             |             | Output      | Output      | Output      |
|             |             | Bytes       | Packets     | Errors      |
+=============+=============+=============+=============+=============+
| ST6WA21CRS: | PRIMARY     | 2457205     | 21505       | 0           |
| TUNNEL-TE40 |             |             |             |             |
| 018         |             |             |             |             |
+-------------+-------------+-------------+-------------+-------------+
| ST6WA21CRS: | PRIMARY     | 46677       | 220         | 0           |
| TUNNEL-TE10 |             |             |             |             |
| 29          |             |             |             |             |
+-------------+-------------+-------------+-------------+-------------+
| ST6WA21CRS: | PRIMARY     | 80346       | 577         | 0           |
| TUNNEL-TE10 |             |             |             |             |
| 28          |             |             |             |             |
+-------------+-------------+-------------+-------------+-------------+

-  Tunnel Name is an index, Tunnel Type is reference data and the other
      three columns are counters

-  The first three columns would be sent through VES as follows:

additionalMeasurements: { presence: required, array: [

namedHashMap: { presence: required, structure: {

name: { presence: required, value: "TunnelTraffic" },

hashMap: { presence: required, array: [

keyValuePair: { presence: required, aggregationRole: index, structure: {

key: { presence: required, value: TunnelName },

value: { presence: required }

}},

keyValuePair: { presence: required, aggregationRole: reference,
structure: {

key: { presence: required, value: TunnelType },

value: { presence: required }

}},

keyValuePair: { presence: required, aggregationRole: cumulativeCounter,

structure: {

key: { presence: required, value: TotalOutputBytes },

value: { presence: required, castTo: integer }

}}

]}

}}

]}

Array
~~~~~

The ‘array’ keyword indicates that the element is an array; ‘array:’ is
following by square brackets which contain the elements of the array.
Note that unlike JSON itself, the YAML registration will explicitly
declare the array elements and will not communicate them anonymously.

Examples:

-  element: { array: [

..

   firstArrayElement: { },

   secondArrayElement: { }

   ] }

CastTo
~~~~~~

The ‘castTo’ keyword is applied to ‘value’ keywords. It tells the
receiving event processor to cast (or interpret) the supplied value from
its standard VES datatype (typically a string) to some other datatype.
If not supplied the implication is the standard VES datatype applies.

A value may be castTo one and only one of the following data types:

-  boolean

-  integer

-  number (note: this supports decimal values as well as integral
      values)

-  string

Example:

-  fieldname: { value: [ x, y, z ], castTo: number } # only values ‘x’,
      ‘y’, or ‘z’ allowed

..

   # each must be cast to a number

-  additionalMeasurements: {presence: optional, structure: {

..

   keyValuePair: {presence: required, structure: { # if
   additionalMeasurements is

   key: {presence: required, value: name1}, # supplied, it must have key
   ‘name1’

   value: {presence: required, castTo: integer} # its value must be cast
   to integer

   }}

   }}

   For another example, see the second example under AggregationRole.

Comment
~~~~~~~

The ‘comment’ keyword enables event registrations to communicate
additional information, in the form of a quoted string, to designers
consuming the event registration. Such additional information might
convey meaning, instructions or potential effects associated with
particular fields or with the event as a whole.

Examples:

-  fieldname: { range: [ 1, unbounded ], default: 5, comment: “needs
      further diagnosis; call the TAC” }

-  fieldname: { value: [ red, white, blue ], default: blue, comment:
      “red indicates degraded quality of service” }

-  event: { presence: required, comment: “this event only occurs in
      conditions when the ipq has stopped operating; manual reset may be
      required”, structure: { . . . } }

Default
~~~~~~~

The ‘default’ keyword specifies a default field value. Note: the default
value must be within the range or enumeration of acceptable values.

Examples:

-  fieldname: { range: [ 1, unbounded ], default: 5 }

-  fieldname: { value: [ red, white, blue ], default: blue }

HeartbeatAction
~~~~~~~~~~~~~~~

The ‘heartbeatAction’ keyword is provided on the ‘event’ objectName for
heartbeat events only. It provides design time guidance to the service
provider’s heartbeat processing applications (i.e., their watchdog
timers). The syntax and semantics of the ‘heartbeatAction’ keyword are
similar to the ‘action’ keyword except the trigger is specified by the
first field only instead of the first two fields. When the
‘heartbeatAction’ keyword is indicated, the first field is an integer
indicating the number of successively missed heartbeat events. Should
that trigger occur, the remaining fields have the same order, meaning
and optionality as those described for the ‘action’ keyword.

Examples:

-  event: { heartbeatAction: [ 3, vnfDown, RECO-rebootVnf, tcaEventName
      ] }

..

   # whenever the above event occurs, a vnfDown condition is asserted
   and the vnf should be rebooted, plus the indicated tca should be
   generated.

key
~~~

The ‘key’ keyword describes a specific key as part of a key-value pair
that may be sent within a keyValuePair keyword (see ‘keyValuePair’
keyword for more explanation and examples).

keyValuePair
~~~~~~~~~~~~

The ‘keyValuePair’ keyword describes a specific key-value pair that may
be sent within a hashMap structure (i.e., a VES field with the hashMap
datatype) or a keyValuePairString structure (see the keyValuePairString
keyword for more information).

Within keyValuePair is a single ‘key’ and a single ‘value’ keyword, each
of which may be decorated with other keywords specified in this document
(e.g., with ‘presence’, ‘range’ and other relevant keywords).

Examples:

-  The following specifies an additionalInformation field within VES,
      which is of type hashMap:

..

   additionalInformation: {presence: optional, structure: {

   keyValuePair: {presence: required, structure: {

   key: {presence: required, value: name1},

   value: {presence: required}

   }},

   keyValuePair: {presence: optional, structure: {

   key: {presence: required, value: name2},

   value: {presence: required}

   }}

   }}

keyValuePairString
~~~~~~~~~~~~~~~~~~

The ‘keyValuePairString’ keyword describes the key-value pairs to be
communicated through a string (e.g., in the VES Syslog Fields
‘syslogSData’ or ‘additionalFields’ strings). This keyword takes three
parameters:

-  the first parameter specifies the character used to delimit (i.e., to
      separate) the key-value pairs. If a space is used as a delimiter,
      it should be communicated within single quotes as ‘ ‘; otherwise,
      the delimiter character should be provided without any quotes.

-  The second parameter specifies the characters used to separate the
      keys and values. If a space is used as a separator, it should be
      communicated within single quotes as ‘ ‘; otherwise, the separator
      character should be provided without any quotes.

-  The third parameter is a “sub-keyword” (i.e., it is used only within
      ‘keyValuePairString’) called ‘keyValuePairs: [ ]’. Within the
      square brackets, a list of ‘keyValuePair’ keywords can be provided
      (see the ‘keyValuePair keyword for more information).

Examples:

-  The following specifies an additionalFields string which is stuffed
      with ‘key=value’ pairs delimited by the pipe (‘|’) symbol as in
      (“key1=value1|key2=value2|key3=value3…”).

additionalFields: {presence: required, keyValuePairString: {|, =,
keyValuePairs: [

keyValuePair: {presence: required, structure: {

key: {presence: required, value: someKeyName},

value: {presence: required, range: [0, 100]}

} },

keyValuePair: {presence: optional, structure: {

key: {presence: required, value: someOtherKeyName},

value: {presence: required, value [red, white, blue]}

} }

] } }

Presence
~~~~~~~~

The ‘presence’ keyword may be defined as ‘required’ or ‘optional’. If
not provided, the element is assumed to be ‘optional’.

Examples

-  element: { presence: required } # element must be present

-  element: { presence: optional } # element is optional

-  element: { value: blue } # by omitting a presence definition, the

..

   element is assumed to be optional

Range
~~~~~

The ‘range’ keyword applies to fields (i.e., simpleTypes); indicates the
value of the field is a number within a specified range of values from
low to high (inclusive of the indicated values). . ‘range:’ is followed
by two parameters in square brackets:

-  the first parameter conveys the minimum value

-  the second parameter conveys the maximum value or ‘unbounded’

The keyword ‘unbounded’ is supported to convey an unbounded upper limit.
Note that the range cannot override any restrictions defined in the VES
Common Event Format.

Examples:

-  fieldname: { range: [ 1, unbounded ] }

-  fieldname: { range: [ 0, 3.14 ] }

Structure
~~~~~~~~~

The ‘structure’ keyword indicates that the element is a complexType
(i.e., an object) and is followed by curly braces containing that
object.

Example:

-  objectName: { structure: {

element1: { },

element2: { },

anotherObject: { structure: {

element3: { },

element4: { }

} }

} }

Units
~~~~~

The ‘units’ qualifier may be applied to values provided in VES Common
Event Format extensible field structures. The ‘units’ qualifier
communicates the units (e.g., megabytes, seconds, Hz) that the value is
expressed in. Note: the ‘units’ should not contain any space characters
and should be expressed in camel casing (e.g., use ‘numberOfPorts’, not
‘number_of_ports’ nor ‘number of ports’).

Example:

-  additionalInformation: { presence: optional, structure: {

keyValuePair: {presence: required, structure: {

key: {presence: required, value: pilotNumberPoolSize},

value: {presence: required, units: megaBytes}

}}

}}

Value
~~~~~

The ‘value’ keyword applies to fields (i.e., simpleTypes); indicates a
single value or an enumeration of possible values. If not provided, it
is assumed the value will be determined at runtime. Note that the
declared value cannot be inconsistent with restrictions defined in the
VES Common Event Format (e.g., it cannot add an enumerated value to an
enumeration defined in the Common Event Format, but it can subset the
defined enumerations in the Common Event Format).

Values that are strings containing spaces should always be indicated in
single quotes.

Examples:

-  fieldname: { value: x } # the value is ‘x’

-  fieldname: { value: [ x, y, z ] } # the value is either ‘x’, ‘y’, or
      ‘z’

-  fieldname: { presence: required } # the value will be provided at
      runtime

-  fieldname: { value: ‘error state’ } # the value is the string within
      the single quotes

Complex Conditions
------------------

Conditions Document
~~~~~~~~~~~~~~~~~~~

After all events have been defined, the YAML file may provide a YAML
document delimited by ‘---‘ and ‘…’, which specifies complex conditions
defined in terms of other conditions, which were asserted in the action
qualifiers of the preceding event definitions. For example:

   ---

   # Event Registration for eventName ‘name1’

   event: {presence: required, action: [any, any, A, null], structure: {

   # details omitted

   }}

   ...

   ---

   # Event Registration for eventName ‘name2’

   event: {presence: required, structure: {

   commonEventHeader: {presence: required, structure: {

   # details omitted

   }}

   measurementFields: {presence: required, structure: {

cpuUsageArray: {presence: required, array: [

cpuUsage: {presence: required, structure: {

cpuIdentifier: {presence: required},

percentUsage: {presence: required, action: [90, up, B, null]}

}}

]},

# details omitted

   }}

   }}

   ...

   ---

   # Complex Conditions

   conditions: [

   conditionC: { defined in terms of A and B, details omitted },

   conditionD: { defined in terms of A, B and C details omitted }

   ]

   ...

Conditions Syntax and Semantics
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The YAML ‘conditions’ document begins with the keyword ‘conditions’
followed by a colon and square brackets. Each condition is then defined
within the square brackets. Commas are used to separate conditions.

Each condition is expressed as follows:

conditionName: *logical expression in terms of other conditions*

Logical Expressions
~~~~~~~~~~~~~~~~~~~

The following logical operators are supported:

-  &&: which is a logical AND

-  \||, which is a logical OR

In addition parentheses may be used to group expressions.

Example logical expression:

   (A && B) \|\| (C && D)

Where A, B, C and D are named conditions expressed earlier in the YAML
file.

Because YAML doesn’t support the above operators, the whole expression
needs to be enclosed in double quotes.

Example for a condition named ‘ConditionP’:

---

conditions: [

conditionP: "B \|\| (C && D)"

]

...

Alternatively, Logical ORs and ANDs can be expressed using a syntax
defined by `metacpan.org <https://metacpan.org/pod/YAML::Logic>`__ for
Perl. Using this syntax, the example above looks like this:

---

conditions: [

conditionP: [or, [B, [and, [C, D]]]]

]

...

In the above syntax, both ORs and ANDs are provided as two nested
arrays, where the outer array consists of two items:

-  The desired operator as either ‘or’ or ‘and’

-  The inner array which consists of the conditions to be OR’d or AND’d
   together

Note1: more than two conditions may be or’d or and’d (e.g., “B \|\| C
\|\| D” or “B && C && D”)

Note2: however expressed by YAML, parsers must be developed to make use
of the above expressions.

Time Based Qualifiers
~~~~~~~~~~~~~~~~~~~~~

Time based rules may be established using a timing keyword as follows:

---

conditions: [

PersistentB1: {

timing: {

condition: B,

occurrences: 3,

interval: 300,

units: seconds

}

}

]

...

This means that if condition B occurs 3 (or more) times in 300 seconds
(e.g., 5 minutes), then condition ‘PersistentB1’ has occurred.

Array Item Qualifiers
~~~~~~~~~~~~~~~~~~~~~

This ‘arrayItems’ keyword defines conditions evaluated across the items
in an array. In the example below, the condition is named ‘AnyOfC’:

---

conditions: [

AnyOfC: {

arrayItems: {

condition: C,

arrayItem: measurements.cpuUsageArray.cpuUsage,

scope: anyOf

}

}

]

...

This means that if condition C occurs on any cpuUsage structure within
the cpuUsageArray, then the condition ‘AnyOfC’ is in effect.

Note the dotted notation used to convey the path to the arrayItem with
respect to the encapsulating domain field block.

Scope may have the values ‘anyOf’ or ‘allOf’

Mathematical Expressions
~~~~~~~~~~~~~~~~~~~~~~~~

Mathematical expressions evaluate to a number, using ‘(‘, ‘)’, ‘+’, ‘-‘,
‘*’, ‘/’ and variables of the form $variablePath where the variablePath
is defined with respect to the encapsulating domain field block.

Mathematical expressions are specified as "${mathematicalExpress}".
Because YAML does not support mathematical operators, the expressions
must be enclosed within double quotes.

---

conditions: [

PersistentB2: {

timing: {

condition: B,

occurrences: 3,

interval: "${60 \* $measurements.measurementInterval}",

units: seconds

}

}

]

...

This means that if condition B occurs 3 (or more) times in an interval
defined by 60 times the measurementInterval (e.g., if the
measurementInterval was expressed in seconds as 5, then this would
evaluate to 300), then condition ‘PersistentB2’ is in effect.

Rules
-----

Rules Document
~~~~~~~~~~~~~~

After all events and conditions have been defined, the YAML file may
conclude with a final YAML document delimited by ‘---‘ and ‘…’, which
defines rules based on the named ‘conditions’ asserted previously. For
example:

   ---

   # Event Registration for eventName ‘name1’

   event: {presence: required, action: [any, any, A, null], structure: {

   # details omitted

   }}

   ...

   ---

   # Event Registration for eventName ‘name2’

   event: {presence: required, structure: {

   commonEventHeader: {presence: required, structure: {

   # details omitted

   }}

   measurementFields: {presence: required, structure: {

cpuUsageArray: {presence: required, array: [

cpuUsage: {presence: required, structure: {

cpuIdentifier: {presence: required},

percentUsage: {presence: required, action: [90, up, B, null]}

}}

]},

# details omitted

   }}

   }}

   ...

   ---

   # Complex Conditions

   conditions: [

   C: { details omitted }

   ]

   ...

   ---

   # Rules

   rules: [

   # defined based on conditions ‘A’, ‘B’ and ‘C’ - details omitted

   ]

   ...

Rules Syntax and Semantics
~~~~~~~~~~~~~~~~~~~~~~~~~~

The YAML ‘rules’ document begins with the keyword ‘rules’ followed by a
colon and square brackets. Each rule is then defined within the square
brackets (of ‘rules’). Commas are used to separate rule structure.

Each rule structure is expressed as follows:

rule: {

trigger: *logical expression in terms of conditions*,

microservices: [ *microservice1, microservice2, microservice3…* ]

events: [e*ventName1, eventName2, eventName3…* ],

}

Notes:

-  All referenced eventNames should be defined within the YAML.

-  At least one microservice or event should be specified, and both
   microservices and events may be specified.

-  For information about microservices, see section 3.1.1 bullet number
   4.

Triggers
~~~~~~~~

Triggers may be as simple as a named condition, or they may be logical
expressions in terms of other conditions using the same syntax as used
by the complex conditions described above. For example:

rules: [

ruleName1: {

trigger: A,

eventss: [eventName1],

microservices: [rebootVm]

},

ruleName2: {

trigger: "B \|\| (C && D)",

microservices: [scaleOut]

}

]

Note: when microservices are defined in terms of multiple event
conditions, the designer should take care to consider whether the target
of the microservice is clear (e.g., which VNF or VM instance to perform
the action on). Future versions of this document may provide more
clarity.

YAML Examples
=============

An example YAML file is provided below which registers some events for a
hypothetical VNF. Note: some of the lines have been manually
wrapped/indented to make it easier to read. Please ignore the section
breaks that interrupt this single file; they were added to make it
easier to rapidly find examples of different types of events.

Fault
-----

---

# registration for Fault_vMrf_alarm003

# Constants: the values of domain, eventName, priority, vfstatus

# , version, alarmCondition, eventSeverity, eventSourceType,

# faultFieldsVersion, specificProblem,

# Variables (to be supplied at runtime) include: eventId,
lastEpochMicrosec,

# reportingEntityId, reportingEntityName, sequence, sourceId,
sourceName,

# startEpochMicrosec

event: {presence: required, action: [ any, any, alarm003,
RECO-rebuildVnf ],

structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: fault},

eventName: {presence: required, value: Fault_Vmrf-Nokia_Alarm003},

eventId: {presence: required},

nfNamingCode: {value: mrfx},

priority: {presence: required, value: Medium},

reportingEntityId: {presence: required},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceId: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0}

}},

faultFields: {presence: required, structure: {

alarmCondition: {presence: required, value: alarm003},

eventSeverity: {presence: required, value: MAJOR},

eventSourceType: {presence: required, value: virtualNetworkFunction},

faultFieldsVersion: {presence: required, value: 3.0},

specificProblem: {presence: required, value: "Configuration file was
corrupt or

not present"},

vfStatus: {presence: required, value: "Requesting Termination"}

}}

}}

...

---

# registration for clearing Fault_vMrf_alarm003Cleared

# Constants: the values of domain, eventName, priority,

# , version, alarmCondition, eventSeverity, eventSourceType,

# faultFieldsVersion, specificProblem,

# Variables (to be supplied at runtime) include: eventId,
lastEpochMicrosec,

# reportingEntityId, reportingEntityName, sequence, sourceId,

# sourceName, startEpochMicrosec, vfStatus

event: {presence: required, action: [ any, any, alarm003, Clear ],
structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: fault},

eventName: {presence: required, value:
Fault_Vmrf-Nokia_Alarm003Cleared},

eventId: {presence: required},

nfNamingCode: {value: mrfx},

priority: {presence: required, value: Medium},

reportingEntityId: {presence: required},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceId: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0}

}},

faultFields: {presence: required, structure: {

alarmCondition: {presence: required, value: alarm003},

eventSeverity: {presence: required, value: NORMAL},

eventSourceType: {presence: required, value: virtualNetworkFunction},

faultFieldsVersion: {presence: required, value: 3.0},

specificProblem: {presence: required, value: "Valid configuration file
found"},

vfStatus: {presence: required, value: "Requesting Termination"}

}}

}}

...

Heartbeat
---------

---

# registration for Heartbeat_vMRF

# Constants: the values of domain, eventName, priority, version

# Variables (to be supplied at runtime) include: eventId,
lastEpochMicrosec,

# reportingEntityId, reportingEntityName, sequence, sourceId,
sourceName,

# startEpochMicrosec

event: {presence: required, heartbeatAction: [3, vnfDown,
RECO-rebuildVnf],

structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: heartbeat},

eventName: {presence: required, value: Heartbeat_Vmrf-Nokia},

eventId: {presence: required},

nfNamingCode: {value: mrfx},

priority: {presence: required, value: Normal},

reportingEntityId: {presence: required},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceId: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0}

}},

heartbeatFields: {presence: optional, structure:{

        heartbeatFieldsVersion: {presence: required, value: 2.0},

        heartbeatInterval: {presence: required, range: [ 15, 300 ],
default: 60 }

}}

}}

...

Measurements
------------

To see how additionalMeasurements may be sent in a way that is easy for
service providers to process without custom logic, please see the
following keywords: aggregationRole and castTo. In particular, see the
second example under aggergationRole.

---

# registration for Measurement_vMRF

# Constants: the values of domain, eventName, priority, version,

# measurementFieldsVersion,
additionalMeasurements.namedArrayOfFields.name,

# Variables (to be supplied at runtime) include: eventId,
reportingEntityName, sequence,

# sourceName, start/lastEpochMicrosec, measurementInterval,

# concurrentSessions, requestRate, numberOfMediaPortsInUse,

# cpuUsageArray.cpuUsage,cpuUsage.cpuIdentifier, cpuUsage.percentUsage,

# additionalMeasurements.namedArrayOfFields.arrayOfFields,

# vNicPerformance.receivedOctetsAccumulated,

# vNicPerformance.transmittedOctetsAccumulated,

# vNicPerformance.receivedTotalPacketsAccumulated,

# vNicPerformance.transmittedTotalPacketsAccumulated,

# vNicPerformance.vNicIdentifier, vNicPerformance.receivedOctetsDelta,

# vNicPerformance.receivedTotalPacketsDelta,

# vNicPerformance.transmittedOctetsDelta,

# vNicPerformance.transmittedTotalPacketsDelta,

# vNicPerformance.valuesAreSuspect, memoryUsageArray.memoryUsage,

# memoryUsage.memoryConfigured, memoryUsage.vmIdentifier,

# memoryUsage.memoryUsed, memoryUsage.memoryFree

event: {presence: required, structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: measurement},

eventName: {presence: required, value: Measurement_Vmrf-Nokia},

eventId: {presence: required},

nfNamingCode: {value: mrfx},

priority: {presence: required, value: Normal},

reportingEntityId: {presence: required},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceId: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0}

}},

measurementFields: {presence: required, structure: {

measurementFieldsVersion: {presence: required, value: 3.0},

measurementInterval: {presence: required, range: [ 60, 3600 ], default:
300},

concurrentSessions: {presence: required, range: [ 0, 100000 ]},

requestRate: {presence: required, range: [ 0, 100000 ]},

numberOfMediaPortsInUse: {presence: required, range: [ 0, 100000 ]},

cpuUsageArray: {presence: required, array: [

cpuUsage: {presence: required, structure: {

cpuIdentifier: {presence: required},

percentUsage: {presence: required, range: [ 0, 100 ],

action: [80, up, CpuUsageHigh, RECO-scaleOut],

action: [10, down, CpuUsageLow, RECO-scaleIn]}

}}

]},

memoryUsageArray: {presence: required, array: [

memoryUsage: {presence: required, structure: {

memoryConfigured: {presence: required, value: 33554432},

memoryFree: {presence: required, range: [ 0, 33554432 ],

action: [100, down, FreeMemLow, RECO-scaleOut],

action: [30198989, up, FreeMemHigh, RECO-scaleIn]},

memoryUsed: {presence: required, range: [ 0, 33554432 ]},

vmIdentifier: {presence: required}

}}

]},

additionalMeasurements: {presence: required, array: [

namedHashMap: {presence: required, structure: {

name: {presence: required, value: licenseUsage},

hashMap: {presence: required, structure: {

keyValuePair: {presence: required, structure: {

key: {presence: required, value: G711AudioPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: G729AudioPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: G722AudioPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: AMRAudioPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: AMRWBAudioPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: OpusAudioPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: H263VideoPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: H264NonHCVideoPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: H264HCVideoPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: MPEG4VideoPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: VP8NonHCVideoPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: VP8HCVideoPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: PLC},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: AEC},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: NR},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: NG},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: NLD},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: G711FaxPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: T38FaxPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: RFactor},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: T140TextPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: EVSAudioPort},

value: {presence: required, range: [ 0, 100000 ],

units: numberOfPorts }

}}

}}

}},

namedHashMap: {presence: required, structure: {

name: {presence: required, value: mediaCoreUtilization},

hashMap: {presence: required, structure: {

keyValuePair: {presence: required, structure: {

key: {presence: required, value: actualAvgAudio},

value: {presence: required, range: [ 0, 255 ],

action: [80, up, AudioCoreUsageHigh, RECO-scaleOut],

action: [10, down, AudioCoreUsageLow, RECO-scaleIn]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: modelAvgAudio},

value: {presence: required, range: [ 0, 100 ],

action: [80, up, AudioCoreUsageHigh, RECO-scaleOut],

action: [10, down, AudioCoreUsageLow, RECO-scaleIn]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: actualMaxAudio},

value: {presence: required, range: [ 0, 255 ]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: modelMaxAudio},

value: {presence: required, range: [ 0, 100 ]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: actualAvgVideo},

value: {presence: required, range: [ 0, 255 ],

action: [80, up, VideoCoreUsageHigh, RECO-scaleOut],

action: [10, down, VideoCoreUsageLow, RECO-scaleIn]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: modelAvgVideo},

value: {presence: required, range: [ 0, 100 ],

action: [80, up, VideoCoreUsageHigh, RECO-scaleOut],

action: [10, down, VideoCoreUsageLow, RECO-scaleIn]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: actualMaxVideo},

value: {presence: required, range: [ 0, 255 ]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: modelMaxVideo},

value: {presence: required, range: [ 0, 100 ]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: actualAvgHcVideo},

value: {presence: required, range: [ 0, 255 ],

action: [80, up, HcVideoCoreUsageHigh, RECO-scaleOut],

action: [10, down, HcVideoCoreUsageLow, RECO-scaleIn]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: modelAvgHcVideo},

value: {presence: required, range: [ 0, 100 ],

action: [80, up, HcVideoCoreUsageHigh, RECO-scaleOut],

action: [10, down, HcVideoCoreUsageLow, RECO-scaleIn]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: actualMaxHcVideo},

value: {presence: required, range: [ 0, 255 ]}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: modelMaxHcVideo},

value: {presence: required, range: [ 0, 100 ]}

}}

}}

}}

]},

vNicPerformanceArray: {presence: required, array: [

vNicPerformance: {presence: required, structure: {

receivedOctetsAccumulated: {presence: required,

range: [ 0, 18446744073709551615 ]},

receivedTotalPacketsAccumulated: {presence: required,

range: [ 0, 18446744073709551615 ]},

receivedOctetsDelta: {presence: required},

range: [ 0, 18446744073709551615 ],

receivedTotalPacketsDelta: {presence: required,

range: [ 0, 18446744073709551615 ]},

transmittedOctetsDelta: {presence: required,

range: [ 0, 18446744073709551615 ]},

transmittedOctetsAccumulated: {presence: required,

range: [ 0, 18446744073709551615 ]},

transmittedTotalPacketsAccumulated: {presence: required,

range: [ 0, 18446744073709551615 ]},

transmittedTotalPacketsDelta: {presence: required,

range: [ 0, 18446744073709551615 ]},

valuesAreSuspect: {presence: required, value: [ true, false ]},

vNicIdentifier: {presence: required}

}}

]}

}}

}}

...

Mobile Flow
-----------

---

# registration for mobileFlow

# Constants: the values of domain, eventName, priority, version

#

# Variables (to be supplied at runtime) include: eventId,
reportingEntityName,

# sequence, sourceName, start/lastEpochMicrosec

#

event: {presence: required, structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: mobileFlow},

eventName: {presence: required, value: MobileFlow_Vxyz-Vendor},

eventId: {presence: required},

nfType: {presence: required, value: sbcx},

priority: {presence: required, value: Normal},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0}

}},

mobileFlowFields: {presence: required, structure: {

mobileFlowFieldsVersion: {presence: required, value: 3.0},

applicationType: {presence: optional},

appProtocolType: {presence: optional},

appProtocolVersion: {presence: optional},

cid: {presence: optional},

connectionType: {presence: optional},

ecgi: {presence: optional},

flowDirection: {presence: required},

gtpPerFlowMetrics: {presence: required, structure: {

avgBitErrorRate: {presence: required},

avgPacketDelayVariation: {presence: required},

avgPacketLatency: {presence: required},

avgReceiveThroughput: {presence: required},

avgTransmitThroughput: {presence: required},

durConnectionFailedStatus: {presence: optional},

durTunnelFailedStatus: {presence: optional},

flowActivatedBy: {presence: optional},

flowActivationEpoch: {presence: required},

flowActivationMicrosec: {presence: required},

flowActivationTime: {presence: optional},

flowDeactivatedBy: {presence: optional},

flowDeactivationEpoch: {presence: required},

flowDeactivationMicrosec: {presence: required},

flowDeactivationTime: {presence: required},

flowStatus: {presence: required},

gtpConnectionStatus: {presence: optional},

gtpTunnelStatus: {presence: optional},

ipTosCountList: {presence: optional},

ipTosList: {presence: optional},

largePacketRtt: {presence: optional},

largePacketThreshold: {presence: optional},

maxPacketDelayVariation: {presence: required},

maxReceiveBitRate: {presence: optional},

maxTransmitBitRate: {presence: optional},

mobileQciCosCountList: {presence: optional},

mobileQciCosList: {presence: optional},

numActivationFailures: {presence: required},

numBitErrors: {presence: required},

numBytesReceived: {presence: required},

numBytesTransmitted: {presence: required},

numDroppedPackets: {presence: required},

numGtpEchoFailures: {presence: optional},

numGtpTunnelErrors: {presence: optional},

numHttpErrors: {presence: optional},

numL7BytesReceived: {presence: required},

numL7BytesTransmitted: {presence: required},

numLostPackets: {presence: required},

numOutOfOrderPackets: {presence: required},

numPacketErrors: {presence: required},

numPacketsReceivedExclRetrans: {presence: required},

numPacketsReceivedInclRetrans: {presence: required},

numPacketsTransmittedInclRetrans: {presence: required},

numRetries: {presence: required},

numTimeouts: {presence: required},

numTunneledL7BytesReceived: {presence: required},

roundTripTime: {presence: required},

tcpFlagCountList: {presence: optional},

tcpFlagList: {presence: optional},

timeToFirstByte: {presence: required}

}},

gtpProtocolType: {presence: optional},

gtpVersion: {presence: optional},

httpHeader: {presence: optional},

imei: {presence: optional},

imsi: {presence: optional},

ipProtocolType: {presence: required},

ipVersion: {presence: required},

lac: {presence: optional},

mcc: {presence: optional},

mnc: {presence: optional},

msisdn: {presence: optional},

otherEndpointIpAddress: {presence: required},

otherEndpointPort: {presence: required},

otherFunctionalRole: {presence: optional},

rac: {presence: optional},

radioAccessTechnology: {presence: optional},

reportingEndpointIpAddr: {presence: required},

reportingEndpointPort: {presence: required},

sac: {presence: optional},

samplingAlgorithm: {presence: optional},

tac: {presence: optional},

tunnelId: {presence: optional},

vlanId: {presence: optional},

additionalInformation: {presence: optional, array: [

keyValuePair: {presence: required, structure: {

key: {presence: required, value: name1},

value: {presence: required}

}},

keyValuePair: {presence: optional, structure: {

key: {presence: required, value: name2},

value: {presence: required}

}}

]}

}}

}}

...

Sip Signaling
-------------

---

# registration for sipSignaling

# Constants: the values of domain, eventName, priority, version

#

# Variables (to be supplied at runtime) include: eventId,
reportingEntityName,

# sequence, sourceName, start/lastEpochMicrosec

#

event: {presence: required, structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: sipSignaling},

eventName: {presence: required, value: SipSignaling_Vxyz-Vendor},

eventId: {presence: required},

nfType: {presence: required, value: sbcx},

priority: {presence: required, value: Normal},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0}

}},

sipSignalingFields: {presence: required, structure: {

compressedSIP: {presence: optional},

correlator: {presence: required},

localIpAaddress: {presence: required},

localPort: {presence: required},

remoteIpAddress: {presence: required},

remotePort: {presence: required},

sipSignalingFieldsVersion: {presence: required, value: 2.0},

summarySip: {presence: optional},

vnfVendorNameFields: {presence: required, structure: {

vendorName: {presence: required},

vfModuleName: {presence: optional},

vnfName: {presence: optional}

}},

additionalInformation: {presence: optional, array: [

keyValuePair: {presence: required, structure: {

key: {presence: required, value: name1},

value: {presence: required}

}},

keyValuePair: {presence: optional, structure: {

key: {presence: required, value: name2},

value: {presence: required}

}}

]}

}}

}}

...

Syslog
------

---

# registration for Syslog_vMRF

# Constants: the values of domain, eventName, priority,
lastEpochMicrosec, version,

# syslogFields.syslogFieldsVersion, syslogFields.syslogTag

# Variables include: eventId, lastEpochMicrosec, reportingEntityId,
reportingEntityName,

# sequence, sourceId, sourceName, startEpochMicrosec,

# syslogFields.eventSourceHost, syslogFields.eventSourceType,

# syslogFields.syslogFacility, syslogFields.syslogMsg

event: {presence: required, structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: syslog},

eventName: {presence: required, value: Syslog_Vmrf-Nokia},

eventId: {presence: required},

nfNamingCode: {value: mrfx},

priority: {presence: required, value: Normal},

reportingEntityId: {presence: required},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceId: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0},

}},

syslogFields: {presence: required, structure: {

eventSourceHost: {presence: required},

eventSourceType: {presence: required, value: virtualNetworkFunction},

syslogFacility: {presence: required, range: [16, 23]},

syslogSev: {presence: required, value: [Emergency, Alert, Critical,
Error]},

syslogFieldsVersion: {presence: required, value: 3.0},

syslogMsg: {presence: required},

syslogSData: {presence: required, keyValuePairString: {‘ ‘, =,
keyValuePairs: [

keyValuePair: {presence: required, structure: {

key: {presence: required, value: ATTEST},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: DATE_IN},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: DATE_OUT},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: DEST_IN},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: FUNCTION},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: ICID},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: ORIGID},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: ORIG_TN},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: SIP_REASON_HEADER},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: STATE},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: STATUS},

value: {presence: required}

}},

keyValuePair: {presence: required, structure: {

key: {presence: required, value: VERSTAT},

value: {presence: required}

}}

]}} }]

syslogTag: {presence: required, value: vMRF},

additionalFields: {presence: required, keyValuePairString: {|, =,
keyValuePairs: [

keyValuePair: {presence: required, structure: {

key: {presence: required, value: someKeyName},

value: {presence: required}

}},

keyValuePair: {presence: optional, structure: {

key: {presence: required, value: someOtherKeyName},

value: {presence: required}

}}

]}}

}}

}}

...

Voice Quality
-------------

---

# registration for voiceQuality

# Constants: the values of domain, eventName, priority, version

#

# Variables (to be supplied at runtime) include: eventId,
lastEpochMicrosec,

# reportingEntityId, reportingEntityName, sequence, sourceId,

# sourceName, startEpochMicrosec

event: {presence: required, structure: {

commonEventHeader: {presence: required, structure: {

domain: {presence: required, value: voiceQualityFields},

eventName: {presence: required, value: VoiceQuality_Vxyz-Vendor},

eventId: {presence: required},

nfType: {presence: required, value: sbcx},

priority: {presence: required, value: Normal},

reportingEntityName: {presence: required},

sequence: {presence: required},

sourceName: {presence: required},

startEpochMicrosec: {presence: required},

lastEpochMicrosec: {presence: required},

timeZoneOffset: {presence: required},

version: {presence: required, value: 3.0}

}},

voiceQualityFields: {presence: required, structure: {

voiceQualityFieldsVersion: {presence: required, value: 2.0},

calleeSideCodec: {presence: required},

callerSideCodec: {presence: required},

correlator: {presence: required},

remoteIpAddress: {presence: required},

endOfCallVqmSummaries: {presence: required, structure: {

adjacencyName: {presence: required},

endpointDescription: {presence: required},

endpointAverageJitter: {presence: optional},

endpointMaxJitter: {presence: optional},

endpointRtpOctetsLost: {presence: optional},

endpointRtpPacketsLost: {presence: optional},

endpointRtpOctetsDiscarded: {presence: optional},

endpointRtpOctetsReceived: {presence: optional},

endpointRtpOctetsSent: {presence: optional},

endpointRtpPacketsDiscarded: {presence: optional},

endpointRtpPacketsReceived: {presence: optional},

endpointRtpPacketsSent: {presence: optional},

localAverageJitter: {presence: optional},

localMaxJitter: {presence: optional},

localAverageJitterBufferDelay: {presence: optional},

localMaxJitterBufferDelay: {presence: optional},

localRtpOctetsDiscarded: {presence: optional},

localRtpOctetsLost: {presence: optional},

localRtpOctetsReceived: {presence: optional},

localRtpOctetsSent: {presence: optional},

localRtpPacketsDiscarded: {presence: optional},

localRtpPacketsLost: {presence: optional},

localRtpPacketsReceived: {presence: optional},

localRtpPacketsSent: {presence: optional},

mosCqe: {presence: optional},

oneWayDelay: {presence: optional},

packetLossPercent: {presence: optional},

rFactor: {presence: optional},

roundTripDelay: {presence: optional}

}},

phoneNumber: {presence: required},

midCallRtcp: {presence: required},

vendorVnfNameFields: {presence: required, structure: {

vendorName: {presence: required},

vfModuleName: {presence: optional},

vnfName: {presence: optional}

}},

additionalInformation: {presence: optional, array: [

keyValuePair: {presence: required, structure: {

key: {presence: required, value: name1},

value: {presence: required}

}},

keyValuePair: {presence: optional, structure: {

key: {presence: required, value: name2},

value: {presence: required}

}}

]}

}}

}}

...

.. _rules-1:

Rules
-----

---

#Rules

Rules: [

ruleName1: {

trigger: "CpuUsageHigh \|\| FreeMemLow \|\| AudioCoreUsageHigh \|\|

VideoCoreUsageHigh \|\| HcVideoCoreUsageHigh",

microservices: [scaleOut]

},

ruleName2: {

trigger: "CpuUsageLow && FreeMemHigh && AudioCoreUsageLow &&

VideoCoreUsageLow && HcVideoCoreUsageLow",

microservices: [scaleIn]

}

]

...

Appendix: Historical Change Log
===============================

For the latest changes, see the Change Block just before the Table of
Contents.

+-----------------------+-----------------------+-----------------------+
| Date                  | Revision              | Description           |
+-----------------------+-----------------------+-----------------------+
| 3/15/2017             | 1.0                   | This is the initial   |
|                       |                       | release of the VES    |
|                       |                       | Event Registration    |
|                       |                       | document.             |
+-----------------------+-----------------------+-----------------------+
| 3/22/2017             | 1.1                   | -  Changed the        |
|                       |                       |       ‘alert’         |
|                       |                       |       qualifier to    |
|                       |                       |       ‘action’ and    |
|                       |                       |       added support   |
|                       |                       |       for conditions  |
|                       |                       |       that will       |
|                       |                       |       trigger rules.  |
|                       |                       |                       |
|                       |                       | -  Formatted the      |
|                       |                       |       document with   |
|                       |                       |       more sections   |
|                       |                       |       and             |
|                       |                       |       subsections.    |
|                       |                       |                       |
|                       |                       | -  Defined the syntax |
|                       |                       |       and semantics   |
|                       |                       |       for condition   |
|                       |                       |       based rules.    |
|                       |                       |                       |
|                       |                       | -  Fixed the YAML     |
|                       |                       |       examples.       |
+-----------------------+-----------------------+-----------------------+
| 3/27/2017             | 1.2                   | -  Clarified the      |
|                       |                       |       audience of the |
|                       |                       |       document and    |
|                       |                       |       the             |
|                       |                       |       expectations    |
|                       |                       |       for vendors.    |
|                       |                       |                       |
|                       |                       | -  Changed the order  |
|                       |                       |       of fields in    |
|                       |                       |       the action      |
|                       |                       |       keyword.        |
|                       |                       |                       |
|                       |                       | -  Updated the YAML   |
|                       |                       |       examples.       |
|                       |                       |                       |
|                       |                       | -  Wordsmithed        |
|                       |                       |       throughout.     |
+-----------------------+-----------------------+-----------------------+
| 3/31/2017             | 1.3                   | -  Generalized the    |
|                       |                       |       descriptions    |
|                       |                       |       from an ASDC,   |
|                       |                       |       ECOMP and       |
|                       |                       |       AT&T-specific   |
|                       |                       |       interaction     |
|                       |                       |       with a VNF      |
|                       |                       |       vendor, to a    |
|                       |                       |       generic Service |
|                       |                       |       Provider        |
|                       |                       |       interaction     |
|                       |                       |       with a VNF      |
|                       |                       |       vendor.         |
|                       |                       |                       |
|                       |                       | -  Wordsmithed        |
|                       |                       |       throughout.     |
|                       |                       |                       |
|                       |                       | -  Added a ‘default’  |
|                       |                       |       qualifier       |
|                       |                       |                       |
|                       |                       | -  Fixed syntax and   |
|                       |                       |       semantic        |
|                       |                       |       inconsistencies |
|                       |                       |       in the Rules    |
|                       |                       |       section         |
|                       |                       |                       |
|                       |                       | -  Brought all        |
|                       |                       |       examples into   |
|                       |                       |       compliance with |
|                       |                       |       v5.0            |
|                       |                       |                       |
|                       |                       | -  Added a heartbeat  |
|                       |                       |       example         |
|                       |                       |                       |
|                       |                       | -  Modified the       |
|                       |                       |       measurement     |
|                       |                       |       example         |
|                       |                       |                       |
|                       |                       | -  Modified the       |
|                       |                       |       syslog example  |
|                       |                       |                       |
|                       |                       | -  Added two complex  |
|                       |                       |       rules           |
+-----------------------+-----------------------+-----------------------+
| 4/14/2017             | 1.4                   | -  Wordsmithed        |
|                       |                       |       throughout      |
|                       |                       |                       |
|                       |                       | -  Action keyword:    |
|                       |                       |       clarified use   |
|                       |                       |       of ‘up’, ‘down’ |
|                       |                       |       and ‘at’        |
|                       |                       |       triggers;       |
|                       |                       |       clarified the   |
|                       |                       |       specification   |
|                       |                       |       and use of      |
|                       |                       |       microservices   |
|                       |                       |       directives at   |
|                       |                       |       design time and |
|                       |                       |       runtime,        |
|                       |                       |       clarified the   |
|                       |                       |       use of tca’s    |
|                       |                       |                       |
|                       |                       | -  HeartbeatAction    |
|                       |                       |       keyword: Added  |
|                       |                       |       the             |
|                       |                       |       heartbeatAction |
|                       |                       |       keyword         |
|                       |                       |                       |
|                       |                       | -  Value keyword:     |
|                       |                       |       clarified the   |
|                       |                       |       communicaton of |
|                       |                       |       strings         |
|                       |                       |       containing      |
|                       |                       |       spaces.         |
|                       |                       |                       |
|                       |                       | -  Rules: corrected   |
|                       |                       |       the use of      |
|                       |                       |       quotes in       |
|                       |                       |       examples        |
|                       |                       |                       |
|                       |                       | -  Examples: added    |
|                       |                       |       the             |
|                       |                       |       heartbeatAction |
|                       |                       |       keyword on the  |
|                       |                       |       heartbeat event |
|                       |                       |       example; also   |
|                       |                       |       corrected use   |
|                       |                       |       of quotes       |
|                       |                       |       throughout.     |
+-----------------------+-----------------------+-----------------------+
| 10/3/2017             | 1.5                   | -  Back of Cover      |
|                       |                       |    Page: updated the  |
|                       |                       |    license and        |
|                       |                       |    copyright notice   |
|                       |                       |    to comply with     |
|                       |                       |    ONAP guidelines    |
|                       |                       |                       |
|                       |                       | -  Section 3.1: Added |
|                       |                       |       a ‘Units’       |
|                       |                       |       qualifier       |
|                       |                       |                       |
|                       |                       | -  Examples: updated  |
|                       |                       |       the examples to |
|                       |                       |       align with VES  |
|                       |                       |       5.4.1           |
+-----------------------+-----------------------+-----------------------+
| 10/31/2017            | 1.6                   | -  Added              |
|                       |                       |    KeyValuePairString |
|                       |                       |    keyword to handle  |
|                       |                       |    strings which have |
|                       |                       |    delimited          |
|                       |                       |    key-value pairs    |
|                       |                       |    within them.       |
|                       |                       |                       |
|                       |                       | -  Updated the syslog |
|                       |                       |       example to show |
|                       |                       |       the use of      |
|                       |                       |       KeyValuePairStr |
|                       |                       | ing                   |
|                       |                       |                       |
|                       |                       | -  Updated the syslog |
|                       |                       |       example to      |
|                       |                       |       align syslogSev |
|                       |                       |       with VES 5.4.1  |
|                       |                       |                       |
|                       |                       | -  Added examples for |
|                       |                       |       mobile flow,    |
|                       |                       |       sip signaling   |
|                       |                       |       and voice       |
|                       |                       |       quality         |
|                       |                       |                       |
|                       |                       | -  Added sections     |
|                       |                       |       within the      |
|                       |                       |       examples to     |
|                       |                       |       facilitate      |
|                       |                       |       rapid access to |
|                       |                       |       specific types  |
|                       |                       |       of example      |
|                       |                       |       events          |
|                       |                       |                       |
|                       |                       | -  Wordsmithed the    |
|                       |                       |    Introduction       |
+-----------------------+-----------------------+-----------------------+
| 6/28/2018             | 2.0                   | -  Updated to align   |
|                       |                       |    with the change of |
|                       |                       |    the                |
|                       |                       |    ‘measurementsForVf |
|                       |                       | Scaling’              |
|                       |                       |    domain to          |
|                       |                       |    ‘measurement’      |
|                       |                       |                       |
|                       |                       |    -  measurementsFor |
|                       |                       | VfScaling             |
|                       |                       |       measurement     |
|                       |                       |                       |
|                       |                       |    -  measurementsFor |
|                       |                       | VfScalingFields       |
|                       |                       |       measurementFiel |
|                       |                       | ds                    |
|                       |                       |                       |
|                       |                       |    -  measurementsFor |
|                       |                       | VfScalingVersion      |
|                       |                       |       measurementFiel |
|                       |                       | dsVersion             |
|                       |                       |                       |
|                       |                       |    -  the ‘mfvs’      |
|                       |                       |       abbreviation    |
|                       |                       |       measurement     |
|                       |                       |                       |
|                       |                       | 1.  Clarified YAML    |
|                       |                       |     file naming       |
|                       |                       |                       |
|                       |                       | 2.  Clarified the     |
|                       |                       |     Action keyword.   |
|                       |                       |                       |
|                       |                       | 3.  Added an          |
|                       |                       |     aggregationRole   |
|                       |                       |     keyword.          |
|                       |                       |                       |
|                       |                       | 4.  Added a castTo    |
|                       |                       |     keyword.          |
|                       |                       |                       |
|                       |                       | 5.  Added an          |
|                       |                       |     isHomogeneous     |
|                       |                       |     keyword.          |
|                       |                       |                       |
|                       |                       | 6.  Added a 'key'     |
|                       |                       |     keyword           |
|                       |                       |                       |
|                       |                       | 7.  Add a             |
|                       |                       |     'keyValuePair'    |
|                       |                       |     keyword           |
|                       |                       |                       |
|                       |                       | 8.  Modified the      |
|                       |                       |     existing          |
|                       |                       |     'keyValuePairStri |
|                       |                       | ng'                   |
|                       |                       |     keyword           |
|                       |                       |     description to    |
|                       |                       |     reference the     |
|                       |                       |     'keyValuePair'    |
|                       |                       |     keyword.          |
|                       |                       |                       |
|                       |                       | 9.  Added a section   |
|                       |                       |     on Complex        |
|                       |                       |     Conditions and    |
|                       |                       |     modified the      |
|                       |                       |     Rules section     |
|                       |                       |                       |
|                       |                       | 10. Modified the      |
|                       |                       |     Examples as       |
|                       |                       |     follows:          |
|                       |                       |                       |
|                       |                       | -  changed            |
|                       |                       |       ‘faultFieldsVer |
|                       |                       | sion’                 |
|                       |                       |       to 3.0          |
|                       |                       |                       |
|                       |                       | -  changed            |
|                       |                       |       ‘heartbeatField |
|                       |                       | sVersion’             |
|                       |                       |       to 2.0          |
|                       |                       |                       |
|                       |                       | -  provided guidance  |
|                       |                       |       at the top of   |
|                       |                       |       the             |
|                       |                       |       Measurements    |
|                       |                       |       examples as to  |
|                       |                       |       how to send     |
|                       |                       |       extensible      |
|                       |                       |       fields through  |
|                       |                       |       arrayOfNamedHas |
|                       |                       | hMap                  |
|                       |                       |       in a way that   |
|                       |                       |       will eliminate  |
|                       |                       |       the need for    |
|                       |                       |       custom          |
|                       |                       |       development at  |
|                       |                       |       the service     |
|                       |                       |       provider.       |
|                       |                       |                       |
|                       |                       | -  changed            |
|                       |                       |       ‘measurementFie |
|                       |                       | ldsVersion’           |
|                       |                       |       to 3.0          |
|                       |                       |                       |
|                       |                       | -  changed            |
|                       |                       |       measurementFiel |
|                       |                       | ds.additionalMeasurem |
|                       |                       | ents                  |
|                       |                       |       to reference a  |
|                       |                       |       ‘namedHashMap’  |
|                       |                       |                       |
|                       |                       | -  ‘field’ is         |
|                       |                       |       replaced by     |
|                       |                       |       ‘keyValuePair’  |
|                       |                       |                       |
|                       |                       | -  ‘name’ is replaced |
|                       |                       |       by ‘key’        |
|                       |                       |                       |
|                       |                       | -  changed            |
|                       |                       |       ‘namedArrayOfFi |
|                       |                       | elds’                 |
|                       |                       |       to              |
|                       |                       |       ‘namedHashMap’  |
|                       |                       |                       |
|                       |                       | -  fixed the mobile   |
|                       |                       |       Flow example to |
|                       |                       |       show the        |
|                       |                       |       ‘mobileFlowFiel |
|                       |                       | ds’,                  |
|                       |                       |       show the        |
|                       |                       |       ‘mobileFlowFiel |
|                       |                       | dsVersion’            |
|                       |                       |       at 3.0, modify  |
|                       |                       |       ‘additionalInfo |
|                       |                       | rmation’              |
|                       |                       |       to use a        |
|                       |                       |       hashMap         |
|                       |                       |                       |
|                       |                       | -  ‘field’ is         |
|                       |                       |       replaced by     |
|                       |                       |       ‘keyValuePair’  |
|                       |                       |                       |
|                       |                       | -  ‘name’ is replaced |
|                       |                       |       by ‘key’        |
|                       |                       |                       |
|                       |                       | -  changed            |
|                       |                       |       ‘sipSignalingFi |
|                       |                       | eldsVersion’          |
|                       |                       |       to 2.0          |
|                       |                       |                       |
|                       |                       | -  changed            |
|                       |                       |       ‘additionalInfo |
|                       |                       | rmation’              |
|                       |                       |       to use a        |
|                       |                       |       hashmap         |
|                       |                       |                       |
|                       |                       | -  ‘field’ is         |
|                       |                       |       replaced by     |
|                       |                       |       ‘keyValuePair’  |
|                       |                       |                       |
|                       |                       | -  ‘name’ is replaced |
|                       |                       |       by ‘key’        |
|                       |                       |                       |
|                       |                       | -  fixed the          |
|                       |                       |       voiceQuality    |
|                       |                       |       example to show |
|                       |                       |       the             |
|                       |                       |       ‘voiceQualityFi |
|                       |                       | elds’,                |
|                       |                       |       show the        |
|                       |                       |       ‘voiceQualityFi |
|                       |                       | eldsVersion’          |
|                       |                       |       at 2.0 and      |
|                       |                       |       modify          |
|                       |                       |       ‘additionalInfo |
|                       |                       | rmation’              |
|                       |                       |       to use a        |
|                       |                       |       hashMap         |
|                       |                       |                       |
|                       |                       | -  ‘field’ is         |
|                       |                       |       replaced by     |
|                       |                       |       ‘keyValuePair’  |
|                       |                       |                       |
|                       |                       | -  ‘name’ is replaced |
|                       |                       |       by ‘key’        |
|                       |                       |                       |
|                       |                       | -  Modified the rules |
|                       |                       |    example to conform |
|                       |                       |    to the Complex     |
|                       |                       |    Conditions and     |
|                       |                       |    Rules sections.    |
|                       |                       |                       |
|                       |                       | -  Numerous           |
|                       |                       |    clarifications     |
|                       |                       |    made to address    |
|                       |                       |    issues with        |
|                       |                       |    previous drafts of |
|                       |                       |    this version       |
|                       |                       |    including:         |
|                       |                       |                       |
|                       |                       |    -  Fixed arrays    |
|                       |                       |       followed by     |
|                       |                       |       other than      |
|                       |                       |       square brackets |
|                       |                       |                       |
|                       |                       |    -  Section 2.2:    |
|                       |                       |       clarified       |
|                       |                       |       format of v# in |
|                       |                       |       filename        |
|                       |                       |                       |
|                       |                       |    -  Section 3.1.11: |
|                       |                       |       clarified use   |
|                       |                       |       of camel casing |
|                       |                       |                       |
|                       |                       |    -  Section 3.2.1:  |
|                       |                       |       corrected and   |
|                       |                       |       clarified       |
|                       |                       |                       |
|                       |                       |    -  Section 3.2.3   |
|                       |                       |       Clarified       |
|                       |                       |       number of       |
|                       |                       |       conditions that |
|                       |                       |       may be and’d or |
|                       |                       |       or’d            |
|                       |                       |                       |
|                       |                       |    -  Section 3.2.4:  |
|                       |                       |       fixed reference |
|                       |                       |       to PersistentB1 |
|                       |                       |                       |
|                       |                       |    -  Section 3.2.6:  |
|                       |                       |       fixed math in   |
|                       |                       |       example         |
|                       |                       |                       |
|                       |                       | -  Section 3.3.2:     |
|                       |                       |    changed reference  |
|                       |                       |    from ‘alerts’ to   |
|                       |                       |    ‘events’           |
+-----------------------+-----------------------+-----------------------+