e63628a1d4466af726591c7dba2f2cbb5799aff8
[vnfrqts/requirements.git] / docs / Chapter8 / ves7_1spec.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3 .. Copyright 2017 AT&T Intellectual Property, All rights reserved
4 .. Copyright 2017-2018 Huawei Technologies Co., Ltd.
5
6 .. _ves_event_listener_7_1:
7
8 Service: VES Event Listener 7.1.1
9 ---------------------------------
10
11 +-----------------------------------------------------------------------------+
12 | **Legal Disclaimer**                                                        |
13 |                                                                             |
14 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
15 | use this file except in compliance with the License. You may obtain a copy  |
16 | of the License at                                                           |
17 |                                                                             |
18 | http://www.apache.org/licenses/LICENSE-2.0                                  |
19 |                                                                             |
20 | Unless required by applicable law or agreed to in writing, software         |
21 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT   |
22 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the    |
23 | License for the specific language governing permissions and limitations     |
24 | under the License.                                                          |
25 +-----------------------------------------------------------------------------+
26
27
28 :Document: VES Event Listener
29 :Revision: 7.1.1
30 :Revision Date: January 28th, 2020
31 :Author: Rich Erickson
32
33 +-----------------+-----------------------------+
34 | Contributors:   | **Min Chen – AT&T**         |
35 |                 |                             |
36 |                 | **Fred Delaplace - AT&T**   |
37 |                 |                             |
38 |                 | **Andrew Egan – AT&T**      |
39 |                 |                             |
40 |                 | **Alok Gupta – AT&T**       |
41 |                 |                             |
42 |                 | **Marge Hillis – Nokia**    |
43 |                 |                             |
44 |                 | **Gerard Hynes – AT&T**     |
45 |                 |                             |
46 |                 | **Ken Kelly – AT&T**        |
47 |                 |                             |
48 |                 | **Mark Scott – Ericsson**   |
49 |                 |                             |
50 |                 | **Tim Verall – Intel**      |
51 |                 |                             |
52 |                 | **Sumit Verdi – VMWare**    |
53 +-----------------+-----------------------------+
54
55 .. contents:: Table of Contents
56
57 Introduction
58 ^^^^^^^^^^^^
59
60 This document describes the RESTful interface for the VES Event
61 Listener. The VES acronym originally stood for Virtual-function Event
62 Streaming, but VES has been generalized to support network-function
63 event streaming, whether virtualized or not. The VES Event Listener is
64 capable of receiving any event sent in the VES Common Event Format. The
65 Common Event Format is expressed in JSON schema in section 4 of this
66 document. In the Common Event Format, an event consists of a required
67 Common Event Header block (i.e., object) accompanied by zero or more
68 event domain blocks.
69
70 It should be understood that events are well structured packages of
71 information, identified by an eventName, which are asynchronously
72 communicated to subscribers who are interested in the eventName. Events
73 can convey measurements, faults, syslogs, threshold crossing alerts and
74 other types of information. Events are simply a way of communicating
75 well-structured packages of information to one or more instances of an
76 Event Listener service.
77
78 This document describes a RESTful connectionless push event listener
79 can receive single events or batches of events in the
80 Common Event Format. In future, additional documents may describe other
81 transports which make use of persistent TCP connections for high volumes
82 of streaming events.
83
84 Compatibility with ONAP
85 ~~~~~~~~~~~~~~~~~~~~~~~
86
87 Unless otherwise stated, this version of the Event Listener specification is
88 compatible with the release of ONAP the specification is released under.  In
89 other words, if the specification is released under the Frankfurt ONAP Release,
90 then the VES Event Collectors provided by DCAE will also be compatible with
91 the specification.
92
93 Event Registration
94 ~~~~~~~~~~~~~~~~~~
95
96 All events must be compliant with the common event format, but specific
97 events identified by their eventNames, may require that certain fields,
98 which are optional in the common event format, be present when they are
99 published. For example, a specific eventName may require that specific
100 name-value pairs be present in the extensible structures provided within
101 the Common Event Format.
102
103 Events are registered using an extensible YAML format (defined in a
104 separate document), which specifies, for each eventName, the fields that
105 are required, what field values may be sent, and any special handling
106 that should be performed on those eventNames.
107
108 Naming Standards for eventName
109 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
110
111 To prevent naming collisions, eventNames sent as part of the
112 commonEventHeader, should conform to the following naming convention
113 designed to summarize the purpose and type of the event, and to ensure
114 the uniqueness of the eventName:
115
116     {DomainAbbreviation}\_{PublisherName}\_{Description}
117
118 Each underscore-separated subfield above should start with a capital
119 letter and use camel-casing to separate words and acronyms. Acronyms
120 should capitalize only the first letter of the acronym. Spaces and
121 underscores should not appear within any subfield.
122
123 The DomainAbbreviation subfield derives from the ‘domain’ field in the
124 commonEventHeader, as specified below:
125
126 -  ‘Fault’ for the fault domain
127
128 -  ‘Heartbeat’ for the heartbeat domain
129
130 -  ‘Measurement’ for the measurement domain
131
132 -  ‘MobileFlow’ for the mobileFlow domain
133
134 -  ‘Notification’ for the notification domain
135
136 -  ‘Other’ for the other domain
137
138 -  ‘Perf3gpp’ for the perf3gpp domain
139
140 -  ‘PnfReg’ for the pnfRegistration domain
141
142 -  ‘SipSignaling’ for the sipSignaling domain
143
144 -  ‘StateChange’ for the stateChange domain
145
146 -  ‘Syslog’ for the syslog domain
147
148 -  ‘Tca’ for the thresholdCrossingAlert domain
149
150 -  ‘VoiceQuality’ for the voiceQuality domain
151
152 The PublisherName subfield describes the vendor product or application
153 publishing the event. This subfield conforms to the following
154 conventions:
155
156 -  Vendor products are specified as:
157
158      {productName}-{vendorName}
159
160     For example: Visbc-Metaswitch or Vdbe-Juniper, where a hyphen is
161     used to separate the productName and vendorName subfields. Note that
162     the productName and vendorName subfields must not include hyphens
163     themselves.
164
165     Organizing the information in this way will cause an alphabetical
166     listing of eventNames to sort similar network functions together,
167     rather than to sort them by vendor.
168
169     The productName subfield may describe a NF or a NFC. Where NFC names
170     may be reused across different NF’s, they should be specified as:
171
172      {NfName}:{NfcName}
173
174     where a colon is used to separate the NfName and NfcName subfields.
175     Note that the NfName and NfcName subfields must not include colons
176     themselves.
177
178     The ProductName may also describe other types of vendor modules or
179     components such as a VM, application or hostname. As with NFs and
180     NFCs, parent:child relationships may be communicated using colon as
181     a subfield delimiter.
182
183 -  Service providers who adopt the VES Common Event Format for internal
184    use, may provide PublisherName without the vendorName subfield. They
185    would typically identify an application, system, service or
186    microservice publishing the event (e.g., ‘Policy’, ‘So’,
187    ‘MobileCallRecording’ or ‘Dkat’). As with NFs and NFCs, parent:child
188    relationships may be communicated using colon as a subfield delimiter
189    (e.g., ApplicationName:ApplicationComponent).
190
191 The final subfield of the eventName name should describe, in a compact
192 camel case format the specific information being conveyed by the event.
193 In some cases, this final subfield may not be required (e.g., in the
194 case of certain heartbeats).
195
196 Examples of eventNames following the naming standards are provided
197 below:
198
199 - Tca\_Vdbe-Ericsson\_CpuThresholdExceeded
200
201 - Heartbeat\_Visbc:Mmc-Metaswitch
202
203 - Syslog\_Vdbe-Ericsson
204
205 - Fault\_MobileCallRecording\_PilotNumberPoolExhaustion
206
207 - Other\_So:WanBonding\_InstantiationPart1Complete
208
209 EventId Use Cases Examples
210 ~~~~~~~~~~~~~~~~~~~~~~~~~~
211
212
213 eventId Examples:
214
215 **NOTE**: Please note, the following are only *examples*, and other formats
216 can be used provided they meet the requirement that the ``eventId`` is unique
217 for all events or unique fault occurrence.
218
219 **Example 1**: assumes a unique key for each domain consisting of domain
220 followed by an integer domain<n> or domainId<n>, where <n> is a positive integer,
221 e.g. fault000001, heartbeat000001, measurement000005,
222 notification3gppPerfFileReady0005
223
224 **Example 2**: assumes a unique integer key for all events across all domains
225 <n>: 000000001, 00000002, 000000003
226
227 Rules:
228
229 1. All domains except Fault: each time a subsequent event is sent the
230    integer part of eventId will increment by 1. Repeat of eventId
231    assumes duplicate event. Sequence number is set to 0 for all domains
232    except fault.
233
234 2. eventId construction for Fault Events:
235
236    a. Most likely scenario
237
238       *    The sourceName on each Fault event is the NF Instance Name
239            (pnf-name or vnf-name or vm-name) as entered in A&AI uniquely
240            identifying this instance of the NF.
241
242       *    The eventId on Fault events is the same every time a given
243            fault is raised (including onset and re-raise)
244
245             1. The startEpochMicrosec value for the Fault event is the
246                timestamp for when the fault onset occurs. Subsequent
247                events for the same fault will keep the same startEpochMicrosec
248                value.
249
250             2. lastEpochMicrosec indicates the current event time. This value
251                will be updated for each subsequent event for a given fault.
252
253             3. The sequence number for each Fault event is set to 1 when the
254                fault is raised and increments each time the same
255                fault event is raised, until a clear is sent.
256
257       *    After the fault is cleared, a new eventId is used.
258
259    .. image:: Use-Case-1.png
260
261    b. **Alternative Scenario**: Network Function When Fault Event Status is Not
262       Maintained.
263
264       *    The sourceName on each Fault event is the NF Instance Name
265            (pnf-name or vnf-name or vm-name) as entered in A&AI uniquely
266            identifying this instance of the NF.
267
268       *    The eventId on Fault events is the same every time a given
269            fault is raised or cleared, even if it is re-raised after it
270            had previously cleared.  So, for example, if EMS loses
271            contact with a particular device then a Fault event might be
272            sent for a raise, re-raise (because EMS has re-tried and
273            still can’t contact the device), clear (because EMS has
274            re-tried and it can contact the device) and then raise again
275            (because EMS has lost contact with the device again).  The
276            same eventId is used for all 4 of those Fault events.
277
278       *    The startEpochMicrosec value for each Fault event is the
279            timestamp for when that event is generated, not when the
280            fault first occurred.  So all 4 of the Fault events in the
281            previous bullet point would have a different timestamp.
282
283       *    lastEpochMicrosec indicates the current event time.
284
285       *    The sequence number for each Fault event is currently set to
286            0 on a raise and 1 on a clear.  We could change that so that
287            each Fault event is given a new monotonically increasing
288            sequence number whether it is a raise or a clear if that is
289            helpful (which is reset to 0 if the VM restarts) but they
290            won’t be consecutive.
291
292       *    Normally, a clear is expected for each fault to be sent from a
293            network function. However a few fault notification types will never
294            be re-raised or cleared. In this case, general rules for VES events
295            shall be followed with a new eventId for each event and sequence
296            number set to 0.
297
298    .. image:: Use-Case-2.png
299
300 Measurement Expansion Fields
301 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
302
303 When expansion fields are used, the goal is to avoid custom development
304 by the service provider collecting the fields, since custom development
305 adds obvious cost, delay and resource overhead. In the domain of
306 measurements, it is expected that a high percentage (perhaps as high as
307 90 percent) of use cases for extensible fields can be satisfied by using
308 the additionalMeasurements arrayOfNamedHashMap data structure in
309 combination with a YAML registration file (provided at design time). The
310 YAML registration file conveys meta-information about the processing of
311 additionalMeasurements. For more information, please see the VES Event
312 Registration specification and in particular the aggregationRole, castTo
313 and isHomogeneous keywords.
314
315 Syslogs
316 ~~~~~~~~
317
318 Syslog’s can be classified as either Control or Session/Traffic. They
319 differ by message content and expected volume:
320
321 - Control logs are generally free-form human-readable text used for
322   reporting errors or warnings supporting the operation and
323   troubleshooting of NFs.  The volume of these logs is typically less
324   than 2k per day.
325
326 - Session logs use common structured fields to report normal NF
327   processing such as DNS lookups or firewall rules processed.  The
328   volume of these logs is typically greater than 1k per hour (and
329   sometimes as high as 10k per second).
330
331 VES supports both classes of syslog, however VES is only recommended for
332 control logs or for lower volume session logs, less than 60k per hour.
333 High volume session logging should use a file-based transport solution.
334
335 Support for Protocols Other Than HTTPS
336 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
337
338 This API specification describes an HTTPS RESTful interface using the
339 JSON content-type.
340
341 Alternative API specifications may be provided in future using Google
342 Protobuf, websockets, or Apache Avro.
343
344 Configuration Requirements
345 ~~~~~~~~~~~~~~~~~~~~~~~~~~
346 This section provides network function configuration requirements for
347 connectivity to a VES Event Listener via a RESTful API, using a VES JSON event.
348
349 There are several methods available to provide configuration settings to a
350 network function. This document does not specify the exact manner in which
351 the configuration elements described below must be required. The
352 configuration can be provided during instantiation (e.g. preload), provided by
353 an ONAP controller action, or provided manually.
354
355 * **VES Event Listener IP Addresses or FQDNs resolved via DNS**: Two FQDNs
356   and/or IP Addresses are required. NF shall select one of the 2 FQDNs/IP
357   Addresses for sending events and if the NF is unable to get an
358   acknowledgement within predefined configurable time interval
359   or unable to establish a TCP connection due inability to resolve DNS query or
360   if the VES Event Listener is unresponsive, then the NF shall attempt to use
361   the other FQDN/IP Address to connect to VES Event Listener to deliver the
362   VES Events. The events shall only be sent to one VES Event Listener at a time.
363   Please note: If a FQDN is used, the DNS query would return a single IP
364   address.
365 * A single VES Event Listener may handle more than one type of VES event
366   (different domains); i.e. same VES Event Listener can receive and process
367   heartbeat, fault, measurement, syslog, etc. events.
368 * **VES Credentials**: If the NF is using Basic Authentication, then the NF
369   must support the provisioning of security and authentication parameters
370   (HTTP username and password) in order to be able to authenticate with the
371   VES Event Listener. The Username and Password should be set unique per NF
372   instance and should be configured during the NF deployment through a
373   Controller or other means. The same password must also be configured into VES
374   Event Listener instance for successful handshake.
375 * **VES Heartbeat Interval**: This must be a configurable parameter; current
376   default is 60 seconds. Note: the heartbeat interval should be greater than
377   the ack timeout value.
378 * **Measurement Interval**: For measurement events, the measurement interval
379   must be configurable and a default of 300 seconds.
380 * **ACK Timeout Interval**: Configurable, default 5 seconds.
381
382 Event Domain Requirements/Expectations
383 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
384
385 * **Heartbeat**: Heartbeat events must be sent to VES Event Listener based on
386   configurable parameter.
387 * **Faults**: Fault events must be sent to the VES Event Listener as soon as
388   they occur.
389 * **Measurements**: All measurement events must be sent at the configured
390   measurementInterval. If the NF provides both application and GuestOS
391   metrics, then they must both use the same measurementInterval.
392 * **Syslogs**: Syslog events should be sent to the VES Event Listener as soon as
393   created, unless the NF is in debug mode (verbose logging enabled to get
394   additional data to diagnose a problem), in which case the syslogs must be
395   stored locally in the NF, for later access and possible secure transfer.
396 * **Pre-defined Events Formats (Domain: Mobile Flow, TCA, State Chang, etc)**:
397   Other events (State change, TCA, Mobile Flow, etc) may use other pre-defined
398   VES domains from the VES Common Event Format specification based on the role
399   of the NF.
400 * **otherFields**: The otherFields Record defines fields for events belonging
401   to the otherFields domain of the Technology Independent domain enumeration.
402   This record provides a mechanism to convey a complex set of fields
403   and is purely intended to address miscellaneous needs such as addressing
404   time-to-market considerations or other proof-of-concept evaluations. Hence,
405   use of this record type is discouraged and should be minimized.
406
407 Use of Collector FQDNs and/or IP Address
408 ++++++++++++++++++++++++++++++++++++++++
409
410 * The NF must support two configurable endpoints for the VES Event Listener.
411   One will be the active, primary event listener endpoint.  The other
412   will be a standby event listener in the event the active endpoint is
413   unavailable.
414 * When sending an event (FM, PM, Syslog, HB), the NF shall establish an HTTPS
415   connection to one VES Event Listener FQDN/IP Address (if not already
416   established) and send a VES event to it. Note that connections are not
417   persistent. The events shall only be sent to only one VES Event Listener at a
418   time.
419 * The NF must be able to detect that a VES Event Listener endpoint is
420   unavailable, and trigger the fail-over to the backup endpoint. The mechanism
421   for detecting unavailability must be configurable by the Service Operator
422   (e.g. number of attempts, timeout value).
423 * If the NF is sending events to the VES Event Listener backup endpoint, then
424   the NF must poll the primary endpoint on a configurable interval to check
425   if the primary endpoint is now available. The NF may use the Heartbeat
426   event or another mechanism to test availability.  If the primary endpoint
427   becomes available, then the NF must fallback to the primary endpoint.
428 * A NF must only send a unique event to a single VES Event Listener endpoint
429   at a time.  In other words, the NF must not send a duplicate event to the
430   secondary endpoint unless the delivery to the primary endpoint failed.
431 * If both Primary and Secondary endpoints are not available, then the NF shall
432   buffer the events locally. Refer to the Buffering of Events section for full
433   details.
434 * If a NF is unable to establish a connection with a VES Event Listener or does
435   not get an acknowledgement within a specified time, then it should log this
436   failure and, optionally, send a fault event indicating
437   connection/acknowledgement failure via the alternate FQDN/IP Address. The
438   intent of this fault is to inform the Service Operator that the VES Event
439   Listener endpoint has become unreachable by the NF.
440
441
442 Versioning
443 ~~~~~~~~~~~
444
445 Three types of version numbers supported by this specification:
446
447 - The API specification itself is versioned. Going forward, the major
448   number of the specification version will be incremented whenever any
449   change could break an existing client (e.g., a field name is deleted
450   or changed). All other changes to the spec (e.g., a field name is
451   added, or text changes are made to the specification itself) will
452   increment only the minor number or patch number. Note that the major
453   number appears in REST resource URLs as v# (where ‘#’ is the major
454   number). Minor and patch numbers are communicated in HTTP headers.
455   For more information, see the API Versioning writeup in section 6.1.
456
457 - The JSON schema is versioned. Going forward, the major number of the
458   JSON schema will be incremented whenever any change could break an
459   existing client (e.g., a field name is deleted or changed). All other
460   changes to the schema (e.g., a field name is added or text changes
461   are made to the field descriptions) will increment only the minor
462   number or patch number.
463
464 - The field blocks are versioned. Field blocks include the
465   commonEventHeader and the domain blocks (e.g., the faultFields
466   block). Going forward, the major number of each field block will be
467   incremented whenever any change to that block could break an existing
468   client (e.g., a field name is deleted or changed). All other changes
469   to that block (e.g., a field name is added or text changes are made
470   to the field descriptions) will increment only the minor number.
471
472 Field Block Versions
473 +++++++++++++++++++++
474
475 A summary of the latest field block version enums as of this version of
476 the API spec is provided below:
477
478 - commonEventHeader version 4.1 (note: the enum with support 4.0,
479   4.0.1, 4.1 to avoid breaking clients of earlier versions of major
480   version 4)
481
482 - commonEventHeader vesEventListenerVersion enum: 7.1 (note: the enum
483   will support 7.0, 7.0.1, 7.1 to avoid breaking clients of earlier
484   versions of major version 7)
485
486 - faultFieldsVersion:4.0
487
488 - heartbeatFieldsVersion: 3.0
489
490 - measurementFieldsVersion: 4.0
491
492 - mobileFlowFieldsVersion: 4.0
493
494 - notificationFieldsVersion: 2.0
495
496 - otherFieldsVersion: 3.0
497
498 - perf3gppFieldsVersion: 1.0
499
500 - pnfRegistrationFieldsVersion: 2.0
501
502 - sigSignalingFieldsVersion: 3.0
503
504 - stateChangeFieldsVersion: 4.0
505
506 - syslogFieldsVersion: 4.0
507
508 - thresholdCrossingFieldsVersion: 4.0
509
510 - voiceQualityFieldsVersion: 4.0
511
512 Security
513 ^^^^^^^^
514
515 Event sources must identify themselves to the VES Event Listener.
516
517 There are 2 methods of HTTP authentication supported: Certificate Authentication
518 and Basic Authentication.
519
520 Basic authentication is supported in VES Event Listener for backward
521 compatibility for existing NFs that are already managed by ONAP. New NFs should
522 support Certificate Authentication. Because the security is better, NFs may
523 choose to only support Certificate Authentication and not support Basic
524 Authentication.
525
526 Basic Authentication
527 ~~~~~~~~~~~~~~~~~~~~
528
529 When using Basic Authentication, the event source must not pass credentials on
530 the query string.  Credentials must be sent in an Authorization header as
531 follows:
532
533 1. The username and password are formed into one string as
534    ``username:password``
535 2. The resulting string is Base64 encoded to produce the encoded credential.
536 3. The encoded credential is communicated in the header after the string
537    ``Authorization: Basic``
538
539 Because the credentials are merely encoded but not encrypted, HTTPS (rather
540 than HTTP) should be used.  HTTPS will also encrypt and protect event contents.
541
542 Sample Request and Response
543 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
544
545 Sample Request
546 ++++++++++++++
547
548 .. code-block:: http
549
550     POST /eventListener/v7 HTTP/1.1
551     Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
552     content-type: application/json
553     content-length: 12345
554     {
555         "event": {
556             "commonEventHeader": {
557                 "version": "4.1",
558                 "vesEventListenerVersion": "7.1.1",
559                 "domain": "heartbeat",
560                 "eventName": "Heartbeat_vIsbcMmc",
561                 "eventId": "heartbeat0000249",
562                 "sequence": 0,
563                 "priority": "Normal",
564                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
565                 "reportingEntityName": "ibcx0001vm002oam001",
566                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
567                 "sourceName": "ibcx0001vm002ssc001",
568                 "nfVendorName": "Ericsson",
569                 "nfNamingCode": "ibcx",
570                 "nfcNamingCode": "ssc",
571                 "startEpochMicrosec": 1413378172000000,
572                 "lastEpochMicrosec": 1413378172000000,
573                 "timeZoneOffset": "UTC-05:30"
574             }
575         }
576     }
577
578
579 Sample Success Response
580 ++++++++++++++++++++++++
581
582 .. code-block:: http
583
584     HTTPS/1.1 202 Accepted
585     X-MinorVersion: 1
586     X-PatchVersion: 1
587     X-LatestVersion: 7.1
588
589
590 Mutual TLS Certificate Authentication
591 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
592
593 When using Certificate Authentication, the event source must initialize the
594 HTTPS connection with TLS 1.2 or higher and execute mutual authentication
595 procedures according to `RFC5246 <https://tools.ietf.org/html/rfc5246#section-7.4.6>`__.
596 The event source must authenticate the VES Listener certificate and must
597 provide its own X.509v3 end-entity certificate to the VES Listener for
598 authentication. The Subject Name in the end-entity certificate must be used
599 according to `RFC5280 <https://www.ietf.org/rfc/rfc5280.txt>`__. If a
600 certificate is provided by the NF but it is invalid, the VES Listener is
601 expected to reject the connection and not fall back to basic authentication.
602
603 Resource Structure
604 ^^^^^^^^^^^^^^^^^^
605
606 REST resources are defined with respect to a ServerRoot:
607
608 ServerRoot = https://{Domain|IP}:{Port}/{optionalRoutingPath}
609
610 The resource structure is provided below::
611
612     {ServerRoot}
613         |
614         |--- /eventListener/v{apiVersion}
615                  |
616                  |--- /eventBatch
617
618 **Figure 1**: REST Resource Structure
619
620 The {Port} above is typically 8443.
621
622 Common Event Format
623 ^^^^^^^^^^^^^^^^^^^^
624
625 A JSON schema describing the Common Event Format is provided below and
626 is reproduced in the tables that follow.
627
628 :download:`JSON <CommonEventFormat_30.1.1_ONAP.json>`
629
630
631 Note on optional fields:
632
633     If the event publisher collects a field that is identified as
634     optional in the data structures below, then the event publisher
635     *must* send that field.
636
637 Note on extensible fields:
638
639     VES contains various extensible structures (e.g., hashMap) that
640     enable event publishers to send information that has not been
641     explicitly defined in VES data structures.
642
643 -  Event publishers *must not* send information through extensible
644    structures where VES has explicitly defined fields for that
645    information. For example, event publishers *must not* send
646    information like cpuIdle, through an extensible structure, because
647    VES has explicitly defined a cpuUsage.cpuIdle field for the
648    communication of that information.
649
650 -  Keys sent through extensible fields should use camel casing to separate
651    words and acronyms; only the first letter of each acronym shall be
652    capitalized.
653
654 Common Event Datatypes
655 ~~~~~~~~~~~~~~~~~~~~~~~~
656
657 Datatype: arrayOfJsonObject
658 ++++++++++++++++++++++++++++
659
660 The arrayOfJsonObject datatype provides an array of json objects, each
661 of which is describ ed by name, schema and other meta-information. It
662 consists of the following fields:
663
664 +---------------------+------------------+----------+----------------------+
665 | Field               | Type             | Required?| Description          |
666 +=====================+==================+==========+======================+
667 | arrayOfJsonObject   | jsonObject [ ]   | Yes      | Array of jsonObject  |
668 +---------------------+------------------+----------+----------------------+
669
670 Datatype: arrayOfNamedHashMap
671 ++++++++++++++++++++++++++++++
672
673 The arrayOfNamedHashMap datatype provides an array of hashMaps, each of
674 which is associated with a descriptive name. It consists of the
675 following fields:
676
677 +---------------------+------------------+-----------+-----------------------+
678 | Field               | Type             | Required? | Description           |
679 +=====================+==================+===========+=======================+
680 | arrayOfNamedHashMap | namedHashMap [ ] | Yes       | Array of namedHashMap |
681 +---------------------+------------------+-----------+-----------------------+
682
683 Datatype: event
684 ++++++++++++++++
685
686 The event datatype consists of the following fields which constitute the
687 ‘root level’ of the common event format:
688
689 +--------------+--------------+-----------+-----------------------------------+
690 | Field        | Type         | Required? | Description                       |
691 +==============+==============+===========+===================================+
692 | commonEvent\ | commonEvent\ | Yes       | Fields common to all events       |
693 | Header       | Header       |           |                                   |
694 +--------------+--------------+-----------+-----------------------------------+
695 | faultFields  | faultFields  | No        | Fields specific to fault events   |
696 +--------------+--------------+-----------+-----------------------------------+
697 | heartbeat\   | heartbeat\   | No        | Fields specific to heartbeat      |
698 | Fields       | Fields       |           | events                            |
699 +--------------+--------------+-----------+-----------------------------------+
700 | measurement\ | measurement\ | No        | Fields specific to measurement    |
701 | Fields       | Fields       |           | events                            |
702 +--------------+--------------+-----------+-----------------------------------+
703 | mobileFlow\  | mobileFlow\  | No        | Fields specific to mobility flow  |
704 | Fields       | Fields       |           | events                            |
705 +--------------+--------------+-----------+-----------------------------------+
706 | notification\| notification\| No        | Fields specific to notification   |
707 | Fields       | Fields       |           | events                            |
708 +--------------+--------------+-----------+-----------------------------------+
709 | otherFields  | otherFields  | No        | Fields specific to other types of |
710 |              |              |           | events                            |
711 +--------------+--------------+-----------+-----------------------------------+
712 | perf3gpp\    | perf3gpp\    | No        | Fields specific to perf3gpp       |
713 | Fields       | Fields       |           | events                            |
714 +--------------+--------------+-----------+-----------------------------------+
715 | pnf\         | pnf\         | No        | Fields specific to pnfRegistration|
716 | Registration\| Registration\|           | events                            |
717 | Fields       | Fields       |           |                                   |
718 +--------------+--------------+-----------+-----------------------------------+
719 | sipSignaling\| sipSignaling\| No        | Fields specific to sipSignaling   |
720 | Fields       | Fields       |           | events                            |
721 +--------------+--------------+-----------+-----------------------------------+
722 | stateChange\ | stateChange\ | No        | Fields specific to state change   |
723 | Fields       | Fields       |           | events                            |
724 +--------------+--------------+-----------+-----------------------------------+
725 | syslogFields | syslogFields | No        | Fields specific to syslog events  |
726 +--------------+--------------+-----------+-----------------------------------+
727 | threshold\   | threshold\   | No        | Fields specific to threshold      |
728 | Crossing\    | Crossing\    |           | crossing alert events             |
729 | AlertFields  | AlertFields  |           |                                   |
730 +--------------+--------------+-----------+-----------------------------------+
731 | voiceQuality\| voiceQuality\| No        | Fields specific to voiceQuality   |
732 | Fields       | Fields       |           | events                            |
733 +--------------+--------------+-----------+-----------------------------------+
734
735 Datatype: eventList
736 ++++++++++++++++++++
737
738 The eventList datatype consists of the following fields:
739
740 +-------------+-------------+----------+-------------------+
741 | Field       | Type        | Required?| Description       |
742 +=============+=============+==========+===================+
743 | eventList   | event [ ]   | Yes      | Array of events   |
744 +-------------+-------------+----------+-------------------+
745
746 Datatype: hashMap
747 +++++++++++++++++++
748
749 The hashMap datatype is an ‘associative array’, which is an unordered
750 collection of key-value pairs of the form "key": "value", where each key
751 and value are strings. Keys should use camel casing to separate words and
752 acronyms; only the first letter of each acronym should be capitalized.
753
754 Datatype: jsonObject
755 ++++++++++++++++++++
756
757 The jsonObject datatype provides a json object schema, name and other
758 meta-information along with one or more object instances that conform to
759 the schema:
760
761 +--------------+--------------+-----------+----------------------------------+
762 | Field        | Type         | Required? | Description                      |
763 +==============+==============+===========+==================================+
764 | object\      | JsonObject\  | Yes       | Contains one or more instances of|
765 | Instances    | Instance [ ] |           | the json object                  |
766 +--------------+--------------+-----------+----------------------------------+
767 | objectName   | string       | Yes       | Name of the json object          |
768 +--------------+--------------+-----------+----------------------------------+
769 | objectSchema | string       | No        | json schema for the object       |
770 +--------------+--------------+-----------+----------------------------------+
771 | objectSchema\| string       | No        | URL to the json schema for the   |
772 | Url          |              |           | object                           |
773 +--------------+--------------+-----------+----------------------------------+
774 | nfSubscribed\| string       | No        | Name of the object associated    |
775 | ObjectName   |              |           | with the nfSubscriptionId        |
776 +--------------+--------------+-----------+----------------------------------+
777 | nf\          | string       | No        | Identifies an openConfig         |
778 | Subscription\|              |           | telemetry subscription on a      |
779 | Id           |              |           | network function, which          |
780 |              |              |           | configures the network function  |
781 |              |              |           | to send complex object data      |
782 |              |              |           | associated with the jsonObject   |
783 +--------------+--------------+-----------+----------------------------------+
784
785 Datatype: jsonObjectInstance
786 +++++++++++++++++++++++++++++
787
788 The jsonObjectInstance datatype provides meta-information about an
789 instance of a jsonObject along with the actual object instance:
790
791 +----------------+------------+----------+-----------------------------------+
792 | Field          | Type       | Required?| Description                       |
793 +================+============+==========+===================================+
794 | jsonObject     | jsonObject | No       | Optional recursive specification  |
795 |                |            |          | of jsonObject                     |
796 +----------------+------------+----------+-----------------------------------+
797 | objectInstance | object     | No       | Contains an instance conforming to|
798 |                |            |          | the jsonObject schema             |
799 +----------------+------------+----------+-----------------------------------+
800 | objectInstance\| number     | No       | the unix time, aka epoch time,    |
801 | EpochMicrosec  |            |          | associated with this              |
802 |                |            |          | objectInstance--as microseconds   |
803 |                |            |          | elapsed since 1 Jan 1970 not      |
804 |                |            |          | including leap seconds            |
805 +----------------+------------+----------+-----------------------------------+
806 | objectKeys     | key [ ]    | No       | An ordered set of keys that       |
807 |                |            |          | identifies this particular        |
808 |                |            |          | instance of jsonObject (e.g., that|
809 |                |            |          | places it in a hierarchy)         |
810 +----------------+------------+----------+-----------------------------------+
811
812 Datatype: key
813 +++++++++++++++
814
815 The key datatype is a tuple which provides the name of a key along with
816 its value and relative order; it consists of the following fields:
817
818 +----------+---------+-----------+-------------------------------------------+
819 | Field    | Type    | Required? | Description                               |
820 +==========+=========+===========+===========================================+
821 | keyName  | string  | Yes       | Name of the key                           |
822 +----------+---------+-----------+-------------------------------------------+
823 | keyOrder | Integer | No        | Relative sequence or order of the key     |
824 |          |         |           | (with respect to other keys)              |
825 +----------+---------+-----------+-------------------------------------------+
826 | keyValue | string  | No        | Value of the key                          |
827 +----------+---------+-----------+-------------------------------------------+
828
829 Datatype: namedHashMap
830 ++++++++++++++++++++++++
831
832 The namedHashMap datatype is a hashMap which is associated with and
833 described by a name; it consists of the following fields:
834
835 +---------+---------+-----------+--------------------------------------------+
836 | Field   | Type    | Required? | Description                                |
837 +=========+=========+===========+============================================+
838 | name    | string  | Yes       | Name associated with or describing the     |
839 |         |         |           | hashmap                                    |
840 +---------+---------+-----------+--------------------------------------------+
841 | hashMap | hashMap | Yes       | One or more key:value pairs                |
842 +---------+---------+-----------+--------------------------------------------+
843
844 Datatype: requestError
845 +++++++++++++++++++++++
846
847 The requestError datatype defines the standard request error data
848 structure:
849
850 +-----------+--------+-----------+-------------------------------------------+
851 | Field     | Type   | Required? | Description                               |
852 +===========+========+===========+===========================================+
853 | messageId | string | Yes       | Unique message identifier of the format   |
854 |           |        |           | ‘ABCnnnn’ where ‘ABC’ is either ‘SVC’ for |
855 |           |        |           | Service Exceptions or ‘POL’ for Policy    |
856 |           |        |           | Exception. Exception numbers may be in the|
857 |           |        |           | range of 0001 to 9999 where 0001 to 2999  |
858 |           |        |           | are defined by OMA (see section 5.1) and  |
859 |           |        |           | 3000-9999 are available and undefined.    |
860 +-----------+--------+-----------+-------------------------------------------+
861 | text      | string | Yes       | Message text, with replacement variables  |
862 |           |        |           | marked with %n, where n is an index into  |
863 |           |        |           | the list of <variables> elements, starting|
864 |           |        |           | at 1                                      |
865 +-----------+--------+-----------+-------------------------------------------+
866 | url       | string | No        | Hyperlink to a detailed error resource    |
867 |           |        |           | e.g., an HTML page for browser user agents|
868 +-----------+--------+-----------+-------------------------------------------+
869 | variables | string | No        | List of zero or more strings that         |
870 |           |        |           | represent the contents of the variables   |
871 |           |        |           | used by the message text                  |
872 +-----------+--------+-----------+-------------------------------------------+
873
874 Datatype: vendorNfNameFields
875 +++++++++++++++++++++++++++++
876
877 The vendorNfNameFields provides vendor, nf and nfModule identifying
878 information:
879
880 +--------------+--------+-----------+----------------------------------------+
881 | Field        | Type   | Required? | Description                            |
882 +==============+========+===========+========================================+
883 | vendorName   | string | Yes       | Network function vendor name           |
884 +--------------+--------+-----------+----------------------------------------+
885 | nfModuleName | string | No        | Name of the nfModule generating the    |
886 |              |        |           | event                                  |
887 +--------------+--------+-----------+----------------------------------------+
888 | nfName       | string | No        | Name of the network function generating|
889 |              |        |           | the event                              |
890 +--------------+--------+-----------+----------------------------------------+
891
892 Common Event Header Data Types
893 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
894
895 Datatype: commonEventHeader
896 ++++++++++++++++++++++++++++
897
898 The commonEventHeader datatype consists of the following fields common
899 to all events:
900
901 +-----------+----------+-----------+-----------------------------------------+
902 | Field     | Type     | Required? |  Description                            |
903 +===========+==========+===========+=========================================+
904 | domain    | string   | Yes       | Event domain enumeration: ‘fault’,      |
905 |           |          |           | ‘heartbeat’, ‘measurement’, ‘mobileFlow’|
906 |           |          |           | , ‘notification’, ‘other’, ‘perf3gpp’,  |
907 |           |          |           | ‘pnfRegistration’, ‘sipSignaling’,      |
908 |           |          |           | ‘stateChange’, ‘syslog’,                |
909 |           |          |           | ‘thresholdCrossingAlert’, ‘voiceQuality’|
910 +-----------+----------+-----------+-----------------------------------------+
911 | eventId   | string   | Yes       | Event key that is unique to the event   |
912 |           |          |           | source. The key must be unique within   |
913 |           |          |           | notification life cycle similar to      |
914 |           |          |           | EventID from 3GPP. It could be a        |
915 |           |          |           | sequential number, or a composite key   |
916 |           |          |           | formed from the event fields, such as   |
917 |           |          |           | domain\_sequence. The eventId should not|
918 |           |          |           | include whitespace. For fault events,   |
919 |           |          |           | eventId is the eventId of the initial   |
920 |           |          |           | alarm; if the same alarm is raised again|
921 |           |          |           | for changed, acknowledged or cleared    |
922 |           |          |           | cases, eventId must be the same as the  |
923 |           |          |           | initial alarm (along with the same      |
924 |           |          |           | startEpochMicrosec but with a different |
925 |           |          |           | sequence number). Note: see section 1.3 |
926 |           |          |           | for eventId use case examples.          |
927 +-----------+----------+-----------+-----------------------------------------+
928 | eventName | string   | Yes       |                                         |
929 +-----------+----------+-----------+-----------------------------------------+
930 | eventType | string   | No        |                                         |
931 +-----------+----------+-----------+-----------------------------------------+
932 | internal\ | internal\| No        | Fields (not supplied by event sources)  |
933 | Header    | Header   |           | that the VES Event Listener service can |
934 | Fields    | Fields   |           | use to enrich the event if needed for   |
935 |           |          |           | efficient internal processing. This is  |
936 |           |          |           | an empty object which is intended to be |
937 |           |          |           | defined separately by each service      |
938 |           |          |           | provider (e.g., AT&T) implementing the  |
939 |           |          |           | VES Event Listener.                     |
940 +-----------+----------+-----------+-----------------------------------------+
941 | lastEpoch\| number   | Yes       | the latest unix time aka epoch time     |
942 | Microsec  |          |           | associated with the event from any      |
943 |           |          |           | component--as microseconds elapsed since|
944 |           |          |           | 1 Jan 1970 not including leap seconds   |
945 +-----------+----------+-----------+-----------------------------------------+
946 | nfcNaming\| string   | No        | Network function component type: 3      |
947 | Code      |          |           | characters (aligned with vfc naming     |
948 |           |          |           | standards)                              |
949 +-----------+----------+-----------+-----------------------------------------+
950 | nfNaming\ | string   | No        | Network function type: 4 characters     |
951 | Code      |          |           | (aligned with vnf and pnf naming        |
952 |           |          |           | standards)                              |
953 +-----------+----------+-----------+-----------------------------------------+
954 | nfVendor\ | string   | No        |                                         |
955 | Name      |          |           |                                         |
956 +-----------+----------+-----------+-----------------------------------------+
957 | priority  | string   | Yes       |                                         |
958 +-----------+----------+-----------+-----------------------------------------+
959 | reporting\| string   | No        | UUID identifying the entity reporting   |
960 | EntityId  |          |           | the event or detecting a problem in     |
961 |           |          |           | another vnf/vm or pnf which is          |
962 |           |          |           | experiencing the problem. (Note: the    |
963 |           |          |           | AT&T internal enrichment process shall  |
964 |           |          |           | ensure that this field is populated).   |
965 |           |          |           | The reportingEntityId is an id for the  |
966 |           |          |           | reportingEntityName. See                |
967 |           |          |           | ‘reportingEntityName’ for more          |
968 |           |          |           | information.                            |
969 +-----------+----------+-----------+-----------------------------------------+
970 | reporting\| string   | Yes       | Name of the entity reporting the event  |
971 | EntityName|          |           | or detecting a problem in another vnf/vm|
972 |           |          |           | or pnf which is experiencing the        |
973 |           |          |           | problem. May be the same as the         |
974 |           |          |           | sourceName. For synthetic events        |
975 |           |          |           | generated by DCAE, it is the name of the|
976 |           |          |           | app generating the event.               |
977 +-----------+----------+-----------+-----------------------------------------+
978 | sequence  | integer  | Yes       | Ordering of events communicated by an   |
979 |           |          |           | event source instance (or 0 if not      |
980 |           |          |           | needed)                                 |
981 +-----------+----------+-----------+-----------------------------------------+
982 | sourceId  | string   | No        | UUID identifying the entity experiencing|
983 |           |          |           | the event issue, which may be detected  |
984 |           |          |           | and reported by a separate reporting    |
985 |           |          |           | entity (note: the AT&T internal         |
986 |           |          |           | enrichment process shall ensure that    |
987 |           |          |           | this field is populated). The sourceId  |
988 |           |          |           | is an id for the sourceName. See        |
989 |           |          |           | ‘sourceName’ for more information.      |
990 +-----------+----------+-----------+-----------------------------------------+
991 | sourceName| string   | Yes       | Name of the entity experiencing the     |
992 |           |          |           | event issue, which may be detected and  |
993 |           |          |           | reported by a separate reporting entity.|
994 |           |          |           | The sourceName identifies the device for|
995 |           |          |           | which data is collected. A valid        |
996 |           |          |           | sourceName must be inventoried in A&AI. |
997 |           |          |           | If sourceName is a xNF (vnf or pnf),    |
998 |           |          |           | xNFC or VM, then the event must be      |
999 |           |          |           | reporting data for that particular xNF, |
1000 |           |          |           | xNFC or VM. If the sourceName is a xNF, |
1001 |           |          |           | comprised of multiple xNFCs, the data   |
1002 |           |          |           | must be reported/aggregated at the xNF  |
1003 |           |          |           | level. Data for individual xNFC must not|
1004 |           |          |           | be included in the xNF sourceName event.|
1005 +-----------+----------+-----------+-----------------------------------------+
1006 | start\    | number   | Yes       | the earliest unix time aka epoch time   |
1007 | Epoch\    |          |           | associated with the event from any      |
1008 | Microsec  |          |           | component--as microseconds elapsed since|
1009 |           |          |           | 1 Jan 1970 not including leap seconds.  |
1010 |           |          |           | For measurements and heartbeats, where  |
1011 |           |          |           | events are collected over predefined    |
1012 |           |          |           | intervals, startEpochMicrosec shall be  |
1013 |           |          |           | rounded to the nearest interval boundary|
1014 |           |          |           | (e.g., the epoch equivalent of 3:00PM,  |
1015 |           |          |           | 3:10PM, 3:20PM, etc…). For fault events,|
1016 |           |          |           | startEpochMicrosec is the timestamp of  |
1017 |           |          |           | the initial alarm; if the same alarm is |
1018 |           |          |           | raised again for changed, acknowledged  |
1019 |           |          |           | or cleared cases, startEpoch Microsec   |
1020 |           |          |           | must be the same as the initial alarm   |
1021 |           |          |           | (along with the same eventId and an     |
1022 |           |          |           | incremental sequence number). For       |
1023 |           |          |           | devices with no timing source (clock),  |
1024 |           |          |           | the default value will be 0 and the VES |
1025 |           |          |           | collector will replace it with Collector|
1026 |           |          |           | time stamp (when the event is received) |
1027 +-----------+----------+-----------+-----------------------------------------+
1028 | timeZone\ | string   | No        | Offset to GMT to indicate local time    |
1029 | Offset    |          |           | zone for device formatted as            |
1030 |           |          |           | ‘UTC+/-hh:mm’; see                      |
1031 |           |          |           | time_zone_abbreviations_ for UTC offset |
1032 |           |          |           | examples                                |
1033 +-----------+----------+-----------+-----------------------------------------+
1034 | version   | string   | Yes       | Version of the event header as "#.#"    |
1035 |           |          |           | where # is a digit; see section 1 for   |
1036 |           |          |           | the correct digits to use.              |
1037 +-----------+----------+-----------+-----------------------------------------+
1038 | vesEvent\ | string   | Yes       | Version of the ves event listener api   |
1039 | Listener\ |          |           | spec that this event is compliant with  |
1040 | Version   |          |           | (as "#" or "#.#" or "#.#.#" where # is a|
1041 |           |          |           | digit; see section 1 for the correct    |
1042 |           |          |           | digits to use).                         |
1043 +-----------+----------+-----------+-----------------------------------------+
1044
1045 Datatype: internalHeaderFields
1046 ++++++++++++++++++++++++++++++
1047
1048 The internalHeaderFields datatype is an undefined object which can
1049 contain arbitrarily complex JSON structures. It is intended to be
1050 defined separately by each service provider (e.g., AT&T) implementing
1051 the VES Event Listener. The fields in internalHeaderFields are not
1052 provided by any event source but instead are added by the VES Event
1053 Listener service itself as part of an event enrichment process necessary
1054 for efficient internal processing of events received by the VES Event
1055 Listener.
1056
1057 Technology Independent Datatypes
1058 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1059
1060 ‘Fault’ Domain Datatypes
1061 +++++++++++++++++++++++++
1062
1063 Datatype: faultFields
1064 *********************
1065
1066 The faultFields datatype consists of the following fields:
1067
1068 +-----------------+---------+-----------+-------------------------------------+
1069 | Field           | Type    | Required? | Description                         |
1070 +=================+=========+===========+=====================================+
1071 | alarmAdditional | hashMap | No        | Additional alarm information.       |
1072 | Information     |         |           |                                     |
1073 |                 |         |           |                                     |
1074 |                 |         |           | - Note1: for SNMP mapping to VES,   |
1075 |                 |         |           |   for hash key use OID of varbind,  |
1076 |                 |         |           |   for value use incoming data for   |
1077 |                 |         |           |   that varbind).                    |
1078 |                 |         |           |                                     |
1079 |                 |         |           | - Note2: Alarm ID for 3GPP should be|
1080 |                 |         |           |   included (if applicable) in       |
1081 |                 |         |           |   alarmAdditonalInformation as      |
1082 |                 |         |           |   ‘alarmId’:’alarmIdValue’.         |
1083 |                 |         |           |                                     |
1084 |                 |         |           | Could contain managed object        |
1085 |                 |         |           | instance as separate key:value;     |
1086 |                 |         |           | could add probable cause as separate|
1087 |                 |         |           | key:value.                          |
1088 +-----------------+---------+-----------+-------------------------------------+
1089 | alarmCondition  | string  | Yes       | Short name of the alarm             |
1090 |                 |         |           | condition/problem, such as a trap   |
1091 |                 |         |           | name. Should not have white space   |
1092 |                 |         |           | (e.g., tpLgCgiNotInConfig,          |
1093 |                 |         |           | BfdSessionDown, linkDown, etc…)     |
1094 +-----------------+---------+-----------+-------------------------------------+
1095 | alarmInterfaceA | string  | No        | Card, port, channel or interface    |
1096 |                 |         |           | name of the device generating the   |
1097 |                 |         |           | alarm. This could reflect managed   |
1098 |                 |         |           | object.                             |
1099 +-----------------+---------+-----------+-------------------------------------+
1100 | eventCategory   | string  | No        | Event category, for example:        |
1101 |                 |         |           | ‘license’, ‘link’, ‘routing’,       |
1102 |                 |         |           | ‘security’, ‘signaling’             |
1103 +-----------------+---------+-----------+-------------------------------------+
1104 | eventSeverity   | string  | Yes       | Event severity enumeration:         |
1105 |                 |         |           | ‘CRITICAL’, ‘MAJOR’, ‘MINOR’,       |
1106 |                 |         |           | ‘WARNING’, ‘NORMAL’. NORMAL is used |
1107 |                 |         |           | to represent clear.                 |
1108 +-----------------+---------+-----------+-------------------------------------+
1109 | eventSourceType | string  | Yes       | Examples: ‘card’, ‘host’, ‘other’,  |
1110 |                 |         |           | ‘port’, ‘portThreshold’, ‘router’,  |
1111 |                 |         |           | ‘slotThreshold’, ‘switch’,          |
1112 |                 |         |           | ‘virtualMachine’,                   |
1113 |                 |         |           | ‘virtualNetworkFunction’. This could|
1114 |                 |         |           | be managed object class.            |
1115 +-----------------+---------+-----------+-------------------------------------+
1116 | faultFields\    | string  | Yes       | Version of the faultFields block as |
1117 | Version         |         |           | "#.#" where # is a digit; see       |
1118 |                 |         |           | section 1 for the correct digits to |
1119 |                 |         |           | use.                                |
1120 +-----------------+---------+-----------+-------------------------------------+
1121 | specificProblem | string  | Yes       | Description of the alarm or problem |
1122 |                 |         |           | (e.g., ‘eNodeB 155197 in PLMN       |
1123 |                 |         |           | 310-410 with eNodeB name KYL05197 is|
1124 |                 |         |           | lost’). 3GPP probable cause would be|
1125 |                 |         |           | included in this field.             |
1126 +-----------------+---------+-----------+-------------------------------------+
1127 | vfStatus        | string  | Yes       | Virtual function status enumeration:|
1128 |                 |         |           | ‘Active’, ‘Idle’, ‘Preparing to     |
1129 |                 |         |           | terminate’, ‘Ready to terminate’,   |
1130 |                 |         |           | ‘Requesting Termination’            |
1131 +-----------------+---------+-----------+-------------------------------------+
1132
1133 Heartbeat’ Domain Datatypes
1134 ++++++++++++++++++++++++++++
1135
1136 Datatype: heartbeatFields
1137 *************************
1138
1139 The heartbeatFields datatype is an optional field block for fields
1140 specific to heartbeat events; it consists of the following fields:
1141
1142 +---------------+---------+-----------+---------------------------------------+
1143 | Field         | Type    | Required? | Description                           |
1144 +===============+=========+===========+=======================================+
1145 | additional\   | hashMap | No        | Additional expansion fields if needed |
1146 | Fields        |         |           |                                       |
1147 +---------------+---------+-----------+---------------------------------------+
1148 | heartbeat\    | string  | Yes       | Version of the heartbeatFields block  |
1149 | FieldsVersion |         |           | as "#.#" where # is a digit; see      |
1150 |               |         |           | section 1 for the correct digits to   |
1151 |               |         |           | use.                                  |
1152 +---------------+---------+-----------+---------------------------------------+
1153 | heartbeat\    | Integer | Yes       | Current heartbeatInterval in seconds  |
1154 | Interval      |         |           |                                       |
1155 +---------------+---------+-----------+---------------------------------------+
1156
1157 ‘Measurements’ Domain Datatypes
1158 ++++++++++++++++++++++++++++++++
1159
1160 Note: NFs are required to report exactly one Measurement event per
1161 period per sourceName.
1162
1163 Datatype: codecsInUse
1164 *********************
1165
1166 The codecsInUse datatype consists of the following fields describing the
1167 number of times an identified codec was used over the
1168 measurementInterval:
1169
1170 +------------------+-----------+----------+--------------------------------+
1171 | Field            | Type      | Required?| Description                    |
1172 +==================+===========+==========+================================+
1173 | codecIdentifer   | string    | Yes      | Description of the codec       |
1174 +------------------+-----------+----------+--------------------------------+
1175 | numberInUse      | integer   | Yes      | Number of such codecs in use   |
1176 +------------------+-----------+----------+--------------------------------+
1177
1178 Datatype: cpuUsage
1179 *******************
1180
1181 The cpuUsage datatype defines the usage of an identifier CPU and
1182 consists of the following fields:
1183
1184 +------------+--------+-----------+-------------------------------------------+
1185 | Field      | Type   | Required? | Description                               |
1186 +============+========+===========+===========================================+
1187 | cpu\       | number | No        | The amount of time the CPU cannot run due |
1188 | Capacity\  |        |           | to contention, in milliseconds over the   |
1189 | Contention |        |           | measurementInterval                       |
1190 +------------+--------+-----------+-------------------------------------------+
1191 | cpu\       | number | No        | The total CPU time that the NF/NFC/VM     |
1192 | Demand\    |        |           | could use if there was no contention, in  |
1193 | Avg        |        |           | milliseconds over the measurementInterval |
1194 +------------+--------+-----------+-------------------------------------------+
1195 | cpu\       | number | No        | CPU demand in MHz                         |
1196 | Demand\    |        |           |                                           |
1197 | Mhz        |        |           |                                           |
1198 +------------+--------+-----------+-------------------------------------------+
1199 | cpu\       | number | No        | CPU demand as a percentage of the         |
1200 | Demand\    |        |           | provisioned capacity                      |
1201 | Pct        |        |           |                                           |
1202 +------------+--------+-----------+-------------------------------------------+
1203 | cpu\       | string | Yes       | CPU Identifier                            |
1204 | Identifier |        |           |                                           |
1205 +------------+--------+-----------+-------------------------------------------+
1206 | cpu\       | number | No        | Percentage of CPU time spent in the idle  |
1207 | Idle       |        |           | task                                      |
1208 +------------+--------+-----------+-------------------------------------------+
1209 | cpu\       | number | No        | Percentage of time the VM is unable to run|
1210 | Latency\   |        |           | because it is contending for access to the|
1211 | Avg        |        |           | physical CPUs                             |
1212 +------------+--------+-----------+-------------------------------------------+
1213 | cpu\       | number | No        | The overhead demand above available       |
1214 | Overhead\  |        |           | allocations and reservations, in          |
1215 | Avg        |        |           | milliseconds over the measurementInterval |
1216 +------------+--------+-----------+-------------------------------------------+
1217 | cpuSwap\   | number | No        | Swap wait time, in milliseconds over the  |
1218 | WaitTime   |        |           | measurementInterval                       |
1219 +------------+--------+-----------+-------------------------------------------+
1220 | cpuUsage\  | number | No        | Percentage of time spent servicing        |
1221 | Interrupt  |        |           | interrupts                                |
1222 +------------+--------+-----------+-------------------------------------------+
1223 | cpuUsage\  | number | No        | Percentage of time spent running user     |
1224 | Nice       |        |           | space processes that have been niced      |
1225 +------------+--------+-----------+-------------------------------------------+
1226 | cpuUsage\  | number | No        | Percentage of time spent handling soft irq|
1227 | SoftIrq    |        |           | interrupts                                |
1228 +------------+--------+-----------+-------------------------------------------+
1229 | cpuUsage\  | number | No        | Percentage of time spent in involuntary   |
1230 | Steal      |        |           | wait which is neither user, system or idle|
1231 |            |        |           | time and is effectively time that went    |
1232 |            |        |           | missing                                   |
1233 +------------+--------+-----------+-------------------------------------------+
1234 | cpuUsage\  | number | No        | Percentage of time spent on system tasks  |
1235 | System     |        |           | running the kernel                        |
1236 +------------+--------+-----------+-------------------------------------------+
1237 | cpuUsage\  | number | No        | Percentage of time spent running un-niced |
1238 | User       |        |           | user space processes                      |
1239 +------------+--------+-----------+-------------------------------------------+
1240 | cpuWait    | number | No        | Percentage of CPU time spent waiting for  |
1241 |            |        |           | I/O operations to complete                |
1242 +------------+--------+-----------+-------------------------------------------+
1243 | percent\   | number | Yes       | Aggregate cpu usage of the virtual machine|
1244 | Usage      |        |           | on which the xNFC reporting the event is  |
1245 |            |        |           | running                                   |
1246 +------------+--------+-----------+-------------------------------------------+
1247
1248 Datatype: diskUsage
1249 ********************
1250
1251 The diskUsage datatype defines the usage of a disk and consists of the
1252 following fields:
1253
1254 +-------------+-------+----------+--------------------------------------------+
1255 | Field       | Type  | Required?| Description                                |
1256 +=============+=======+==========+============================================+
1257 | diskBus\    | number| No       | Number of bus resets over the              |
1258 | Resets      |       |          | measurementInterval                        |
1259 +-------------+-------+----------+--------------------------------------------+
1260 | disk\       | number| No       | Number of disk commands aborted over the   |
1261 | Commands\   |       |          | measurementInterval                        |
1262 | Aborted     |       |          |                                            |
1263 +-------------+-------+----------+--------------------------------------------+
1264 | disk\       | number| No       | Average number of commands per second over |
1265 | CommandsAvg |       |          | the measurementInterval                    |
1266 +-------------+-------+----------+--------------------------------------------+
1267 | diskFlush\  | number| No       | Total flush requests of the disk cache over|
1268 | Requests    |       |          | the measurementInterval                    |
1269 +-------------+-------+----------+--------------------------------------------+
1270 | diskFlush\  | number| No       | Milliseconds spent on disk cache flushing  |
1271 | Time        |       |          | over the measurementInterval               |
1272 +-------------+-------+----------+--------------------------------------------+
1273 | disk\       | string| Yes      | Disk Identifier                            |
1274 | Identifier  |       |          |                                            |
1275 +-------------+-------+----------+--------------------------------------------+
1276 | diskIo\     | number| No       | Milliseconds spent doing input/output      |
1277 | TimeAvg     |       |          | operations over 1 sec; treat this metric as|
1278 |             |       |          | a device load percentage where 1000ms      |
1279 |             |       |          | matches 100% load; provide the average over|
1280 |             |       |          | the measurement interval                   |
1281 +-------------+-------+----------+--------------------------------------------+
1282 | diskIoTime\ | number| No       | Milliseconds spent doing input/output      |
1283 | Last        |       |          | operations over 1 sec; treat this metric as|
1284 |             |       |          | a device load percentage where 1000ms      |
1285 |             |       |          | matches 100% load; provide the last value  |
1286 |             |       |          | measurement within the measurement interval|
1287 +-------------+-------+----------+--------------------------------------------+
1288 | diskIo\     | number| No       | Milliseconds spent doing input/output      |
1289 | TimeMax     |       |          | operations over 1 sec; treat this metric as|
1290 |             |       |          | a device load percentage where 1000ms      |
1291 |             |       |          | matches 100% load; provide the maximum     |
1292 |             |       |          | value measurement within the measurement   |
1293 |             |       |          | interval                                   |
1294 +-------------+-------+----------+--------------------------------------------+
1295 | diskIo\     | number| No       | Milliseconds spent doing input/output      |
1296 | TimeMin     |       |          | operations over 1 sec; treat this metric as|
1297 |             |       |          | a device load percentage where 1000ms      |
1298 |             |       |          | matches 100% load; provide the minimum     |
1299 |             |       |          | value measurement within the measurement   |
1300 |             |       |          | interval                                   |
1301 +-------------+-------+----------+--------------------------------------------+
1302 | diskMerged\ | number| No       | Number of logical read operations that were|
1303 | ReadAvg     |       |          | merged into physical read operations, e.g.,|
1304 |             |       |          | two logical reads were served by one       |
1305 |             |       |          | physical disk access; provide the average  |
1306 |             |       |          | measurement within the measurement interval|
1307 +-------------+-------+----------+--------------------------------------------+
1308 | diskMerged\ | number| No       | Number of logical read operations that were|
1309 | ReadLast    |       |          | merged into physical read operations, e.g.,|
1310 |             |       |          | two logical reads were served by one       |
1311 |             |       |          | physical disk access; provide the last     |
1312 |             |       |          | value measurement within the measurement   |
1313 |             |       |          | interval                                   |
1314 +-------------+-------+----------+--------------------------------------------+
1315 | diskMerged\ | number| No       | Number of logical read operations that were|
1316 | ReadMax     |       |          | merged into physical read operations, e.g.,|
1317 |             |       |          | two logical reads were served by one       |
1318 |             |       |          | physical disk access; provide the maximum  |
1319 |             |       |          | value measurement within the measurement   |
1320 |             |       |          | interval                                   |
1321 +-------------+-------+----------+--------------------------------------------+
1322 | diskMerged\ | number| No       | Number of logical read operations that were|
1323 | ReadMin     |       |          | merged into physical read operations, e.g.,|
1324 |             |       |          | two logical reads were served by one       |
1325 |             |       |          | physical disk access; provide the minimum  |
1326 |             |       |          | value measurement within the measurement   |
1327 |             |       |          | interval                                   |
1328 +-------------+-------+----------+--------------------------------------------+
1329 | diskMerged\ | number| No       | Number of logical write operations that    |
1330 | WriteAvg    |       |          | were merged into physical write operations,|
1331 |             |       |          | e.g., two logical writes were served by one|
1332 |             |       |          | physical disk access; provide the average  |
1333 |             |       |          | measurement within the measurement interval|
1334 +-------------+-------+----------+--------------------------------------------+
1335 | diskMerged\ | number| No       | Number of logical write operations that    |
1336 | WriteLast   |       |          | were merged into physical write operations,|
1337 |             |       |          | e.g., two logical writes were served by one|
1338 |             |       |          | physical disk access; provide the last     |
1339 |             |       |          | value measurement within the measurement   |
1340 |             |       |          | interval                                   |
1341 +-------------+-------+----------+--------------------------------------------+
1342 | diskMerged\ | number| No       | Number of logical write operations that    |
1343 | WriteMax    |       |          | were merged into physical write operations,|
1344 |             |       |          | e.g., two logical writes were served by one|
1345 |             |       |          | physical disk access; provide the maximum  |
1346 |             |       |          | value measurement within the measurement   |
1347 |             |       |          | interval                                   |
1348 +-------------+-------+----------+--------------------------------------------+
1349 | diskMerged\ | number| No       | Number of logical write operations that    |
1350 | WriteMin    |       |          | were merged into physical write operations,|
1351 |             |       |          | e.g., two logical writes were served by one|
1352 |             |       |          | physical disk access; provide the minimum  |
1353 |             |       |          | value measurement within the measurement   |
1354 |             |       |          | interval                                   |
1355 +-------------+-------+----------+--------------------------------------------+
1356 | diskOctets\ | number| No       | Number of octets per second read from a    |
1357 | Read Avg    |       |          | disk or partition; provide the average     |
1358 |             |       |          | measurement within the measurement interval|
1359 +-------------+-------+----------+--------------------------------------------+
1360 | diskOctets\ | number| No       | Number of octets per second read from a    |
1361 | Read        |       |          | disk or partition; provide the last        |
1362 |             |       |          | measurement within the measurement interval|
1363 | Last        |       |          |                                            |
1364 +-------------+-------+----------+--------------------------------------------+
1365 | diskOctets\ | number| No       | Number of octets per second read from a    |
1366 | Read Max    |       |          | disk or partition; provide the maximum     |
1367 |             |       |          | measurement within the measurement interval|
1368 +-------------+-------+----------+--------------------------------------------+
1369 | diskOctets\ | number| No       | Number of octets per second read from a    |
1370 | Read Min    |       |          | disk or partition; provide the minimum     |
1371 |             |       |          | measurement within the measurement interval|
1372 +-------------+-------+----------+--------------------------------------------+
1373 | diskOctets\ | number| No       | Number of octets per second written to a   |
1374 | Write Avg   |       |          | disk or partition; provide the average     |
1375 |             |       |          | measurement within the measurement interval|
1376 +-------------+-------+----------+--------------------------------------------+
1377 | diskOctets\ | number| No       | Number of octets per second written to a   |
1378 | Write Last  |       |          | disk or partition; provide the last        |
1379 |             |       |          | measurement within the measurement interval|
1380 +-------------+-------+----------+--------------------------------------------+
1381 | diskOctets\ | number| No       | Number of octets per second written to a   |
1382 | WriteMax    |       |          | disk or partition; provide the maximum     |
1383 |             |       |          | measurement within the measurement interval|
1384 +-------------+-------+----------+--------------------------------------------+
1385 | diskOctets\ | number| No       | Number of octets per second written to a   |
1386 | WriteMin    |       |          | disk or partition; provide the minimum     |
1387 |             |       |          | measurement within the measurement interval|
1388 +-------------+-------+----------+--------------------------------------------+
1389 | diskOps\    | number| No       | Number of read operations per second issued|
1390 | ReadAvg     |       |          | to the disk; provide the average           |
1391 |             |       |          | measurement within the measurement interval|
1392 +-------------+-------+----------+--------------------------------------------+
1393 | diskOps\    | number| No       | Number of read operations per second issued|
1394 | ReadLast    |       |          | to the disk; provide the last measurement  |
1395 |             |       |          | within the measurement interval            |
1396 +-------------+-------+----------+--------------------------------------------+
1397 | diskOps\    | number| No       | Number of read operations per second issued|
1398 | ReadMax     |       |          | to the disk; provide the maximum           |
1399 |             |       |          | measurement within the measurement interval|
1400 +-------------+-------+----------+--------------------------------------------+
1401 | diskOps\    | number| No       | Number of read operations per second issued|
1402 | ReadMin     |       |          | to the disk; provide the minimum           |
1403 |             |       |          | measurement within the measurement interval|
1404 +-------------+-------+----------+--------------------------------------------+
1405 | diskOps\    | number| No       | Number of write operations per second      |
1406 | WriteAvg    |       |          | issued to the disk; provide the average    |
1407 |             |       |          | measurement within the measurement interval|
1408 +-------------+-------+----------+--------------------------------------------+
1409 | diskOps\    | number| No       | Number of write operations per second      |
1410 | WriteLast   |       |          | issued to the disk; provide the last       |
1411 |             |       |          | measurement within the measurement interval|
1412 +-------------+-------+----------+--------------------------------------------+
1413 | diskOps\    | number| No       | Number of write operations per second      |
1414 | Write Max   |       |          | issued to the disk; provide the maximum    |
1415 |             |       |          | measurement within the measurement interval|
1416 +-------------+-------+----------+--------------------------------------------+
1417 | diskOps\    | number| No       | Number of write operations per second      |
1418 | WriteMin    |       |          | issued to the disk; provide the minimum    |
1419 |             |       |          | measurement within the measurement interval|
1420 +-------------+-------+----------+--------------------------------------------+
1421 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1422 | Operations\ |       |          | second; provide the average measurement    |
1423 | Avg         |       |          | within the measurement interval            |
1424 +-------------+-------+----------+--------------------------------------------+
1425 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1426 | Operations\ |       |          | second; provide the last measurement within|
1427 | Last        |       |          | the measurement interval                   |
1428 +-------------+-------+----------+--------------------------------------------+
1429 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1430 | Operations\ |       |          | second; provide the maximum measurement    |
1431 | Max         |       |          | within the measurement interval            |
1432 +-------------+-------+----------+--------------------------------------------+
1433 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1434 | Operations\ |       |          | second; provide the minimum measurement    |
1435 | Min         |       |          | within the measurement interval            |
1436 +-------------+-------+----------+--------------------------------------------+
1437 | diskRead\   | number| No       | Average number of read commands issued per |
1438 | CommandsAvg |       |          | second to the disk over the                |
1439 |             |       |          | measurementInterval                        |
1440 +-------------+-------+----------+--------------------------------------------+
1441 | diskTime    | number| No       | Nanoseconds spent on disk cache            |
1442 |             |       |          | reads/writes within the measurement        |
1443 |             |       |          | interval                                   |
1444 +-------------+-------+----------+--------------------------------------------+
1445 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1446 | ReadAvg     |       |          | complete; provide the average measurement  |
1447 |             |       |          | within the measurement interval            |
1448 +-------------+-------+----------+--------------------------------------------+
1449 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1450 | Read Last   |       |          | complete; provide the last measurement     |
1451 |             |       |          | within the measurement interval            |
1452 +-------------+-------+----------+--------------------------------------------+
1453 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1454 | Read Max    |       |          | complete; provide the maximum measurement  |
1455 |             |       |          | within the measurement interval            |
1456 +-------------+-------+----------+--------------------------------------------+
1457 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1458 | Read Min    |       |          | complete; provide the minimum measurement  |
1459 |             |       |          | within the measurement interval            |
1460 +-------------+-------+----------+--------------------------------------------+
1461 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1462 | Write Avg   |       |          | complete; provide the average measurement  |
1463 |             |       |          | within the measurement interval            |
1464 +-------------+-------+----------+--------------------------------------------+
1465 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1466 | Write Last  |       |          | complete; provide the last measurement     |
1467 |             |       |          | within the measurement interval            |
1468 +-------------+-------+----------+--------------------------------------------+
1469 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1470 | Write Max   |       |          | complete; provide the maximum measurement  |
1471 |             |       |          | within the measurement interval            |
1472 +-------------+-------+----------+--------------------------------------------+
1473 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1474 | Write Min   |       |          | complete; provide the minimum measurement  |
1475 |             |       |          | within the measurement interval            |
1476 +-------------+-------+----------+--------------------------------------------+
1477 | diskTotal\  | number| No       | Average read time from the perspective of a|
1478 | ReadLatency\|       |          | Guest OS: sum of the Kernel Read Latency   |
1479 | Avg         |       |          | and Physical Device Read Latency in        |
1480 |             |       |          | milliseconds over the measurement interval |
1481 +-------------+-------+----------+--------------------------------------------+
1482 | diskTotal\  | number| No       | Average write time from the perspective of |
1483 | Write\      |       |          | a Guest OS: sum of the Kernel Write Latency|
1484 | LatencyAvg  |       |          | and Physical Device Write Latency in       |
1485 |             |       |          | milliseconds over the measurement interval |
1486 +-------------+-------+----------+--------------------------------------------+
1487 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1488 | WeightedIo\ |       |          | completion time and the backlog that may be|
1489 | TimeAvg     |       |          | accumulating. Value is the average within  |
1490 |             |       |          | the collection interval.                   |
1491 +-------------+-------+----------+--------------------------------------------+
1492 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1493 | WeightedIo\ |       |          | completion time and the backlog that may be|
1494 | TimeLast    |       |          | accumulating. Value is the last within the |
1495 |             |       |          | collection interval.                       |
1496 +-------------+-------+----------+--------------------------------------------+
1497 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1498 | WeightedIo\ |       |          | completion time and the backlog that may be|
1499 | TimeMax     |       |          | accumulating. Value is the maximum within  |
1500 |             |       |          | the collection interval.                   |
1501 +-------------+-------+----------+--------------------------------------------+
1502 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1503 | WeightedIo\ |       |          | completion time and the backlog that may be|
1504 | TimeMin     |       |          | accumulating. Value is the minimum within  |
1505 |             |       |          | the collection interval.                   |
1506 +-------------+-------+----------+--------------------------------------------+
1507 | diskWrite\  | number| No       | Average number of write commands issued per|
1508 | CommandsAvg |       |          | second to the disk over the                |
1509 |             |       |          | measurementInterval                        |
1510 +-------------+-------+----------+--------------------------------------------+
1511
1512 Datatype: filesystemUsage
1513 ***************************
1514
1515 The filesystemUsage datatype consists of the following fields:
1516
1517 +-------------+--------+-----------+------------------------------------------+
1518 | Field       | Type   | Required? | Description                              |
1519 +=============+========+===========+==========================================+
1520 | filesystem\ | string | Yes       | File system name                         |
1521 | Name        |        |           |                                          |
1522 +-------------+--------+-----------+------------------------------------------+
1523 | block\      | number | Yes       | Configured block storage capacity in GB  |
1524 | Configured  |        |           |                                          |
1525 +-------------+--------+-----------+------------------------------------------+
1526 | blockIops   | number | Yes       | Block storage input-output operations per|
1527 |             |        |           | second                                   |
1528 +-------------+--------+-----------+------------------------------------------+
1529 | blockUsed   | number | Yes       | Used block storage capacity in GB        |
1530 +-------------+--------+-----------+------------------------------------------+
1531 | ephemeral\  | number | Yes       | Configured ephemeral storage capacity in |
1532 | Configured  |        |           | GB                                       |
1533 +-------------+--------+-----------+------------------------------------------+
1534 | ephemeral\  | number | Yes       | Ephemeral storage input-output operations|
1535 | Iops        |        |           | per second                               |
1536 +-------------+--------+-----------+------------------------------------------+
1537 | ephemeral\  | number | Yes       | Used ephemeral storage capacity in GB    |
1538 | Used        |        |           |                                          |
1539 +-------------+--------+-----------+------------------------------------------+
1540
1541 Datatype: hugePages
1542 ********************
1543
1544 The hugePages datatype provides metrics on system hugePages; it consists
1545 of the following fields:
1546
1547 +--------------------+--------+----------+------------------------------------+
1548 | Field              | Type   | Required?| Description                        |
1549 +====================+========+==========+====================================+
1550 | bytesFree          | number | No       | Number of free hugePages in bytes  |
1551 +--------------------+--------+----------+------------------------------------+
1552 | bytesUsed          | number | No       | Number of used hugePages in bytes  |
1553 +--------------------+--------+----------+------------------------------------+
1554 | hugePagesIdentifier| string | Yes      | HugePages identifier               |
1555 +--------------------+--------+----------+------------------------------------+
1556 | percentFree        | number | No       | Number of free hugePages in percent|
1557 +--------------------+--------+----------+------------------------------------+
1558 | percentUsed        | number | No       | Number of used hugePages in percent|
1559 +--------------------+--------+----------+------------------------------------+
1560 | vmPageNumberFree   | number | No       | Number of free vmPages in numbers  |
1561 +--------------------+--------+----------+------------------------------------+
1562 | vmPageNumberUsed   | number | No       | Number of used vmPages in numbers  |
1563 +--------------------+--------+----------+------------------------------------+
1564
1565 Datatype: ipmi (Intelligent Platform Management Interface)
1566 ***********************************************************
1567
1568 The ipmi datatype provides intelligent platform management interface
1569 metrics; it consists of the following fields:
1570
1571 +-------------+---------------------+-----------+-----------------------------+
1572 | Field       | Type                | Required? | Description                 |
1573 +=============+=====================+===========+=============================+
1574 | exitAir\    | number              | No        | System fan exit air flow    |
1575 | Temperature |                     |           | temperature in Celsius      |
1576 +-------------+---------------------+-----------+-----------------------------+
1577 | frontPanel\ | number              | No        | Front panel temp in Celsius |
1578 | Temperature |                     |           |                             |
1579 +-------------+---------------------+-----------+-----------------------------+
1580 | ioModule\   | number              | No        | Io module temp in Celsius   |
1581 | Temperature |                     |           |                             |
1582 +-------------+---------------------+-----------+-----------------------------+
1583 | ipmi\       | ipmiBaseboard       | No        | Array of ipmiBaseboard      |
1584 | Baseboard\  | Temperature [ ]     |           | Temperature objects         |
1585 | Temperature\|                     |           |                             |
1586 | Array       |                     |           |                             |
1587 +-------------+---------------------+-----------+-----------------------------+
1588 | ipmi\       | ipmiBaseboard       | No        | Array of ipmiBaseboard      |
1589 | Baseboard\  | VoltageRegulator [ ]|           | VoltageRegulator objects    |
1590 | Voltage\    |                     |           |                             |
1591 | Regulator   |                     |           |                             |
1592 | Array       |                     |           |                             |
1593 +-------------+---------------------+-----------+-----------------------------+
1594 | ipmiBattery\| ipmiBattery [ ]     | No        | Array of ipmiBattery objects|
1595 | Array       |                     |           |                             |
1596 +-------------+---------------------+-----------+-----------------------------+
1597 | ipmiFanArray| ipmiFan [ ]         | No        | Array of ipmiFan objects    |
1598 +-------------+---------------------+-----------+-----------------------------+
1599 | ipmiGlobal\ | ipmiGlobalAggregate\| No        | ipmi global aggregate       |
1600 | Aggregate\  | TemperatureMargin []|           | temperature margin          |
1601 | Temperature\|                     |           |                             |
1602 | MarginArray |                     |           |                             |
1603 +-------------+---------------------+-----------+-----------------------------+
1604 | ipmiHsbp\   | ipmiHsbp [ ]        | No        | Array of ipmiHsbp objects   |
1605 | Array       |                     |           |                             |
1606 +-------------+---------------------+-----------+-----------------------------+
1607 | ipmiNicArray| ipmiNic [ ]         | No        | Array of ipmiNic objects    |
1608 +-------------+---------------------+-----------+-----------------------------+
1609 | ipmiPower\  | ipmiPowerSupply [ ] | No        | Array of ipmiPowerSupply    |
1610 | SupplyArray |                     |           | objects                     |
1611 +-------------+---------------------+-----------+-----------------------------+
1612 | ipmi\       | ipmiProcessor [ ]   | No        | Array of ipmiProcessor      |
1613 | Processor\  |                     |           | objects                     |
1614 | Array       |                     |           |                             |
1615 +-------------+---------------------+-----------+-----------------------------+
1616 | system\     | number              | No        | Airflow in cubic feet per   |
1617 | Airflow     |                     |           | minute (cfm)                |
1618 +-------------+---------------------+-----------+-----------------------------+
1619
1620 Datatype: ipmiBaseboardTemperature
1621 ************************************
1622
1623 The ipmiBaseboardTemperature datatype consists of the following fields
1624 which describe ipmi baseboard temperature metrics:
1625
1626 +-------------+--------+-----------+------------------------------------------+
1627 | Field       | Type   | Required? | Description                              |
1628 +=============+========+===========+==========================================+
1629 | baseboard\  | number | No        | Baseboard temperature in celsius         |
1630 | Temperature |        |           |                                          |
1631 +-------------+--------+-----------+------------------------------------------+
1632 | baseboard\  | string | Yes       | Identifier for the location where the    |
1633 | Temperature\|        |           | temperature is taken                     |
1634 | Identifier  |        |           |                                          |
1635 +-------------+--------+-----------+------------------------------------------+
1636
1637 Datatype: ipmiBaseboardVoltageRegulator
1638 *****************************************
1639
1640 The ipmiBaseboardVoltageRegulator datatype consists of the following
1641 fields which describe ipmi baseboard voltage regulator metrics:
1642
1643 +--------------------+-------+----------+-------------------------------------+
1644 | Field              | Type  | Required?| Description                         |
1645 +====================+=======+==========+=====================================+
1646 | baseboardVoltage\  | string| Yes      | Identifier for the baseboard voltage|
1647 | RegulatorIdentifier|       |          | regulator                           |
1648 +--------------------+-------+----------+-------------------------------------+
1649 | voltageRegulator\  | number| No       | Voltage regulator temperature in    |
1650 | Temperature        |       |          | celsius                             |
1651 +--------------------+-------+----------+-------------------------------------+
1652
1653 Datatype: ipmiBattery
1654 **********************
1655
1656 The ipmiBattery datatype consists of the following fields which describe
1657 ipmi battery metrics:
1658
1659 +---------------------+--------+----------+------------------------------+
1660 | Field               | Type   | Required?| Description                  |
1661 +=====================+========+==========+==============================+
1662 | batteryIdentifier   | string | Yes      | Identifier for the battery   |
1663 +---------------------+--------+----------+------------------------------+
1664 | batteryType         | string | No       | Type of battery              |
1665 +---------------------+--------+----------+------------------------------+
1666 | batteryVoltageLevel | number | No       | Battery voltage level        |
1667 +---------------------+--------+----------+------------------------------+
1668
1669 Datatype: ipmiFan
1670 ********************
1671
1672 The ipmiFan datatype consists of the following fields which describe
1673 ipmi fan metrics:
1674
1675 +--------------+-------+----------+-------------------------------------------+
1676 | Field        | Type  | Required?| Description                               |
1677 +==============+=======+==========+===========================================+
1678 | fanIdentifier| string| Yes      | Identifier for the fan                    |
1679 +--------------+-------+----------+-------------------------------------------+
1680 | fanSpeed     | number| No       | Fan speed in revolutions per minute (rpm) |
1681 +--------------+-------+----------+-------------------------------------------+
1682
1683 Datatype: ipmiGlobalAggregateTemperatureMargin
1684 ***********************************************
1685
1686 The ipmiGlobalAggregateTemperatureMargin datatype consists of the
1687 following fields:
1688
1689 +-------------+-------+----------+--------------------------------------------+
1690 | Field       | Type  | Required?| Description                                |
1691 +=============+=======+==========+============================================+
1692 | global\     | number| No       | Temperature margin in Celsius relative to a|
1693 | Aggregate\  |       |          | throttling thermal trip point              |
1694 | Temperature\|       |          |                                            |
1695 | Margin      |       |          |                                            |
1696 +-------------+-------+----------+--------------------------------------------+
1697 | global\     | string| Yes      | Identifier for the ipmi global aggregate   |
1698 | Aggregate\  |       |          | temperature margin metrics                 |
1699 | Temperature\|       |          |                                            |
1700 | Margin\     |       |          |                                            |
1701 | Identifier  |       |          |                                            |
1702 +-------------+-------+----------+--------------------------------------------+
1703
1704 Datatype: ipmiHsbp
1705 *******************
1706
1707 The ipmiHsbp datatype provides ipmi hot swap backplane power metrics; it
1708 consists of the following fields:
1709
1710 +------------+-------+----------+---------------------------------------------+
1711 | Field      | Type  | Required?| Description                                 |
1712 +============+=======+==========+=============================================+
1713 | hsbp\      | string| Yes      | Identifier for the hot swap backplane power |
1714 | Identifier |       |          | unit                                        |
1715 +------------+-------+----------+---------------------------------------------+
1716 | hsbp\      | number| No       | Hot swap backplane power temperature in     |
1717 | Temperature|       |          | celsius                                     |
1718 +------------+-------+----------+---------------------------------------------+
1719
1720 Datatype: ipmiNic
1721 ******************
1722
1723 The ipmiNic datatype provides network interface control care metrics; it
1724 consists of the following fields:
1725
1726 +------------+-------+----------+---------------------------------------------+
1727 | Field      | Type  | Required?| Description                                 |
1728 +============+=======+==========+=============================================+
1729 | nic\       | string| Yes      | Identifier for the network interface control|
1730 | Identifier |       |          | card                                        |
1731 +------------+-------+----------+---------------------------------------------+
1732 | nic\       | number| No       | nic temperature in Celsius                  |
1733 | Temperature|       |          |                                             |
1734 +------------+-------+----------+---------------------------------------------+
1735
1736 Datatype: ipmiPowerSupply
1737 **************************
1738
1739 The ipmiPowerSupply datatype provides ipmi power supply metrics; it
1740 consists of the following fields:
1741
1742 +-----------+-------+----------+----------------------------------------------+
1743 |Field      | Type  | Required?| Description                                  |
1744 +===========+=======+==========+==============================================+
1745 |power\     | number| No       | Current output voltage as a percentage of the|
1746 |Supply\    |       |          | design specified level                       |
1747 |Current\   |       |          |                                              |
1748 |Output\    |       |          |                                              |
1749 |Percent    |       |          |                                              |
1750 +-----------+-------+----------+----------------------------------------------+
1751 |power\     | string| Yes      | Identifier for the power supply              |
1752 |Supply\    |       |          |                                              |
1753 |Identifier |       |          |                                              |
1754 +-----------+-------+----------+----------------------------------------------+
1755 |power\     | number| No       | Input power in watts                         |
1756 |Supply\    |       |          |                                              |
1757 |Input\     |       |          |                                              |
1758 |Power      |       |          |                                              |
1759 +-----------+-------+----------+----------------------------------------------+
1760 |power\     | number| No       | Power supply temperature in Celsius          |
1761 |Supply\    |       |          |                                              |
1762 |Temperature|       |          |                                              |
1763 +-----------+-------+----------+----------------------------------------------+
1764
1765 Datatype: ipmiProcessor
1766 ************************
1767
1768 The ipmiProcessor datatype provides ipmi processor metrics; it consists
1769 of the following fields:
1770
1771 +------------+------------------+-----------+---------------------------------+
1772 | Field      | Type             | Required? | Description                     |
1773 +============+==================+===========+=================================+
1774 | processor\ | processorDimm    | No        | Array of processorDimmAggregate |
1775 | Dimm\      | AggregateThermal |           | ThermalMargin objects           |
1776 | Aggregate\ | Margin [ ]       |           |                                 |
1777 | Thermal\   |                  |           |                                 |
1778 | MarginArray|                  |           |                                 |
1779 +------------+------------------+-----------+---------------------------------+
1780 | processor\ | number           | No        | Front panel temperature in      |
1781 | DtsThermal\|                  |           | celsius                         |
1782 | Margin     |                  |           |                                 |
1783 +------------+------------------+-----------+---------------------------------+
1784 | processor\ | string           | Yes       | Identifier for the power supply |
1785 | Identifier |                  |           |                                 |
1786 +------------+------------------+-----------+---------------------------------+
1787 | processor\ | number           | No        | Io module temperatue in celsius |
1788 | Thermal\   |                  |           |                                 |
1789 | Control\   |                  |           |                                 |
1790 | Percent    |                  |           |                                 |
1791 +------------+------------------+-----------+---------------------------------+
1792
1793 Datatype: latencyBucketMeasure
1794 *******************************
1795
1796 The latencyBucketMeasure datatype consists of the following fields which
1797 describe the number of counts falling within a defined latency bucket:
1798
1799 +-----------+-------+----------+----------------------------------------------+
1800 | Field     | Type  | Required?| Description                                  |
1801 +===========+=======+==========+==============================================+
1802 | counts\   | number| Yes      | Number of counts falling within a defined    |
1803 | InThe\    |       |          | latency bucket                               |
1804 | Bucket    |       |          |                                              |
1805 +-----------+-------+----------+----------------------------------------------+
1806 | highEnd\  | number| No       | High end of bucket range (typically in ms)   |
1807 | OfLatency\|       |          |                                              |
1808 | Bucket    |       |          |                                              |
1809 +-----------+-------+----------+----------------------------------------------+
1810 | lowEndOf\ | number| No       | Low end of bucket range (typically in ms)    |
1811 | Latency\  |       |          |                                              |
1812 | Bucket    |       |          |                                              |
1813 +-----------+-------+----------+----------------------------------------------+
1814
1815 Datatype: load
1816 ****************
1817
1818 The load datatype provides metrics on system cpu and io utilization
1819 obtained using /proc/loadavg; it consists of the following fields:
1820
1821 +----------+-------+----------+-----------------------------------------------+
1822 | Field    | Type  | Required?| Description                                   |
1823 +==========+=======+==========+===============================================+
1824 | longTerm | number| No       | number of jobs in the run queue (state R, cpu |
1825 |          |       |          | utilization) or waiting for disk I/O (state D,|
1826 |          |       |          | io utilization) averaged over 15 minutes using|
1827 |          |       |          | /proc/loadavg                                 |
1828 +----------+-------+----------+-----------------------------------------------+
1829 | midTerm  | number| No       | number of jobs in the run queue (state R, cpu |
1830 |          |       |          | utilization) or waiting for disk I/O (state D,|
1831 |          |       |          | io utilization) averaged over 5 minutes using |
1832 |          |       |          | /proc/loadavg                                 |
1833 +----------+-------+----------+-----------------------------------------------+
1834 | shortTerm| number| No       | number of jobs in the run queue (state R, cpu |
1835 |          |       |          | utilization) or waiting for disk I/O (state D,|
1836 |          |       |          | io utilization) averaged over 1 minute using  |
1837 |          |       |          | /proc/loadavg                                 |
1838 +----------+-------+----------+-----------------------------------------------+
1839
1840 Datatype: machineCheckException
1841 ********************************
1842
1843 The machineCheckException datatype describes machine check exceptions;
1844 it consists of the following fields:
1845
1846 +-------------+-------+----------+--------------------------------------------+
1847 | Field       | Type  | Required?| Description                                |
1848 +=============+=======+==========+============================================+
1849 | corrected\  | number| No       | Total hardware errors that were corrected  |
1850 | Memory\     |       |          | by the hardware (e.g. data corruption      |
1851 | Errors      |       |          | corrected via  ECC) over the               |
1852 |             |       |          | measurementInterval. These errors do not   |
1853 |             |       |          | require immediate software actions, but are|
1854 |             |       |          | still reported for accounting and          |
1855 |             |       |          | predictive failure analysis                |
1856 +-------------+-------+----------+--------------------------------------------+
1857 | corrected\  | number| No       | Total hardware errors that were corrected  |
1858 | Memory\     |       |          | by the hardware over the last one hour     |
1859 | Errors      |       |          |                                            |
1860 | In1Hr       |       |          |                                            |
1861 +-------------+-------+----------+--------------------------------------------+
1862 | uncorrected\| number| No       | Total uncorrected hardware errors that were|
1863 | Memory\     |       |          | detected by the hardware (e.g., causing    |
1864 | Errors      |       |          | data corruption) over the                  |
1865 |             |       |          | measurementInterval. These errors require a|
1866 |             |       |          | software response.                         |
1867 +-------------+-------+----------+--------------------------------------------+
1868 | uncorrected\| number| No       | Total uncorrected hardware errors that were|
1869 | Memory\     |       |          | detected by the hardware over the last one |
1870 | Errors      |       |          | hour                                       |
1871 | In1Hr       |       |          |                                            |
1872 +-------------+-------+----------+--------------------------------------------+
1873 | vm\         | string| Yes      | Virtual machine identifier associated with |
1874 | Identifier  |       |          | the machine check exception                |
1875 +-------------+-------+----------+--------------------------------------------+
1876
1877 Datatype: measurementFields
1878 ****************************
1879
1880 The measurementFields datatype consists of the following fields:
1881
1882 +-------------+--------------+----------+-------------------------------------+
1883 | Field       | Type         | Required?| Description                         |
1884 +=============+==============+==========+=====================================+
1885 | additional\ | hashMap      | No       | Additional measurement fields if    |
1886 | Fields      |              |          | needed                              |
1887 +-------------+--------------+----------+-------------------------------------+
1888 | additional\ | arrayOfNamed\| No       | Array of named hashMap if needed    |
1889 | Measurements| HashMap      |          |                                     |
1890 +-------------+--------------+----------+-------------------------------------+
1891 | additional\ | arrayOf\     | No       | Array of JSON objects described by  |
1892 | Objects     | JsonObject   |          | name, schema and other              |
1893 |             |              |          | meta-information, if needed         |
1894 +-------------+--------------+----------+-------------------------------------+
1895 | codec\      | codecs\      | No       | Array of codecs in use              |
1896 | Usage\      | InUse []     |          |                                     |
1897 | Array       |              |          |                                     |
1898 +-------------+--------------+----------+-------------------------------------+
1899 | concurrent\ | integer      | No       | Peak concurrent sessions for the VM |
1900 | Sessions    |              |          | or xNF (depending on the context)   |
1901 |             |              |          | over the measurementInterval        |
1902 +-------------+--------------+----------+-------------------------------------+
1903 | configured\ | integer      | No       | Depending on the context over the   |
1904 | Entities    |              |          | measurementInterval: peak total     |
1905 |             |              |          | number of users, subscribers,       |
1906 |             |              |          | devices, adjacencies, etc., for the |
1907 |             |              |          | VM, or peak total number of         |
1908 |             |              |          | subscribers, devices, etc., for the |
1909 |             |              |          | xNF                                 |
1910 +-------------+--------------+----------+-------------------------------------+
1911 | cpuUsage\   | cpuUsage []  | No       | Usage of an array of CPUs           |
1912 | Array       |              |          |                                     |
1913 +-------------+--------------+----------+-------------------------------------+
1914 | diskUsage\  | diskUsage [] | No       | Usage of an array of disks          |
1915 | Array       |              |          |                                     |
1916 +-------------+--------------+----------+-------------------------------------+
1917 | feature\    | hashMap      | No       | The hashMap key should identify the |
1918 | UsageArray  |              |          | feature, while the value defines the|
1919 |             |              |          | number of times the identified      |
1920 |             |              |          | feature was used                    |
1921 +-------------+--------------+----------+-------------------------------------+
1922 | filesystem\ | filesystem\  | No       | Filesystem usage of the VM on which |
1923 | UsageArray  | Usage [ ]    |          | the xNFC reporting the event is     |
1924 |             |              |          | running                             |
1925 +-------------+--------------+----------+-------------------------------------+
1926 | hugePages\  | hugePages [ ]| No       | Array of metrics on hugePages       |
1927 | Array       |              |          |                                     |
1928 +-------------+--------------+----------+-------------------------------------+
1929 | ipmi        | ipmi         | No       | Intelligent platform management     |
1930 |             |              |          | interface metrics                   |
1931 +-------------+--------------+----------+-------------------------------------+
1932 | latency\    | latency\     | No       | Array of integers representing      |
1933 | Distribution| Bucket\      |          | counts of requests whose latency in |
1934 |             | Measure [ ]  |          | milliseconds falls within per-xNF   |
1935 |             |              |          | configured ranges; where latency is |
1936 |             |              |          | the duration between a service      |
1937 |             |              |          | request and its fulfillment.        |
1938 +-------------+--------------+----------+-------------------------------------+
1939 | loadArray   | load [ ]     | No       | Array of system load metrics        |
1940 +-------------+--------------+----------+-------------------------------------+
1941 | machine\    | machine\     | No       | Array of machine check exceptions   |
1942 | Check\      | Check\       |          |                                     |
1943 | Exception\  | Exception [ ]|          |                                     |
1944 | Array       |              |          |                                     |
1945 +-------------+--------------+----------+-------------------------------------+
1946 | mean\       | number       | No       | Mean seconds required to respond to |
1947 | Request\    |              |          | each request for the VM on which the|
1948 | Latency     |              |          | xNFC reporting the event is running |
1949 +-------------+--------------+----------+-------------------------------------+
1950 | measurement\| string       | Yes      | Version of the measurementFields    |
1951 | Fields\     |              |          | block as "#.#" where # is a digit;  |
1952 | Version     |              |          | see section 1 for the correct digits|
1953 |             |              |          | to use.                             |
1954 +-------------+--------------+----------+-------------------------------------+
1955 | measurement\| number       | Yes      | Interval over which measurements are|
1956 | Interval    |              |          | being reported in seconds           |
1957 +-------------+--------------+----------+-------------------------------------+
1958 | memoryUsage\| memory\      | No       | Memory usage of an array of VMs     |
1959 | Array       | Usage []     |          |                                     |
1960 +-------------+--------------+----------+-------------------------------------+
1961 | nfcScaling\ | integer      | No       | Represents busy-ness of the network |
1962 | Metric      |              |          | function from 0 to 100 as reported  |
1963 |             |              |          | by the nfc                          |
1964 +-------------+--------------+----------+-------------------------------------+
1965 | nic\        | nic\         | No       | Performance metrics of an array of  |
1966 | Performance\| Performance  |          | network interface cards             |
1967 | Array       | [ ]          |          |                                     |
1968 +-------------+--------------+----------+-------------------------------------+
1969 | numberOf\   | integer      | No       | Number of media ports in use        |
1970 | MediaPorts\ |              |          |                                     |
1971 | InUse       |              |          |                                     |
1972 +-------------+--------------+----------+-------------------------------------+
1973 | process\    | process\     | No       | Array of metrics on system processes|
1974 | StatsArray  | Stats [ ]    |          |                                     |
1975 +-------------+--------------+----------+-------------------------------------+
1976 | request\    | number       | No       | Peak rate of service requests per   |
1977 | Rate        |              |          | second to the xNF over the          |
1978 |             |              |          | measurementInterval                 |
1979 +-------------+--------------+----------+-------------------------------------+
1980
1981 Datatype: memoryUsage
1982 **********************
1983
1984 The memoryUsage datatype defines the memory usage of a virtual machine
1985 and consists of the following fields:
1986
1987 +-----------+-------+----------+----------------------------------------------+
1988 | Field     | Type  | Required?| Description                                  |
1989 +===========+=======+==========+==============================================+
1990 | memory\   | number| No       | Kibibytes of temporary storage for raw disk  |
1991 | Buffered  |       |          | blocks                                       |
1992 +-----------+-------+----------+----------------------------------------------+
1993 | memory\   | number| No       | Kibibytes of memory used for cache           |
1994 | Cached    |       |          |                                              |
1995 +-----------+-------+----------+----------------------------------------------+
1996 | memory\   | number| No       | Kibibytes of memory configured in the virtual|
1997 | Configured|       |          | machine on which the xNFC reporting the event|
1998 |           |       |          | is running                                   |
1999 +-----------+-------+----------+----------------------------------------------+
2000 | memory\   | number| No       | Host demand in kibibytes                     |
2001 | Demand    |       |          |                                              |
2002 +-----------+-------+----------+----------------------------------------------+
2003 | memory\   | number| Yes      | Kibibytes of physical RAM left unused by the |
2004 | Free      |       |          | system                                       |
2005 +-----------+-------+----------+----------------------------------------------+
2006 | memory\   | number| No       | Percentage of time the VM is waiting to      |
2007 | Latency\  |       |          | access swapped or compressed memory          |
2008 | Avg       |       |          |                                              |
2009 +-----------+-------+----------+----------------------------------------------+
2010 | memory\   | number| No       | Shared memory in kilobytes                   |
2011 | Shared\   |       |          |                                              |
2012 | Avg       |       |          |                                              |
2013 +-----------+-------+----------+----------------------------------------------+
2014 | memory\   | number| No       | The part of the slab that can be reclaimed   |
2015 | SlabRecl  |       |          | such as caches measured in kibibytes         |
2016 +-----------+-------+----------+----------------------------------------------+
2017 | memory\   | number| No       | The part of the slab that cannot be reclaimed|
2018 | Slab\     |       |          | even when lacking memory measure in kibibytes|
2019 | Unrecl    |       |          |                                              |
2020 +-----------+-------+----------+----------------------------------------------+
2021 | memory\   | number| No       | Amount of memory swapped-in from host cache  |
2022 | SwapIn\   |       |          | in kibibytes                                 |
2023 | Avg       |       |          |                                              |
2024 +-----------+-------+----------+----------------------------------------------+
2025 | memory\   | number| No       | Rate at which memory is swapped from disk    |
2026 | SwapIn\   |       |          | into active memory during the interval in    |
2027 | RateAvg   |       |          | kilobytes per second                         |
2028 +-----------+-------+----------+----------------------------------------------+
2029 | memory\   | number| No       | Amount of memory swapped-out to host cache in|
2030 | SwapOut\  |       |          | kibibytes                                    |
2031 | Avg       |       |          |                                              |
2032 +-----------+-------+----------+----------------------------------------------+
2033 | memory\   | number| No       | Rate at which memory is being swapped from   |
2034 | SwapOut\  |       |          | active memory to disk during the current     |
2035 | RateAvg   |       |          | interval in kilobytes per second             |
2036 +-----------+-------+----------+----------------------------------------------+
2037 | memory\   | number| No       | Space used for caching swapped pages in the  |
2038 | Swap\     |       |          | host cache in kibibytes                      |
2039 | UsedAvg   |       |          |                                              |
2040 +-----------+-------+----------+----------------------------------------------+
2041 | memory\   | number| Yes      | Total memory minus the sum of free, buffered,|
2042 | Used      |       |          | cached and slab memory measured in kibibytes |
2043 +-----------+-------+----------+----------------------------------------------+
2044 | percent\  | number| No       | Percentage of memory usage; value =          |
2045 | Memory\   |       |          | (memoryUsed / (memoryUsed + memoryFree) x 100|
2046 | Usage     |       |          | if denomintor is nonzero, or 0, if otherwise.|
2047 +-----------+-------+----------+----------------------------------------------+
2048 | vm\       | string| Yes      | Virtual Machine identifier associated with   |
2049 | Identifier|       |          | the memory metrics                           |
2050 +-----------+-------+----------+----------------------------------------------+
2051
2052 Datatype: nicPerformance
2053 *************************
2054
2055 The nicPerformance datatype consists of the following fields which
2056 describe the performance and errors of an of an identified virtual
2057 network interface card:
2058
2059 +----------------+-------+----------+-----------------------------------------+
2060 | Field          | Type  | Required?| Description                             |
2061 +================+=======+==========+=========================================+
2062 | administrative\| string| No       | Administrative state: enum: ‘inService’,|
2063 | State          |       |          | ‘outOfService’                          |
2064 +----------------+-------+----------+-----------------------------------------+
2065 | nicIdentifier  | string| Yes      | Network interface card identifier       |
2066 +----------------+-------+----------+-----------------------------------------+
2067 | operational\   | string| No       | Operational state: enum: ‘inService’,   |
2068 | State          |       |          | ‘outOfService’                          |
2069 +----------------+-------+----------+-----------------------------------------+
2070 | received\      | number| No       | Cumulative count of broadcast packets   |
2071 | Broadcast\     |       |          | received as read at the end of the      |
2072 | Packets\       |       |          | measurement interval                    |
2073 | Accumulated    |       |          |                                         |
2074 +----------------+-------+----------+-----------------------------------------+
2075 | received\      | number| No       | Count of broadcast packets received     |
2076 | Broadcast\     |       |          | within the measurement interval         |
2077 | PacketsDelta   |       |          |                                         |
2078 +----------------+-------+----------+-----------------------------------------+
2079 | received\      | number| No       | Cumulative count of discarded packets   |
2080 | Discarded\     |       |          | received as read at the end of the      |
2081 | Packets\       |       |          | measurement interval                    |
2082 | Accumulated    |       |          |                                         |
2083 +----------------+-------+----------+-----------------------------------------+
2084 | received\      | number| No       | Count of discarded packets received     |
2085 | Discarded\     |       |          | within the measurement interval         |
2086 | PacketsDelta   |       |          |                                         |
2087 +----------------+-------+----------+-----------------------------------------+
2088 | received\      | number| No       | Cumulative count of error packets       |
2089 | ErrorPackets\  |       |          | received as read at the end of the      |
2090 | Accumulated    |       |          | measurement interval                    |
2091 +----------------+-------+----------+-----------------------------------------+
2092 | receivedError\ | number| No       | Count of error packets received within  |
2093 | PacketsDelta   |       |          | the measurement interval                |
2094 +----------------+-------+----------+-----------------------------------------+
2095 | received\      | number| No       | Cumulative count of multicast packets   |
2096 | Multicast\     |       |          | received as read at the end of the      |
2097 | Packets\       |       |          | measurement interval                    |
2098 | Accumulated    |       |          |                                         |
2099 +----------------+-------+----------+-----------------------------------------+
2100 | received\      | number| No       | Count of multicast packets received     |
2101 | Multicast\     |       |          | within the measurement interval         |
2102 | PacketsDelta   |       |          |                                         |
2103 +----------------+-------+----------+-----------------------------------------+
2104 | received\      | number| No       | Cumulative count of octets received as  |
2105 | Octets\        |       |          | read at the end of the measurement      |
2106 | Accumulated    |       |          | interval                                |
2107 +----------------+-------+----------+-----------------------------------------+
2108 | received\      | number| No       | Count of octets received within the     |
2109 | OctetsDelta    |       |          | measurement interval                    |
2110 +----------------+-------+----------+-----------------------------------------+
2111 | received\      | number| No       | Percentage of discarded packets         |
2112 | Percent\       |       |          | received; value =                       |
2113 | Discard        |       |          | (receivedDiscardedPacketsDelta /        |
2114 |                |       |          | receivedTotalPacketsDelta) x 100, if    |
2115 |                |       |          | denominator is nonzero, or 0, if        |
2116 |                |       |          | otherwise.                              |
2117 +----------------+-------+----------+-----------------------------------------+
2118 | received\      | number| No       | Percentage of error packets received;   |
2119 | PercentError   |       |          | value = (receivedErrorPacketsDelta /    |
2120 |                |       |          | receivedTotalPacketsDelta) x 100, if    |
2121 |                |       |          | denominator is nonzero, or 0, if        |
2122 |                |       |          | otherwise.                              |
2123 +----------------+-------+----------+-----------------------------------------+
2124 | receivedTotal\ | number| No       | Cumulative count of all packets received|
2125 | Packets\       |       |          | as read at the end of the measurement   |
2126 | Accumulated    |       |          | interval                                |
2127 +----------------+-------+----------+-----------------------------------------+
2128 | receivedTotal\ | number| No       | Count of all packets received within the|
2129 | PacketsDelta   |       |          | measurement interval                    |
2130 +----------------+-------+----------+-----------------------------------------+
2131 | received\      | number| No       | Cumulative count of unicast packets     |
2132 | Unicast\       |       |          | received as read at the end of the      |
2133 | Packets\       |       |          | measurement interval                    |
2134 | Accumulated    |       |          |                                         |
2135 +----------------+-------+----------+-----------------------------------------+
2136 | received\      | number| No       | Count of unicast packets received within|
2137 | Unicast\       |       |          | the measurement interval                |
2138 | PacketsDelta   |       |          |                                         |
2139 +----------------+-------+----------+-----------------------------------------+
2140 | received\      | number| No       | Percentage of utilization received;     |
2141 | Utilization    |       |          | value = (receivedOctetsDelta / (speed x |
2142 |                |       |          | (lastEpochMicrosec - startEpochMicrosec)|
2143 |                |       |          | )) x 100, if denominator is nonzero, or |
2144 |                |       |          | 0, if otherwise.                        |
2145 +----------------+-------+----------+-----------------------------------------+
2146 | speed          | number| No       | Speed configured in mbps.               |
2147 +----------------+-------+----------+-----------------------------------------+
2148 | transmitted\   | number| No       | Cumulative count of broadcast packets   |
2149 | Broadcast\     |       |          | transmitted as read at the end of the   |
2150 | Packets\       |       |          | measurement interval                    |
2151 | Accumulated    |       |          |                                         |
2152 +----------------+-------+----------+-----------------------------------------+
2153 | transmitted\   | number| No       | Count of broadcast packets transmitted  |
2154 | Broadcast\     |       |          | within the measurement interval         |
2155 | PacketsDelta   |       |          |                                         |
2156 +----------------+-------+----------+-----------------------------------------+
2157 | transmitted\   | number| No       | Cumulative count of discarded packets   |
2158 | Discarded\     |       |          | transmitted as read at the end of the   |
2159 | Packets\       |       |          | measurement interval                    |
2160 | Accumulated    |       |          |                                         |
2161 +----------------+-------+----------+-----------------------------------------+
2162 | transmitted\   | number| No       | Count of discarded packets transmitted  |
2163 | Discarded\     |       |          | within the measurement interval         |
2164 | PacketsDelta   |       |          |                                         |
2165 +----------------+-------+----------+-----------------------------------------+
2166 | transmitted\   | number| No       | Cumulative count of error packets       |
2167 | ErrorPackets\  |       |          | transmitted as read at the end of the   |
2168 | Accumulated    |       |          | measurement interval                    |
2169 +----------------+-------+----------+-----------------------------------------+
2170 | transmitted\   | number| No       | Count of error packets transmitted      |
2171 | ErrorPackets\  |       |          | within the measurement interval         |
2172 | Delta          |       |          |                                         |
2173 +----------------+-------+----------+-----------------------------------------+
2174 | transmitted\   | number| No       | Cumulative count of multicast packets   |
2175 | Multicast\     |       |          | transmitted as read at the end of the   |
2176 | Packets\       |       |          | measurement interval                    |
2177 | Accumulated    |       |          |                                         |
2178 +----------------+-------+----------+-----------------------------------------+
2179 | transmitted\   | number| No       | Count of multicast packets transmitted  |
2180 | Multicast\     |       |          | within the measurement interval         |
2181 | PacketsDelta   |       |          |                                         |
2182 +----------------+-------+----------+-----------------------------------------+
2183 | transmitted\   | number| No       | Cumulative count of octets transmitted  |
2184 | Octets\        |       |          | as read at the end of the measurement   |
2185 | Accumulated    |       |          | interval                                |
2186 +----------------+-------+----------+-----------------------------------------+
2187 | transmitted\   | number| No       | Count of octets transmitted within the  |
2188 | OctetsDelta    |       |          | measurement interval                    |
2189 +----------------+-------+----------+-----------------------------------------+
2190 | transmitted\   | number| No       | Percentage of discarded packets         |
2191 | PercentDiscard |       |          | transmitted; value =                    |
2192 |                |       |          | (transmittedDiscardedPacketsDelta /     |
2193 |                |       |          | transmittedTotalPacketsDelta) x 100, if |
2194 |                |       |          | denominator is nonzero, or 0, if        |
2195 |                |       |          | otherwise.                              |
2196 +----------------+-------+----------+-----------------------------------------+
2197 | transmitted\   | number| No       | Percentage of error packets received;   |
2198 | PercentError   |       |          | value = (transmittedErrorPacketsDelta / |
2199 |                |       |          | transmittedTotalPacketsDelta) x 100, if |
2200 |                |       |          | denominator is nonzero, or 0, if        |
2201 |                |       |          | otherwise.                              |
2202 +----------------+-------+----------+-----------------------------------------+
2203 | transmitted\   | number| No       | Cumulative count of all packets         |
2204 | TotalPackets\  |       |          | transmitted as read at the end of the   |
2205 | Accumulated    |       |          | measurement interval                    |
2206 +----------------+-------+----------+-----------------------------------------+
2207 | transmitted\   | number| No       | Count of all packets transmitted within |
2208 | TotalPackets\  |       |          | the measurement interval                |
2209 | Delta          |       |          |                                         |
2210 +----------------+-------+----------+-----------------------------------------+
2211 | transmitted\   | number| No       | Cumulative count of unicast packets     |
2212 | Unicast\       |       |          | transmitted as read at the end of the   |
2213 | Packets\       |       |          | measurement interval                    |
2214 | Accumulated    |       |          |                                         |
2215 +----------------+-------+----------+-----------------------------------------+
2216 | transmitted\   | number| No       | Count of unicast packets transmitted    |
2217 | Unicast\       |       |          | within the measurement interval         |
2218 | PacketsDelta   |       |          |                                         |
2219 +----------------+-------+----------+-----------------------------------------+
2220 | transmitted\   | number| No       | Percentage of utilization transmitted;  |
2221 | Utilization    |       |          | value = (transmittedOctetsDelta / (speed|
2222 |                |       |          | x (lastEpochMicrosec -                  |
2223 |                |       |          | startEpochMicrosec))) x 100, if         |
2224 |                |       |          | denominator is nonzero, or 0, if        |
2225 |                |       |          | otherwise.                              |
2226 +----------------+-------+----------+-----------------------------------------+
2227 | values\        | string| Yes      | Enumeration: ‘true’ or ‘false’. If      |
2228 | AreSuspect     |       |          | ‘true’ then the vNicPerformance values  |
2229 |                |       |          | are likely inaccurate due to counter    |
2230 |                |       |          | overflow or other conditions.           |
2231 +----------------+-------+----------+-----------------------------------------+
2232
2233 Datatype: processorDimmAggregateThermalMargin
2234 **********************************************
2235
2236 The processorDimmAggregateThermalMargin datatype provides intelligent
2237 platform management interface (ipmi) processor dual inline memory module
2238 aggregate thermal margin metrics; it consists of the following fields:
2239
2240 +-----------------+-------+----------+----------------------------------------+
2241 | Field           | Type  | Required?| Description                            |
2242 +=================+=======+==========+========================================+
2243 | processor\      | string| Yes      | identifier for the aggregate thermal   |
2244 | DimmAggregate\  |       |          | margin metrics from the processor dual |
2245 | Thermal         |       |          | inline memory module                   |
2246 | MarginIdentifier|       |          |                                        |
2247 +-----------------+-------+----------+----------------------------------------+
2248 | thermalMargin   | number| Yes      | the difference between the DIMM's      |
2249 |                 |       |          | current temperature, in celsius, and   |
2250 |                 |       |          | the DIMM's throttling thermal trip     |
2251 +-----------------+-------+----------+----------------------------------------+
2252
2253 Datatype: processStats
2254 ***********************
2255
2256 The processStats datatype provides metrics on system processes; it
2257 consists of the following fields:
2258
2259
2260 +-----------+-------+----------+----------------------------------------------+
2261 | Field     | Type  | Required?| Description                                  |
2262 +===========+=======+==========+==============================================+
2263 | forkRate  | number| No       | The number of threads created since the last |
2264 |           |       |          | reboot                                       |
2265 +-----------+-------+----------+----------------------------------------------+
2266 | process\  | string| Yes      | processIdentifier                            |
2267 | Identifier|       |          |                                              |
2268 +-----------+-------+----------+----------------------------------------------+
2269 | psState\  | number| No       | The number of processes in a blocked state   |
2270 | Blocked   |       |          |                                              |
2271 +-----------+-------+----------+----------------------------------------------+
2272 | psState\  | number| No       | The number of processes in a paging state    |
2273 | Paging    |       |          |                                              |
2274 +-----------+-------+----------+----------------------------------------------+
2275 | psState\  | number| No       | The number of processes in a running state   |
2276 | Running   |       |          |                                              |
2277 +-----------+-------+----------+----------------------------------------------+
2278 | psState\  | number| No       | The number of processes in a sleeping state  |
2279 | Sleeping  |       |          |                                              |
2280 +-----------+-------+----------+----------------------------------------------+
2281 | psState\  | number| No       | The number of processes in a stopped state   |
2282 | Stopped   |       |          |                                              |
2283 +-----------+-------+----------+----------------------------------------------+
2284 | psState\  | number| No       | The number of processes in a zombie state    |
2285 | Zombie    |       |          |                                              |
2286 +-----------+-------+----------+----------------------------------------------+
2287
2288 ‘Notification’ Domain Datatypes
2289 ++++++++++++++++++++++++++++++++
2290
2291 Datatype: notificationFields
2292 ******************************
2293
2294 The notificationFields datatype consists of the following fields:
2295
2296 +--------------+-----------+----------+---------------------------------------+
2297 | Field        | Type      | Required?| Description                           |
2298 +==============+===========+==========+=======================================+
2299 | additional\  | hashMap   | No       | Additional notification fields if     |
2300 | Fields       |           |          | needed                                |
2301 +--------------+-----------+----------+---------------------------------------+
2302 | arrayOfNamed\| namedHash\| No       | Array of named hashMaps               |
2303 | HashMap      | Map [ ]   |          |                                       |
2304 +--------------+-----------+----------+---------------------------------------+
2305 | change\      | string    | No       | Identifier for a contact related to   |
2306 | Contact      |           |          | the change                            |
2307 +--------------+-----------+----------+---------------------------------------+
2308 | change\      | string    | Yes      | System or session identifier          |
2309 | Identifier   |           |          | associated with the change            |
2310 +--------------+-----------+----------+---------------------------------------+
2311 | changeType   | string    | Yes      | Describes what has changed for the    |
2312 |              |           |          | entity, for example: configuration    |
2313 |              |           |          | changed, capability added, capability |
2314 |              |           |          | removed…                              |
2315 +--------------+-----------+----------+---------------------------------------+
2316 | newState     | string    | No       | New state of the entity, for example: |
2317 |              |           |          | ‘inService’, ‘maintenance’,           |
2318 |              |           |          | ‘outOfService’                        |
2319 +--------------+-----------+----------+---------------------------------------+
2320 | notification\| string    | Yes      | Version of the notificationFields     |
2321 | FieldsVersion|           |          | block as "#.#" where # is a digit; see|
2322 |              |           |          | section 1 for the correct digits to   |
2323 |              |           |          | use.                                  |
2324 +--------------+-----------+----------+---------------------------------------+
2325 | oldState     | string    | No       | Previous state of the entity, for     |
2326 |              |           |          | example: ‘inService’, ‘maintenance’,  |
2327 |              |           |          | ‘outOfService’                        |
2328 +--------------+-----------+----------+---------------------------------------+
2329 | state\       | string    | No       | Card or port name of the entity that  |
2330 | Interface    |           |          | changed state                         |
2331 +--------------+-----------+----------+---------------------------------------+
2332
2333 The fileReady notification event is used by 3GPP-compliant NFs to notify
2334 ONAP that a PM file is available for upload. The notificationFields are
2335 populated as follows:
2336
2337 **arrayOfNamedHashMap:** The array is named for the PM file as defined
2338 in 3GPP TS 28.550. The array contains the following key value pairs:
2339
2340 -  **location** in the form protocol://ipAddress:port/path/filename;
2341    e.g. "location" :
2342    "ftpes://135.3.1.44:21/pmfiles/A20180531.1030+0600-1045+0600\A20000626.2315+0200-2330+0200_NodeBId.gz"
2343
2344 -  **compression** containing the compression type used for the PM file;
2345    e.g. "compression" : "gzip"
2346
2347 -  **fileFormatType** containing the format type of the PM file; e.g.
2348    "fileFormatType" : "org.3GPP.32.435#measCollec"
2349
2350 -  **fileFormatVersion** containing the format version of the PM file;
2351    e.g. "fileFormatVersion" : "V10"
2352
2353 -  other vendor-defined key-value pairs as needed
2354
2355 **changeIdentifier:** set to PM\_MEAS\_FILES
2356
2357 **changeType:** set to fileReady
2358
2359 Other notificationFields are not used for fileReady.
2360
2361 ‘Other’ Domain Datatypes
2362 +++++++++++++++++++++++++
2363
2364 Datatype: otherFields
2365 **********************
2366
2367 The otherFields datatype defines fields for events belonging to the
2368 'other' domain of the commonEventHeader domain enumeration; it consists
2369 of the following fields:
2370
2371 +-------------+-------------+----------+--------------------------------------+
2372 | Field       | Type        | Required?| Description                          |
2373 +=============+=============+==========+======================================+
2374 | arrayOf\    | arrayOf\    | No       | Array of named hashMaps              |
2375 | NamedHashMap| NamedHashMap|          |                                      |
2376 +-------------+-------------+----------+--------------------------------------+
2377 | hashMap     | hashMap     | No       | Array of name-value pairs            |
2378 +-------------+-------------+----------+--------------------------------------+
2379 | jsonObjects | arrayOf\    | No       | Array of JSON objects described by   |
2380 |             | JsonObject  |          | name, schema and other               |
2381 |             |             |          | meta-information                     |
2382 +-------------+-------------+----------+--------------------------------------+
2383 | otherFields\| string      | Yes      | Version of the otherFields block as  |
2384 | Version     |             |          | "#.#" where # is a digit; see section|
2385 |             |             |          | 1 for the correct digits to use.     |
2386 +-------------+-------------+----------+--------------------------------------+
2387
2388 ‘perf3gpp’ Domain Datatypes
2389 ++++++++++++++++++++++++++++
2390
2391 Datatype: measDataCollection
2392 *****************************
2393
2394 The measDataCollection datatype defines a 3GPP measurement collection
2395 structure aligned with the 3GPP PM format; it consists of the following
2396 fields:
2397
2398 +----------------+---------+----------+---------------------------------------+
2399 | Field          | Type    | Required?| Description                           |
2400 +================+=========+==========+=======================================+
2401 | format\        | string  | No       | 3GPP PM reporting file format version |
2402 | Version        |         |          | from pre-standard TS 28.550 v2.0.0    |
2403 +----------------+---------+----------+---------------------------------------+
2404 | granularity\   | string  | Yes      | Granularity period for the PM report  |
2405 | Period         |         |          | in seconds                            |
2406 +----------------+---------+----------+---------------------------------------+
2407 | measInfoList   | measInfo| Yes      | Array of measInfo measurements        |
2408 |                | [ ]     |          |                                       |
2409 +----------------+---------+----------+---------------------------------------+
2410 | measObjInst\   | string  | No       | Array of monitored object local       |
2411 | IdList         | [ ]     |          | distinguished name ids per 3GPP TS    |
2412 |                |         |          | 32.300                                |
2413 +----------------+---------+----------+---------------------------------------+
2414 | measured\      | string  | Yes      | Distinguished name per 3GPP TS 28.550 |
2415 | EntityDn       |         |          |                                       |
2416 +----------------+---------+----------+---------------------------------------+
2417 | measuredEntity\| string  | No       | Software version for the NF providing |
2418 | SoftwareVersion|         |          | the PM data as specified in 3GPP TS   |
2419 |                |         |          | 28.550                                |
2420 +----------------+---------+----------+---------------------------------------+
2421 | measuredEntity\| string  | No       | User Definable name for the measured  |
2422 | UserName       |         |          | object per 3GPP TS 28.550             |
2423 +----------------+---------+----------+---------------------------------------+
2424
2425 Datatype: measInfo
2426 ********************
2427
2428 The measInfo datatype provides measurement information; it consists of
2429 the following fields:
2430
2431 +-------+--------------------------+----------+-------------------------------+
2432 | Field | Type                     | Required?| Description                   |
2433 +=======+==========================+==========+===============================+
2434 | jobId | string                   | No       | Name of the measurement job   |
2435 +-------+--------------------------+----------+-------------------------------+
2436 | meas\ | oneOf [ measInfoIdInteger| No       | Measurement group Identifier  |
2437 | InfoId| , measInfoIdString ]     |          |                               |
2438 +-------+--------------------------+----------+-------------------------------+
2439 | meas\ | oneOf [ measTypesInteger | Yes      | Array of measurement          |
2440 | Types | , measTypesString ]      |          | identifiers associated with   |
2441 |       |                          |          | the measurement results       |
2442 |       |                          |          | expressed as integers for     |
2443 |       |                          |          | efficiency rather than strings|
2444 +-------+--------------------------+----------+-------------------------------+
2445 | meas\ | measValues [ ]           | Yes      | Array of measValues           |
2446 | Values|                          |          |                               |
2447 +-------+--------------------------+----------+-------------------------------+
2448
2449 Datatype: measInfoIdInteger
2450 ****************************
2451
2452 The measInfoIdInteger datatype provides an integer measurement group
2453 identifier; it consists of the following fields:
2454
2455 +---------------+---------+----------+--------------------------------------+
2456 | Field         | Type    | Required?| Description                          |
2457 +===============+=========+==========+======================================+
2458 | iMeasInfoId   | integer | Yes      | Integer measurement group Identifier |
2459 +---------------+---------+----------+--------------------------------------+
2460
2461 Datatype: measInfoIdString
2462 ***************************
2463
2464 The measInfoIdString datatype provides a string measurement group
2465 identifier; it consists of the following fields:
2466
2467 +---------------+-----------+----------+--------------------------------------+
2468 | Field         | Type      | Required?| Description                          |
2469 +===============+===========+==========+======================================+
2470 | sMeasInfoId   | integer   | Yes      | String measurement group Identifier  |
2471 +---------------+-----------+----------+--------------------------------------+
2472
2473 Datatype: measResultInteger
2474 ****************************
2475
2476 The measResultInteger datatype provides an integer 3GPP PM measurement
2477 result; it consists of the following fields:
2478
2479 +----------+-----------+-------------+------------------------------------+
2480 | Field    | Type      | Required?   | Description                        |
2481 +==========+===========+=============+====================================+
2482 | p        | integer   | Yes         | Integer reference to the counter   |
2483 +----------+-----------+-------------+------------------------------------+
2484 | iValue   | integer   | Yes         | Integer counter value              |
2485 +----------+-----------+-------------+------------------------------------+
2486
2487 Datatype: measResultNull
2488 *************************
2489
2490 The measResultNull datatype provides a null 3GPP PM measurement result;
2491 it consists of the following fields:
2492
2493 +----------+-----------+-------------+------------------------------------+
2494 | Field    | Type      | Required?   | Description                        |
2495 +==========+===========+=============+====================================+
2496 | p        | integer   | Yes         | Integer reference to the counter   |
2497 +----------+-----------+-------------+------------------------------------+
2498 | isNull   | string    | Yes         | Enumeration: ‘true’ or ‘false’     |
2499 +----------+-----------+-------------+------------------------------------+
2500
2501 Datatype: measResultNumber
2502 ***************************
2503
2504 The measResultNumber datatype provides a number 3GPP PM measurement
2505 result; it consists of the following fields:
2506
2507 +----------+-----------+-------------+------------------------------------+
2508 | Field    | Type      | Required?   | Description                        |
2509 +==========+===========+=============+====================================+
2510 | p        | integer   | Yes         | Integer reference to the counter   |
2511 +----------+-----------+-------------+------------------------------------+
2512 | rValue   | number    | Yes         | Number counter value               |
2513 +----------+-----------+-------------+------------------------------------+
2514
2515 Datatype: measResultString
2516 ***************************
2517
2518 The measResultString datatype provides a string 3GPP PM measurement
2519 result; it consists of the following fields:
2520
2521 +----------+-----------+-------------+------------------------------------+
2522 | Field    | Type      | Required?   | Description                        |
2523 +==========+===========+=============+====================================+
2524 | p        | integer   | Yes         | Integer reference to the counter   |
2525 +----------+-----------+-------------+------------------------------------+
2526 | sValue   | string    | Yes         | String counter value               |
2527 +----------+-----------+-------------+------------------------------------+
2528
2529 Datatype: measTypesInteger
2530 ***************************
2531
2532 The measTypesInteger datatype provides an array of integer measurement
2533 identifiers associated with the measurement results; it consists of the
2534 following fields:
2535
2536 +----------+--------+----------+----------------------------------------------+
2537 | Field    | Type   | Required?| Description                                  |
2538 +==========+========+==========+==============================================+
2539 | iMeas\   | integer| Yes      | Array of integer measurement identifiers     |
2540 | TypesList| [ ]    |          | associated with the measurement results      |
2541 +----------+--------+----------+----------------------------------------------+
2542
2543 Datatype: measTypesString
2544 **************************
2545
2546 The measTypesString datatype provides an array of string measurement
2547 identifiers associated with the measurement results; it consists of the
2548 following fields:
2549
2550 +----------+-------+----------+-----------------------------------------------+
2551 | Field    | Type  | Required?| Description                                   |
2552 +==========+=======+==========+===============================================+
2553 | sMeas\   | string| Yes      | Array of string measurement identifiers       |
2554 | TypesList| [ ]   |          | associated with the measurement results       |
2555 +----------+-------+----------+-----------------------------------------------+
2556
2557 Datatype: measValues
2558 *********************
2559
2560 The measValues datatype provides 3GPP measurement values; it consists of
2561 the following fields:
2562
2563 +---------+----------------------------------+----------+---------------------+
2564 | Field   | Type                             | Required?| Description         |
2565 +=========+==================================+==========+=====================+
2566 | measObj\| hashMap                          | No       | Additional key-value|
2567 | AddlFlds|                                  |          | pairs if needed     |
2568 +---------+----------------------------------+----------+---------------------+
2569 | measObj\|measDataCollection                | Yes      | Monitored object    |
2570 | InstId  |                                  |          | local distinguished |
2571 |         |                                  |          | name per 3GPP TS    |
2572 |         |                                  |          | 32.300 and 3GPP TS  |
2573 |         |                                  |          | 32.432              |
2574 +---------+----------------------------------+----------+---------------------+
2575 | meas\   | Array of items where each item is| Yes      | Array of results    |
2576 | Results | oneOf [ measResultInteger,       |          |                     |
2577 |         | measResultNull, measResultNumber,|          |                     |
2578 |         | measResultString ]               |          |                     |
2579 +---------+----------------------------------+----------+---------------------+
2580 | suspect\| string                           | No       | Enumeration: ‘true’,|
2581 | Flag    |                                  |          | ‘false’. Indicates  |
2582 |         |                                  |          | if the values are   |
2583 |         |                                  |          | suspect             |
2584 +---------+----------------------------------+----------+---------------------+
2585
2586 Datatype: perf3gppFields
2587 *************************
2588
2589 The perf3gppFields datatype defines fields for 3GPP PM format events,
2590 based on 3GPP TS 28.550, belonging to the 'perf3gpp' domain of the
2591 commonEventHeader domain enumeration; it consists of the following
2592 fields:
2593
2594 +--------------+-----------+----------+---------------------------------------+
2595 | Field        | Type      | Required?| Description                           |
2596 +==============+===========+==========+=======================================+
2597 | eventAddl\   | hashMap   | No       | Additional key-value pairs if needed  |
2598 | Fields       |           |          |                                       |
2599 +--------------+-----------+----------+---------------------------------------+
2600 | measData\    | measData  | Yes      | 3GPP measurement collection structure |
2601 | Collection   | Collection|          |                                       |
2602 +--------------+-----------+----------+---------------------------------------+
2603 | perf3gpp\    | string    | Yes      | Version of the perf3gpp event         |
2604 | FieldsVersion|           |          |                                       |
2605 +--------------+-----------+----------+---------------------------------------+
2606
2607 ‘pnfRegistration’ Domain Datatypes
2608 ++++++++++++++++++++++++++++++++++++
2609
2610 Datatype: pnfRegistrationFields
2611 ********************************
2612
2613 The pnfRegistrationFields datatype defines fields for events belonging
2614 to the 'pnfRegistration' domain of the commonEventHeader domain
2615 enumeration; it consists of the following fields:
2616
2617 +-----------------+--------+----------+---------------------------------------+
2618 | Field           | Type   | Required?| Description                           |
2619 +=================+========+==========+=======================================+
2620 | additional\     | hashMap| No       | Additional pnfRegistration fields if  |
2621 | Fields          |        |          | needed                                |
2622 +-----------------+--------+----------+---------------------------------------+
2623 | last\           | string | No       | TS 32.692 dateOfLastService = date of |
2624 | ServiceDate     |        |          | last service; e.g. 15022017           |
2625 +-----------------+--------+----------+---------------------------------------+
2626 | macAddress      | string | No       | MAC address of OAM interface of the   |
2627 |                 |        |          | unit                                  |
2628 +-----------------+--------+----------+---------------------------------------+
2629 | manufacture\    | string | No       | TS 32.692 dateOfManufacture =         |
2630 | Date            |        |          | manufacture date of the unit; 24032016|
2631 +-----------------+--------+----------+---------------------------------------+
2632 | modelNumber     | string | No       | TS 32.692 versionNumber = version of  |
2633 |                 |        |          | the unit from vendor; e.g. AJ02. Maps |
2634 |                 |        |          | to AAI equip-model                    |
2635 +-----------------+--------+----------+---------------------------------------+
2636 | oamV4\          | string | No       | IPv4 m-plane IP address to be used by |
2637 | IpAddress       |        |          | the manager to contact the PNF        |
2638 +-----------------+--------+----------+---------------------------------------+
2639 | oamV6\          | string | No       | IPv6 m-plane IP address to be used by |
2640 | IpAddress       |        |          | the manager to contact the PNF        |
2641 +-----------------+--------+----------+---------------------------------------+
2642 | pnfRegistration\| string | Yes      | Version of the pnfRegistrationFields  |
2643 | FieldsVersion   |        |          | block as "#.#" where # is a digit; see|
2644 |                 |        |          | section 1 for the correct digits to   |
2645 |                 |        |          | use.                                  |
2646 +-----------------+--------+----------+---------------------------------------+
2647 | serialNumber    | string | No       | TS 32.692 serialNumber = serial number|
2648 |                 |        |          | of the unit; e.g. 6061ZW3             |
2649 +-----------------+--------+----------+---------------------------------------+
2650 | software\       | string | No       | TS 32.692 swName = active SW running  |
2651 | Version         |        |          | on the unit; e.g. 5gDUv18.05.201      |
2652 +-----------------+--------+----------+---------------------------------------+
2653 | unitFamily      | string | No       | TS 32.692 vendorUnitFamilyType =      |
2654 |                 |        |          | general type of HW unit; e.g. BBU     |
2655 +-----------------+--------+----------+---------------------------------------+
2656 | unitType        | string | No       | TS 32.692 vendorUnitTypeNumber =      |
2657 |                 |        |          | vendor name for the unit; e.g.        |
2658 |                 |        |          | Airscale                              |
2659 +-----------------+--------+----------+---------------------------------------+
2660 | vendorName      | string | No       | TS 32.692 vendorName = name of        |
2661 |                 |        |          | manufacturer; e.g. Nokia. Maps to AAI |
2662 |                 |        |          | equip-vendor                          |
2663 +-----------------+--------+----------+---------------------------------------+
2664
2665 ‘State Change’ Domain Datatypes
2666 ++++++++++++++++++++++++++++++++
2667
2668 Datatype: stateChangeFields
2669 *****************************
2670
2671 The stateChangeFields datatype consists of the following fields:
2672
2673 +--------------+--------+----------+------------------------------------------+
2674 | Field        | Type   | Required?| Description                              |
2675 +==============+========+==========+==========================================+
2676 | additional\  | hashMap| No       | Additional stateChange fields if needed  |
2677 | Fields       |        |          |                                          |
2678 +--------------+--------+----------+------------------------------------------+
2679 | newState     | string | Yes      | New state of the entity: ‘inService’,    |
2680 |              |        |          | ‘maintenance’, ‘outOfService’            |
2681 +--------------+--------+----------+------------------------------------------+
2682 | oldState     | string | Yes      | Previous state of the entity: ‘inService’|
2683 |              |        |          | , ‘maintenance’, ‘outOfService’          |
2684 +--------------+--------+----------+------------------------------------------+
2685 | stateChange\ | string | Yes      | Version of the stateChangeFields block as|
2686 | FieldsVersion|        |          | "#.#" where # is a digit; see section 1  |
2687 |              |        |          | for the correct digits to use.           |
2688 +--------------+--------+----------+------------------------------------------+
2689 | state\       | string | Yes      | Card or port name of the entity that     |
2690 | Interface    |        |          | changed state                            |
2691 +--------------+--------+----------+------------------------------------------+
2692
2693 ‘Syslog’ Domain Datatypes
2694 ++++++++++++++++++++++++++
2695
2696 Datatype: syslogFields
2697 ***********************
2698
2699 The syslogFields datatype consists of the following fields:
2700
2701 +------------+--------+----------+--------------------------------------------+
2702 | Field      | Type   | Required?| Description                                |
2703 +============+========+==========+============================================+
2704 | additional\| hashMap| No       | Additional syslog fields if needed Ex:     |
2705 | Fields     |        |          | {"name1": "value1", "name2: "value2" … }   |
2706 +------------+--------+----------+--------------------------------------------+
2707 | event\     | string | No       | Hostname of the device                     |
2708 | SourceHost |        |          |                                            |
2709 +------------+--------+----------+--------------------------------------------+
2710 | event\     | string | Yes      | Examples: ‘other’, ‘router’, ‘switch’,     |
2711 | SourceType |        |          | ‘host’, ‘card’, ‘port’, ‘slotThreshold’,   |
2712 |            |        |          | ‘portThreshold’, ‘virtualMachine’,         |
2713 |            |        |          | ‘virtualNetworkFunction’                   |
2714 +------------+--------+----------+--------------------------------------------+
2715 | syslog\    | integer| No       | Numeric code from 0 to 23 for facility:    |
2716 | Facility   |        |          |                                            |
2717 |            |        |          |                                            |
2718 |            |        |          | 0 kernel messages                          |
2719 |            |        |          |                                            |
2720 |            |        |          | 1 user-level messages                      |
2721 |            |        |          |                                            |
2722 |            |        |          | 2 mail system                              |
2723 |            |        |          |                                            |
2724 |            |        |          | 3 system daemons                           |
2725 |            |        |          |                                            |
2726 |            |        |          | 4 security/authorization messages          |
2727 |            |        |          |                                            |
2728 |            |        |          | 5 messages generated internally by syslogd |
2729 |            |        |          |                                            |
2730 |            |        |          | 6 line printer subsystem                   |
2731 |            |        |          |                                            |
2732 |            |        |          | 7 network news subsystem                   |
2733 |            |        |          |                                            |
2734 |            |        |          | 8 UUCP subsystem                           |
2735 |            |        |          |                                            |
2736 |            |        |          | 9 clock daemon                             |
2737 |            |        |          |                                            |
2738 |            |        |          | 10 security/authorization messages         |
2739 |            |        |          |                                            |
2740 |            |        |          | 11 FTP daemon                              |
2741 |            |        |          |                                            |
2742 |            |        |          | 12 NTP subsystem                           |
2743 |            |        |          |                                            |
2744 |            |        |          | 13 log audit                               |
2745 |            |        |          |                                            |
2746 |            |        |          | 14 log alert                               |
2747 |            |        |          |                                            |
2748 |            |        |          | 15 clock daemon (note 2)                   |
2749 |            |        |          |                                            |
2750 |            |        |          | 16 local use 0 (local0)                    |
2751 |            |        |          |                                            |
2752 |            |        |          | 17 local use 1 (local1)                    |
2753 |            |        |          |                                            |
2754 |            |        |          | 18 local use 2 (local2)                    |
2755 |            |        |          |                                            |
2756 |            |        |          | 19 local use 3 (local3)                    |
2757 |            |        |          |                                            |
2758 |            |        |          | 20 local use 4 (local4)                    |
2759 |            |        |          |                                            |
2760 |            |        |          | 21 local use 5 (local5)                    |
2761 |            |        |          |                                            |
2762 |            |        |          | 22 local use 6 (local6)                    |
2763 |            |        |          |                                            |
2764 |            |        |          | 23 local use 7 (local7 )                   |
2765 +------------+--------+----------+--------------------------------------------+
2766 | syslog\    | string | Yes      | Version of the syslogFields block as "#.#" |
2767 | Fields\    |        |          | where # is a digit; see section 1 for the  |
2768 | Version    |        |          | correct digits to use.                     |
2769 +------------+--------+----------+--------------------------------------------+
2770 | syslogMsg  | string | Yes      | Syslog message                             |
2771 +------------+--------+----------+--------------------------------------------+
2772 | syslog\    | string | No       | Hostname parsed from non-VES syslog message|
2773 | MsgHost    |        |          |                                            |
2774 +------------+--------+----------+--------------------------------------------+
2775 | syslogPri  | integer| No       | 0-192                                      |
2776 |            |        |          |                                            |
2777 |            |        |          | Combined Severity and Facility(see rfc5424)|
2778 +------------+--------+----------+--------------------------------------------+
2779 | syslogProc | string | No       | Identifies the application that originated |
2780 |            |        |          | the message                                |
2781 +------------+--------+----------+--------------------------------------------+
2782 | syslog\    | number | No       | The process number assigned by the OS when |
2783 | ProcId     |        |          | the application was started                |
2784 +------------+--------+----------+--------------------------------------------+
2785 | syslog\    | string | No       | A <space> separated list of key="value"    |
2786 | SData      |        |          | pairs following the rfc5424 standard for   |
2787 |            |        |          | SD-ELEMENT.                                |
2788 |            |        |          |                                            |
2789 |            |        |          | ***Deprecated ***                          |
2790 |            |        |          |                                            |
2791 |            |        |          | The entire rfc5424 syslogSData object,     |
2792 |            |        |          | including square brackets [ ], SD-ID and   |
2793 |            |        |          | list of SD-PARAMs                          |
2794 +------------+--------+----------+--------------------------------------------+
2795 | syslogSdId | string | No       | 0-32 char in format name@number,           |
2796 |            |        |          |                                            |
2797 |            |        |          | i.e., ourSDID@32473                        |
2798 +------------+--------+----------+--------------------------------------------+
2799 | syslogSev  | string | No       | Level-of-severity text enumeration defined |
2800 |            |        |          | below:                                     |
2801 |            |        |          |                                            |
2802 |            |        |          | *Text* *Sev* *Description*                 |
2803 |            |        |          |                                            |
2804 |            |        |          | Emergency 0 system is unusable             |
2805 |            |        |          |                                            |
2806 |            |        |          | Alert 1 action must be taken immediately   |
2807 |            |        |          |                                            |
2808 |            |        |          | Critical 2 critical conditions             |
2809 |            |        |          |                                            |
2810 |            |        |          | Error 3 error conditions                   |
2811 |            |        |          |                                            |
2812 |            |        |          | Warning 4 warning conditions               |
2813 |            |        |          |                                            |
2814 |            |        |          | Notice 5 normal but significant condition  |
2815 |            |        |          |                                            |
2816 |            |        |          | Info 6 Informational messages              |
2817 |            |        |          |                                            |
2818 |            |        |          | Debug 7 debug-level messages               |
2819 +------------+--------+----------+--------------------------------------------+
2820 | syslogTag  | string | Yes      | Also known as MsgId. Brief non-spaced text |
2821 |            |        |          | indicating the type of message such as     |
2822 |            |        |          | ‘TCPOUT’ or ‘BGP\_STATUS\_CHANGE’;         |
2823 |            |        |          | ‘NILVALUE’ should be used when no other    |
2824 |            |        |          | value can be provided                      |
2825 +------------+--------+----------+--------------------------------------------+
2826 | syslogTs   | string | No       | Timestamp parsed from non-VES syslog       |
2827 |            |        |          | message                                    |
2828 +------------+--------+----------+--------------------------------------------+
2829 | syslogVer  | number | No       | IANA assigned version of the syslog        |
2830 |            |        |          | protocol specification:                    |
2831 |            |        |          |                                            |
2832 |            |        |          | 0: VES                                     |
2833 |            |        |          |                                            |
2834 |            |        |          | 1: IANA RFC5424                            |
2835 +------------+--------+----------+--------------------------------------------+
2836
2837 Examples of syslogSData :
2838
2839 Preferred
2840
2841     ts="1985-04-12T23:20:50.52Z" tag="BGP\_NEIGHBOR\_DOWN" msg="The BGP
2842     session to neighbor 10.10.10.10 is down"
2843
2844 Deprecated
2845
2846     [attinc@1234 ts="1985-04-12T23:20:50.52Z" tag="BGP\_NEIGHBOR\_DOWN"
2847     msg="The BGP session to neighbor 10.10.10.10 is down"]
2848
2849 Syslog references:
2850
2851 https://tools.ietf.org/html/rfc5424#section-6
2852
2853     https://www.iana.org/assignments/syslog-parameters/syslog-parameters.xhtml
2854
2855 ‘Threshold Crossing Alert’ Domain Datatypes
2856 ++++++++++++++++++++++++++++++++++++++++++++
2857
2858 Datatype: counter
2859 ******************
2860
2861 The counter datatype consists of the following fields:
2862
2863 +------------+--------+----------+--------------------------------------------+
2864 | Field      | Type   | Required?| Description                                |
2865 +============+========+==========+============================================+
2866 | criticality| string | Yes      | Enumeration: ‘CRIT’, ‘MAJ’                 |
2867 +------------+--------+----------+--------------------------------------------+
2868 | hashMap    | hashMap| Yes      | Key is the name of the counter and value is|
2869 |            |        |          | the current value of the counter           |
2870 +------------+--------+----------+--------------------------------------------+
2871 | threshhold\| string | Yes      | Last threshold that was crossed            |
2872 | Crossed    |        |          |                                            |
2873 +------------+--------+----------+--------------------------------------------+
2874
2875 Datatype: thresholdCrossingAlertFields
2876 ****************************************
2877
2878 The thresholdCrossingAlertFields datatype consists of the following
2879 fields:
2880
2881 +------------+------------+----------+----------------------------------------+
2882 | Field      | Type       | Required?| Description                            |
2883 +============+============+==========+========================================+
2884 | additional\| hashMap    | No       | Additional threshold crossing alert    |
2885 | Fields     |            |          | fields if needed                       |
2886 +------------+------------+----------+----------------------------------------+
2887 | additional\| counter [ ]| Yes      | Array of performance counters          |
2888 | Parameters |            |          |                                        |
2889 +------------+------------+----------+----------------------------------------+
2890 | alert\     | string     | Yes      | Enumeration: ‘SET’, ‘CONT’, ‘CLEAR’    |
2891 | Action     |            |          |                                        |
2892 +------------+------------+----------+----------------------------------------+
2893 | alert\     | string     | Yes      | Unique short alert description (e.g.,  |
2894 | Description|            |          | NE-CPUMEM)                             |
2895 +------------+------------+----------+----------------------------------------+
2896 | alertType  | string     | Yes      | Enumeration: ‘CARD-ANOMALY’,           |
2897 |            |            |          | ‘INTERFACE-ANOMALY’, ELEMENT-ANOMALY’, |
2898 |            |            |          | ‘SERVICE-ANOMALY’                      |
2899 +------------+------------+----------+----------------------------------------+
2900 | alertValue | string     | No       | Calculated API value (if applicable)   |
2901 +------------+------------+----------+----------------------------------------+
2902 | associated\| string [ ] | No       | List of eventIds associated with the   |
2903 | AlertIdList|            |          | event being reported                   |
2904 +------------+------------+----------+----------------------------------------+
2905 | collection\| string     | Yes      | Time when the performance collector    |
2906 | Timestamp  |            |          | picked up the data; with RFC 2822      |
2907 |            |            |          | compliant format: ‘Sat, 13 Mar 2010    |
2908 |            |            |          | 11:29:05 -0800’                        |
2909 +------------+------------+----------+----------------------------------------+
2910 | data\      | string     | No       | Specific performance collector instance|
2911 | Collector  |            |          | used                                   |
2912 +------------+------------+----------+----------------------------------------+
2913 | elementType| string     | No       | Type of network element (internal AT&T |
2914 |            |            |          | field)                                 |
2915 +------------+------------+----------+----------------------------------------+
2916 | event\     | string     | Yes      | Event severity or priority enumeration:|
2917 | Severity   |            |          | ‘CRITICAL’, ‘MAJOR’, ‘MINOR’, ‘WARNING’|
2918 |            |            |          | , ‘NORMAL’                             |
2919 +------------+------------+----------+----------------------------------------+
2920 | eventStart\| string     | Yes      | Time closest to when the measurement   |
2921 | Timestamp  |            |          | was made; with RFC 2822 compliant      |
2922 |            |            |          | format: ‘Sat, 13 Mar 2010 11:29:05     |
2923 |            |            |          | -0800’                                 |
2924 +------------+------------+----------+----------------------------------------+
2925 | interface\ | string     | No       | Physical or logical port or card (if   |
2926 | Name       |            |          | applicable)                            |
2927 +------------+------------+----------+----------------------------------------+
2928 | network\   | string     | No       | Network name (internal AT&T field)     |
2929 | Service    |            |          |                                        |
2930 +------------+------------+----------+----------------------------------------+
2931 | possible\  | string     | No       | Reserved for future use                |
2932 | RootCause  |            |          |                                        |
2933 +------------+------------+----------+----------------------------------------+
2934 | threshold\ | string     | Yes      | Version of the                         |
2935 | Crossing   |            |          | thresholdCrossingAlertFields block as  |
2936 | Fields\    |            |          | "#.#" where # is a digit; see section 1|
2937 | Version    |            |          | for the correct digits to use.         |
2938 +------------+------------+----------+----------------------------------------+
2939
2940 Technology Specific Datatypes
2941 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2942
2943 Mobile Flow’ Domain Datatypes
2944 ++++++++++++++++++++++++++++++
2945
2946 Datatype: gtpPerFlowMetrics
2947 ****************************
2948
2949 The gtpPerFlowMetrics datatype consists of the following fields:
2950
2951 +---------------+--------+----------+-----------------------------------------+
2952 | Field         | Type   | Required?| Description                             |
2953 +===============+========+==========+=========================================+
2954 | avgBit\       | number | Yes      | Average bit error rate                  |
2955 | ErrorRate     |        |          |                                         |
2956 +---------------+--------+----------+-----------------------------------------+
2957 | avgPacket\    | number | Yes      | Average packet delay variation or jitter|
2958 | Delay\        |        |          | in milliseconds for received packets:   |
2959 | Variation     |        |          | Average difference between the packet   |
2960 |               |        |          | timestamp and time received for all     |
2961 |               |        |          | pairs of consecutive packets            |
2962 +---------------+--------+----------+-----------------------------------------+
2963 | avgPacket\    | number | Yes      | Average delivery latency                |
2964 | Latency       |        |          |                                         |
2965 +---------------+--------+----------+-----------------------------------------+
2966 | avgReceive\   | number | Yes      | Average receive throughput              |
2967 | Throughput    |        |          |                                         |
2968 +---------------+--------+----------+-----------------------------------------+
2969 | avgTransmit\  | number | Yes      | Average transmit throughput             |
2970 | Throughput    |        |          |                                         |
2971 +---------------+--------+----------+-----------------------------------------+
2972 | dur\          | number | No       | Duration of failed state in milliseconds|
2973 | Connection\   |        |          | , computed as the cumulative time       |
2974 | FailedStatus  |        |          | between a failed echo request and the   |
2975 |               |        |          | next following successful error request,|
2976 |               |        |          | over this reporting interval            |
2977 +---------------+--------+----------+-----------------------------------------+
2978 | durTunnel\    | number | No       | Duration of errored state, computed as  |
2979 | FailedStatus  |        |          | the cumulative time between a tunnel    |
2980 |               |        |          | error indicator and the next following  |
2981 |               |        |          | non-errored indicator, over this        |
2982 |               |        |          | reporting interval                      |
2983 +---------------+--------+----------+-----------------------------------------+
2984 | flow\         | string | No       | Endpoint activating the flow            |
2985 | ActivatedBy   |        |          |                                         |
2986 +---------------+--------+----------+-----------------------------------------+
2987 | flow\         | number | Yes      | Time the connection is activated in the |
2988 | Activation\   |        |          | flow (connection) being reported on, or |
2989 | Epoch         |        |          | transmission time of the first packet if|
2990 |               |        |          | activation time is not available        |
2991 +---------------+--------+----------+-----------------------------------------+
2992 | flow\         | number | Yes      | Integer microseconds for the start of   |
2993 | Activation\   |        |          | the flow connection                     |
2994 | Microsec      |        |          |                                         |
2995 +---------------+--------+----------+-----------------------------------------+
2996 | flow\         | string | No       | Time the connection is activated in the |
2997 | Activation\   |        |          | flow being reported on, or transmission |
2998 | Time          |        |          | time of the first packet if activation  |
2999 |               |        |          | time is not available; with RFC 2822    |
3000 |               |        |          | compliant format: ‘Sat, 13 Mar 2010     |
3001 |               |        |          | 11:29:05 -0800’                         |
3002 +---------------+--------+----------+-----------------------------------------+
3003 | flow\         | string | No       | Endpoint deactivating the flow          |
3004 | Deactivated\  |        |          |                                         |
3005 | By            |        |          |                                         |
3006 +---------------+--------+----------+-----------------------------------------+
3007 | flow\         | number | Yes      | Time for the start of the flow          |
3008 | Deactivation\ |        |          | connection, in integer UTC epoch time   |
3009 | Epoch         |        |          | aka UNIX time                           |
3010 +---------------+--------+----------+-----------------------------------------+
3011 | flow\         | number | Yes      | Integer microseconds for the start of   |
3012 | Deactivation\ |        |          | the flow connection                     |
3013 | Microsec      |        |          |                                         |
3014 +---------------+--------+----------+-----------------------------------------+
3015 | flow\         | string | Yes      | Transmission time of the first packet in|
3016 | Deactivation\ |        |          | the flow connection being reported on;  |
3017 | Time          |        |          | with RFC 2822 compliant format: ‘Sat, 13|
3018 |               |        |          | Mar 2010 11:29:05 -0800’                |
3019 +---------------+--------+----------+-----------------------------------------+
3020 | flowStatus    | string | Yes      | Connection status at reporting time as a|
3021 |               |        |          | working / inactive / failed indicator   |
3022 |               |        |          | value                                   |
3023 +---------------+--------+----------+-----------------------------------------+
3024 | gtp\          | string | No       | Current connection state at reporting   |
3025 | Connection\   |        |          | time                                    |
3026 | Status        |        |          |                                         |
3027 +---------------+--------+----------+-----------------------------------------+
3028 | gtpTunnel\    | string | No       | Current tunnel state at reporting time  |
3029 | Status        |        |          |                                         |
3030 +---------------+--------+----------+-----------------------------------------+
3031 | ipTos\        | hashMap| No       | Array of key: value pairs where the keys|
3032 | CountList     |        |          | are drawn from the IP Type-of-Service   |
3033 |               |        |          | identifiers which range from '0' to     |
3034 |               |        |          | '255', and the values are the count of  |
3035 |               |        |          | packets that had those ToS identifiers  |
3036 |               |        |          | in the flow                             |
3037 +---------------+--------+----------+-----------------------------------------+
3038 | ipTosList     | string | No       | Array of unique IP Type-of-Service      |
3039 |               |        |          | values observed in the flow where values|
3040 |               |        |          | range from '0' to '255'                 |
3041 +---------------+--------+----------+-----------------------------------------+
3042 | large\        | number | No       | large packet round trip time            |
3043 | PacketRtt     |        |          |                                         |
3044 +---------------+--------+----------+-----------------------------------------+
3045 | largePacket\  | number | No       | large packet threshold being applied    |
3046 | Threshold     |        |          |                                         |
3047 +---------------+--------+----------+-----------------------------------------+
3048 | maxPacket\    | number | Yes      | Maximum packet delay variation or jitter|
3049 | Delay\        |        |          | in milliseconds for received packets:   |
3050 | Variation     |        |          | Maximum of the difference between the   |
3051 |               |        |          | packet timestamp and time received for  |
3052 |               |        |          | all pairs of consecutive packets        |
3053 +---------------+--------+----------+-----------------------------------------+
3054 | maxReceive\   | number | No       | maximum receive bit rate"               |
3055 | BitRate       |        |          |                                         |
3056 +---------------+--------+----------+-----------------------------------------+
3057 | maxTransmit\  | number | No       | maximum transmit bit rate               |
3058 | BitRate       |        |          |                                         |
3059 +---------------+--------+----------+-----------------------------------------+
3060 | mobileQci\    | hashMap| No       | array of key: value pairs where the keys|
3061 | CosCountList  |        |          | are drawn from LTE QCI or UMTS class of |
3062 |               |        |          | service strings, and the values are the |
3063 |               |        |          | count of packets that had those strings |
3064 |               |        |          | in the flow                             |
3065 +---------------+--------+----------+-----------------------------------------+
3066 | mobileQci\    | string | No       | Array of unique LTE QCI or UMTS         |
3067 | CosList       |        |          | class-of-service values observed in the |
3068 |               |        |          | flow                                    |
3069 +---------------+--------+----------+-----------------------------------------+
3070 | num\          | number | Yes      | Number of failed activation requests, as|
3071 | Activation\   |        |          | observed by the reporting node          |
3072 | Failures      |        |          |                                         |
3073 +---------------+--------+----------+-----------------------------------------+
3074 | numBit\       | number | Yes      | number of errored bits                  |
3075 | Errors        |        |          |                                         |
3076 +---------------+--------+----------+-----------------------------------------+
3077 | numBytes\     | number | Yes      | number of bytes received, including     |
3078 | Received      |        |          | retransmissions                         |
3079 +---------------+--------+----------+-----------------------------------------+
3080 | numBytes\     | number | Yes      | number of bytes transmitted, including  |
3081 | Transmitted   |        |          | retransmissions                         |
3082 +---------------+--------+----------+-----------------------------------------+
3083 | numDropped\   | number | Yes      | number of received packets dropped due  |
3084 | Packets       |        |          | to errors per virtual interface         |
3085 +---------------+--------+----------+-----------------------------------------+
3086 | numGtp\       | number | No       | Number of Echo request path failures    |
3087 | EchoFailures  |        |          | where failed paths are defined in 3GPP  |
3088 |               |        |          | TS 29.281 sec 7.2.1 and 3GPP TS 29.060  |
3089 |               |        |          | sec. 11.2                               |
3090 +---------------+--------+----------+-----------------------------------------+
3091 | numGtp\       | number | No       | Number of tunnel error indications where|
3092 | TunnelErrors  |        |          | errors are defined in 3GPP TS 29.281 sec|
3093 |               |        |          | 7.3.1 and 3GPP TS 29.060 sec. 11.1      |
3094 +---------------+--------+----------+-----------------------------------------+
3095 | numHttp\      | number | No       | Http error count                        |
3096 | Errors        |        |          |                                         |
3097 +---------------+--------+----------+-----------------------------------------+
3098 | numL7Bytes\   | number | Yes      | number of tunneled layer 7 bytes        |
3099 | Received      |        |          | received, including retransmissions     |
3100 +---------------+--------+----------+-----------------------------------------+
3101 | numL7Bytes\   | number | Yes      | number of tunneled layer 7 bytes        |
3102 | Transmitted   |        |          | transmitted, excluding retransmissions  |
3103 +---------------+--------+----------+-----------------------------------------+
3104 | numLost\      | number | Yes      | number of lost packets                  |
3105 | Packets       |        |          |                                         |
3106 +---------------+--------+----------+-----------------------------------------+
3107 | numOutOf\     | number | Yes      | number of out-of-order packets          |
3108 | OrderPackets  |        |          |                                         |
3109 +---------------+--------+----------+-----------------------------------------+
3110 | numPacket\    | number | Yes      | number of errored packets               |
3111 | Errors        |        |          |                                         |
3112 +---------------+--------+----------+-----------------------------------------+
3113 | numPackets\   | number | Yes      | number of packets received, excluding   |
3114 | ReceivedExcl\ |        |          | retransmission                          |
3115 | Retrans       |        |          |                                         |
3116 +---------------+--------+----------+-----------------------------------------+
3117 | numPackets\   | number | Yes      | number of packets received, including   |
3118 | ReceivedIncl\ |        |          | retransmission                          |
3119 | Retrans       |        |          |                                         |
3120 +---------------+--------+----------+-----------------------------------------+
3121 | numPackets\   | number | Yes      | number of packets transmitted, including|
3122 | Transmitted\  |        |          | retransmissions                         |
3123 | InclRetrans   |        |          |                                         |
3124 +---------------+--------+----------+-----------------------------------------+
3125 | numRetries    | number | Yes      | number of packet retrie                 |
3126 +---------------+--------+----------+-----------------------------------------+
3127 | numTimeouts   | number | Yes      | number of packet timeouts               |
3128 +---------------+--------+----------+-----------------------------------------+
3129 | numTunneled\  | number | Yes      | number of tunneled layer 7 bytes        |
3130 | L7Bytes\      |        |          | received, excluding retransmissions     |
3131 | Received      |        |          |                                         |
3132 +---------------+--------+----------+-----------------------------------------+
3133 | roundTrip\    | number | Yes      | Round Trip time                         |
3134 | Time          |        |          |                                         |
3135 +---------------+--------+----------+-----------------------------------------+
3136 | tcpFlag\      | hashMap| No       | Array of key: value pairs where the keys|
3137 | CountList     |        |          | are drawn from TCP Flags and the values |
3138 |               |        |          | are the count of packets that had that  |
3139 |               |        |          | TCP Flag in the flow                    |
3140 +---------------+--------+----------+-----------------------------------------+
3141 | tcpFlag\      | string | No       | Array of unique TCP Flags observed in   |
3142 | List          |        |          | the flow                                |
3143 +---------------+--------+----------+-----------------------------------------+
3144 | timeTo\       | number | Yes      | Time in milliseconds between the        |
3145 | FirstByte     |        |          | connection activation and first byte    |
3146 |               |        |          | received                                |
3147 +---------------+--------+----------+-----------------------------------------+
3148
3149 Datatype: mobileFlowFields
3150 ***************************
3151
3152 The mobileFlowFields datatype consists of the following fields:
3153
3154 +-------------+------------+----------+---------------------------------------+
3155 | Field       | Type       | Required?| Description                           |
3156 +=============+============+==========+=======================================+
3157 | additional\ | hashMap    | No       | Additional mobileFlow fields if needed|
3158 | Fields      |            |          |                                       |
3159 +-------------+------------+----------+---------------------------------------+
3160 | application\| string     | No       | Application type inferred             |
3161 | Type        |            |          |                                       |
3162 +-------------+------------+----------+---------------------------------------+
3163 | appProtocol\| string     | No       | Application protocol                  |
3164 | Type        |            |          |                                       |
3165 +-------------+------------+----------+---------------------------------------+
3166 | appProtocol\| string     | No       | Application version                   |
3167 | Version     |            |          |                                       |
3168 +-------------+------------+----------+---------------------------------------+
3169 | cid         | string     | No       | Cell Id                               |
3170 +-------------+------------+----------+---------------------------------------+
3171 | connection\ | string     | No       | Abbreviation referencing a 3GPP       |
3172 | Type        |            |          | reference point e.g., S1-U, S11, etc  |
3173 +-------------+------------+----------+---------------------------------------+
3174 | ecgi        | string     | No       | Evolved Cell Global Id                |
3175 +-------------+------------+----------+---------------------------------------+
3176 | flow\       | string     | Yes      | Flow direction, indicating if the     |
3177 | Direction   |            |          | reporting node is the source of the   |
3178 |             |            |          | flow or destination for the flow      |
3179 +-------------+------------+----------+---------------------------------------+
3180 | gtpPer\     | gtpPer     | Yes      | Mobility GTP Protocol per flow metrics|
3181 | FlowMetrics | FlowMetrics|          |                                       |
3182 +-------------+------------+----------+---------------------------------------+
3183 | gtpProtocol\| string     | No       | GTP protocol                          |
3184 | Type        |            |          |                                       |
3185 +-------------+------------+----------+---------------------------------------+
3186 | gtpVersion  | string     | No       | GTP protocol version                  |
3187 +-------------+------------+----------+---------------------------------------+
3188 | httpHeader  | string     | No       | HTTP request header, if the flow      |
3189 |             |            |          | connects to a node referenced by HTTP |
3190 +-------------+------------+----------+---------------------------------------+
3191 | imei        | string     | No       | IMEI for the subscriber UE used in    |
3192 |             |            |          | this flow, if the flow connects to a  |
3193 |             |            |          | mobile device                         |
3194 +-------------+------------+----------+---------------------------------------+
3195 | imsi        | string     | No       | IMSI for the subscriber UE used in    |
3196 |             |            |          | this flow, if the flow connects to a  |
3197 |             |            |          | mobile device                         |
3198 +-------------+------------+----------+---------------------------------------+
3199 | ipProtocol\ | string     | Yes      | IP protocol type e.g.,TCP, UDP, RTP...|
3200 | Type        |            |          |                                       |
3201 +-------------+------------+----------+---------------------------------------+
3202 | ipVersion   | string     | Yes      | IP protocol version e.g., IPv4, IPv6  |
3203 +-------------+------------+----------+---------------------------------------+
3204 | lac         | string     | No       | Location area code                    |
3205 +-------------+------------+----------+---------------------------------------+
3206 | mcc         | string     | No       | Mobile country code                   |
3207 +-------------+------------+----------+---------------------------------------+
3208 | mnc         | string     | No       | Mobile network code                   |
3209 +-------------+------------+----------+---------------------------------------+
3210 | mobileFlow\ | string     | Yes      | Version of the mobileFlowFields block |
3211 | Fields\     |            |          | as "#.#" where # is a digit; see      |
3212 | Version     |            |          | section 1 for the correct digits to   |
3213 |             |            |          | use.                                  |
3214 +-------------+------------+----------+---------------------------------------+
3215 | msisdn      | string     | No       | MSISDN for the subscriber UE used in  |
3216 |             |            |          | this flow, as an integer, if the flow |
3217 |             |            |          | connects to a mobile device           |
3218 +-------------+------------+----------+---------------------------------------+
3219 | other\      | string     | Yes      | IP address for the other endpoint, as |
3220 | EndpointIp\ |            |          | used for the flow being reported on   |
3221 | Address     |            |          |                                       |
3222 +-------------+------------+----------+---------------------------------------+
3223 | other\      | integer    | Yes      | IP Port for the reporting entity, as  |
3224 | Endpoint\   |            |          | used for the flow being reported on   |
3225 | Port        |            |          |                                       |
3226 +-------------+------------+----------+---------------------------------------+
3227 | other\      | string     | No       | Functional role of the other endpoint |
3228 | Functional\ |            |          | for the flow being reported on e.g.,  |
3229 | Role        |            |          | MME, S-GW, P-GW, PCRF...              |
3230 +-------------+------------+----------+---------------------------------------+
3231 | rac         | string     | No       | Routing area code                     |
3232 +-------------+------------+----------+---------------------------------------+
3233 | radioAccess\| string     | No       | Radio Access Technology e.g., 2G, 3G, |
3234 | Technology  |            |          | LTE                                   |
3235 +-------------+------------+----------+---------------------------------------+
3236 | reporting\  | string     | Yes      | IP address for the reporting entity,  |
3237 | EndpointIp\ |            |          | as used for the flow being reported on|
3238 | Addr        |            |          |                                       |
3239 +-------------+------------+----------+---------------------------------------+
3240 | reporting\  | integer    | Yes      | IP port for the reporting entity, as  |
3241 | EndpointPort|            |          | used for the flow being reported on   |
3242 +-------------+------------+----------+---------------------------------------+
3243 | sac         | string     | No       | Service area code                     |
3244 +-------------+------------+----------+---------------------------------------+
3245 | sampling\   | integer    | No       | Integer identifier for the sampling   |
3246 | Algorithm   |            |          | algorithm or rule being applied in    |
3247 |             |            |          | calculating the flow metrics if       |
3248 |             |            |          | metrics are calculated based on a     |
3249 |             |            |          | sample of packets, or 0 if no sampling|
3250 |             |            |          | is applied                            |
3251 +-------------+------------+----------+---------------------------------------+
3252 | tac         | string     | No       | Transport area code                   |
3253 +-------------+------------+----------+---------------------------------------+
3254 | tunnelId    | string     | No       | Tunnel identifier                     |
3255 +-------------+------------+----------+---------------------------------------+
3256 | vlanId      | string     | No       | VLAN identifier used by this flow     |
3257 +-------------+------------+----------+---------------------------------------+
3258
3259 ‘SipSignaling’ Domain Datatypes
3260 +++++++++++++++++++++++++++++++
3261
3262 Datatype: sipSignalingFields
3263 *****************************
3264
3265 The sipSignalingFields datatype communicates information about sip
3266 signaling messages, parameters and signaling state; it consists of the
3267 following fields:
3268
3269 +--------------+-----------+----------+---------------------------------------+
3270 | Field        | Type      | Required?| Description                           |
3271 +==============+===========+==========+=======================================+
3272 | additional\  | hashMap   | No       | Additional sipSignaling fields        |
3273 | Information  |           |          |                                       |
3274 +--------------+-----------+----------+---------------------------------------+
3275 | compressed\  | string    | No       | The full SIP request/response         |
3276 | Sip          |           |          | including headers and bodies          |
3277 +--------------+-----------+----------+---------------------------------------+
3278 | correlator   | string    | Yes      | Constant across all events on this    |
3279 |              |           |          | call                                  |
3280 +--------------+-----------+----------+---------------------------------------+
3281 | local\       | string    | Yes      | Ip address on xNF                     |
3282 | IpAddress    |           |          |                                       |
3283 +--------------+-----------+----------+---------------------------------------+
3284 | localPort    | string    | Yes      | Port on xNF                           |
3285 +--------------+-----------+----------+---------------------------------------+
3286 | remote\      | string    | Yes      | IP address of peer endpoint           |
3287 | IpAddress    |           |          |                                       |
3288 +--------------+-----------+----------+---------------------------------------+
3289 | remotePort   | string    | Yes      | Port of peer endpoint                 |
3290 +--------------+-----------+----------+---------------------------------------+
3291 | sipSignaling\| string    | Yes      | Version of the sipSignalingFields     |
3292 | FieldsVersion|           |          | block as "#.#" where # is a digit; see|
3293 |              |           |          | section 1 for the correct digits to   |
3294 |              |           |          | use.                                  |
3295 +--------------+-----------+----------+---------------------------------------+
3296 | summarySip   | string    | No       | The SIP Method or Response (‘INVITE’, |
3297 |              |           |          | ‘200 OK’, ‘BYE’, etc)                 |
3298 +--------------+-----------+----------+---------------------------------------+
3299 | vendorNf\    | vendorNf  | Yes      | Vendor, NF and nfModule names         |
3300 | NameFields   | NameFields|          |                                       |
3301 +--------------+-----------+----------+---------------------------------------+
3302
3303 ‘Voice Quality’ Domain Datatypes
3304 +++++++++++++++++++++++++++++++++
3305
3306 Datatype: endOfCallVqmSummaries
3307 *********************************
3308
3309 The endOfCallVqmSummaries datatype provides end of call voice quality
3310 metrics; it consists of the following fields:
3311
3312 +--------------+-------+----------+-------------------------------------------+
3313 | Field        | Type  | Required?| Description                               |
3314 +==============+=======+==========+===========================================+
3315 | adjacency\   | string| Yes      | Adjacency name                            |
3316 | Name         |       |          |                                           |
3317 +--------------+-------+----------+-------------------------------------------+
3318 | endpoint\    | number| No       | Endpoint average jitter                   |
3319 | AverageJitter|       |          |                                           |
3320 +--------------+-------+----------+-------------------------------------------+
3321 | endpoint\    | string| Yes      | Enumeration: ‘Caller’, ‘Callee’           |
3322 | Description  |       |          |                                           |
3323 +--------------+-------+----------+-------------------------------------------+
3324 | endpoint\    | number| No       | Endpoint maximum jitter                   |
3325 | MaxJitter    |       |          |                                           |
3326 +--------------+-------+----------+-------------------------------------------+
3327 | endpointRtp\ | number| No       | Endpoint RTP octets discarded             |
3328 | Octets\      |       |          |                                           |
3329 | Discarded    |       |          |                                           |
3330 +--------------+-------+----------+-------------------------------------------+
3331 | endpointRtp\ | number| No       | Endpoint RTP octets lost                  |
3332 | OctetsLost   |       |          |                                           |
3333 +--------------+-------+----------+-------------------------------------------+
3334 | endpointRtp\ | number| No       | Endpoint RTP octets received              |
3335 | Octets\      |       |          |                                           |
3336 | Received     |       |          |                                           |
3337 +--------------+-------+----------+-------------------------------------------+
3338 | endpointRtp\ | number| No       | Endpoint RTP octets sent                  |
3339 | OctetsSent   |       |          |                                           |
3340 +--------------+-------+----------+-------------------------------------------+
3341 | endpointRtp\ | number| No       | Endpoint RTP packets discarded            |
3342 | Packets\     |       |          |                                           |
3343 | Discarded    |       |          |                                           |
3344 +--------------+-------+----------+-------------------------------------------+
3345 | endpointRtp\ | number| No       | Endpoint RTP packets lost                 |
3346 | PacketsLost  |       |          |                                           |
3347 +--------------+-------+----------+-------------------------------------------+
3348 | endpointRtp\ | number| No       | Endpoint RTP packets received             |
3349 | Packets\     |       |          |                                           |
3350 | Received     |       |          |                                           |
3351 +--------------+-------+----------+-------------------------------------------+
3352 | endpointRtp\ | number| No       | Endpoint RTP packets sent                 |
3353 | PacketsSent  |       |          |                                           |
3354 +--------------+-------+----------+-------------------------------------------+
3355 | local\       | number| No       | Local average jitter                      |
3356 | Average\     |       |          |                                           |
3357 | Jitter       |       |          |                                           |
3358 +--------------+-------+----------+-------------------------------------------+
3359 | localAverage\| number| No       | Local average jitter buffer delay         |
3360 | JitterBuffer\|       |          |                                           |
3361 | Delay        |       |          |                                           |
3362 +--------------+-------+----------+-------------------------------------------+
3363 | localMax\    | number| No       | Local maximum jitter                      |
3364 | Jitter       |       |          |                                           |
3365 +--------------+-------+----------+-------------------------------------------+
3366 | localMax\    | number| No       | Local max jitter buffer delay             |
3367 | JitterBuffer\|       |          |                                           |
3368 | Delay        |       |          |                                           |
3369 +--------------+-------+----------+-------------------------------------------+
3370 | localRtp\    | number| No       | Local RTP octets discarded                |
3371 | Octets\      |       |          |                                           |
3372 | Discarded    |       |          |                                           |
3373 +--------------+-------+----------+-------------------------------------------+
3374 | localRtp\    | number| No       | Local RTP octets lost                     |
3375 | OctetsLost   |       |          |                                           |
3376 +--------------+-------+----------+-------------------------------------------+
3377 | localRtp\    | number| No       | Local RTP octets received                 |
3378 | Octets\      |       |          |                                           |
3379 | Received     |       |          |                                           |
3380 +--------------+-------+----------+-------------------------------------------+
3381 | localRtp\    | number| No       | Local RTP octets sent                     |
3382 | OctetsSent   |       |          |                                           |
3383 +--------------+-------+----------+-------------------------------------------+
3384 | localRtp\    | number| No       | Local RTP packets discarded               |
3385 | Packets\     |       |          |                                           |
3386 | Discarded    |       |          |                                           |
3387 +--------------+-------+----------+-------------------------------------------+
3388 | localRtp\    | number| No       | Local RTP packets lost                    |
3389 | PacketsLost  |       |          |                                           |
3390 +--------------+-------+----------+-------------------------------------------+
3391 | localRtp\    | number| No       | Local RTP packets received                |
3392 | Packets\     |       |          |                                           |
3393 | Received     |       |          |                                           |
3394 +--------------+-------+----------+-------------------------------------------+
3395 | localRtp\    | number| No       | Local RTP packets sent                    |
3396 | PacketsSent  |       |          |                                           |
3397 +--------------+-------+----------+-------------------------------------------+
3398 | mosCqe       | number| No       | Decimal range from 1 to 5(1 decimal place)|
3399 +--------------+-------+----------+-------------------------------------------+
3400 | oneWayDelay  | number| No       | one-way path delay in milliseconds        |
3401 +--------------+-------+----------+-------------------------------------------+
3402 | packet\      | number| No       | Calculated percentage packet loss based on|
3403 | LossPercent  |       |          | endpoint RTP packets lost (as reported in |
3404 |              |       |          | RTCP) and local RTP packets sent.         |
3405 |              |       |          | Direction is based on endpoint description|
3406 |              |       |          | (Caller, Callee). Decimal (2 decimal      |
3407 |              |       |          | places)                                   |
3408 +--------------+-------+----------+-------------------------------------------+
3409 | rFactor      | number| No       | rFactor from 0 to 100                     |
3410 +--------------+-------+----------+-------------------------------------------+
3411 | round\       | number| No       | Round trip delay in milliseconds          |
3412 | TripDelay    |       |          |                                           |
3413 +--------------+-------+----------+-------------------------------------------+
3414
3415 Datatype: voiceQualityFields
3416 *****************************
3417
3418 The voiceQualityFields datatype provides statistics related to customer
3419 facing voice products; consists of the following fields:
3420
3421 +--------------+-------------+----------+-------------------------------------+
3422 | Field        | Type        | Required?| Description                         |
3423 +==============+=============+==========+=====================================+
3424 | additional\  | hashMap     | No       | Additional voice quality fields     |
3425 | Information  |             |          |                                     |
3426 +--------------+-------------+----------+-------------------------------------+
3427 | callee\      | string      | Yes      | Callee codec for the call           |
3428 | SideCodec    |             |          |                                     |
3429 +--------------+-------------+----------+-------------------------------------+
3430 | caller\      | string      | Yes      | Caller codec for the call           |
3431 | SideCodec    |             |          |                                     |
3432 +--------------+-------------+----------+-------------------------------------+
3433 | correlator   | string      | Yes      | Constant across all events on this  |
3434 |              |             |          | call                                |
3435 +--------------+-------------+----------+-------------------------------------+
3436 | endOfCall\   | endOfCallVqm| No       | End of call voice quality metric    |
3437 | VqmSummaries | Summaries   |          | summaries                           |
3438 +--------------+-------------+----------+-------------------------------------+
3439 | phoneNumber  | string      | No       | Phone number associated with the    |
3440 |              |             |          | correlator                          |
3441 +--------------+-------------+----------+-------------------------------------+
3442 | midCallRtcp  | string      | Yes      | Base64 encoding of the binary RTCP  |
3443 |              |             |          | data (excluding Eth/IP/UDP headers) |
3444 +--------------+-------------+----------+-------------------------------------+
3445 | vendorNf\    | vendorNf    | Yes      | Vendor, NF and nfModule names       |
3446 | NameFields   | NameFields  |          |                                     |
3447 +--------------+-------------+----------+-------------------------------------+
3448 | voiceQuality\| string      | Yes      | Version of the voiceQualityFields   |
3449 | FieldsVersion|             |          | block as "#.#" where # is a digit;  |
3450 |              |             |          | see section 1 for the correct digits|
3451 |              |             |          | to use.                             |
3452 +--------------+-------------+----------+-------------------------------------+
3453
3454 Exceptions
3455 ^^^^^^^^^^^
3456
3457 RESTful Web Services Exceptions
3458 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3459
3460 RESTful services generate and send exceptions to clients in response to
3461 invocation errors. Exceptions send HTTP status codes (specified later in
3462 this document for each operation). HTTP status codes may be followed by
3463 an optional JSON exception structure described below. Two types of
3464 exceptions may be defined: service exceptions and policy exceptions.
3465
3466 +-----------+---------------+-------------+-----------------------------------+
3467 | Field Name| Data Type     | Required?   | Description                       |
3468 +===========+===============+=============+===================================+
3469 | messageId | xs:string     | Yes         | Unique message identifier of the  |
3470 |           |               |             | format ‘ABCnnnn’ where ‘ABC’ is   |
3471 |           |               |             | either ‘SVC’ for Service          |
3472 |           |               |             | Exceptions or ‘POL’ for Policy    |
3473 |           |               |             | Exception.                        |
3474 |           |               |             |                                   |
3475 |           |               |             | Exception numbers may be in the   |
3476 |           |               |             | range of 0001 to 9999 where :     |
3477 |           |               |             |                                   |
3478 |           |               |             | -  0001 to 2999 are defined by OMA|
3479 |           |               |             |    (see OMA’s Common_definitions_ |
3480 |           |               |             |    for details)                   |
3481 |           |               |             |                                   |
3482 |           |               |             | -  3000-9999 are available and    |
3483 |           |               |             |    undefined                      |
3484 +-----------+---------------+-------------+-----------------------------------+
3485 | text      | xs:string     | Yes         | Message text, with replacement    |
3486 |           |               |             | variables marked with %n, where n |
3487 |           |               |             | is an index into the list of      |
3488 |           |               |             | <variables> elements, starting at |
3489 |           |               |             | 1                                 |
3490 +-----------+---------------+-------------+-----------------------------------+
3491 | variables | xs:string     | No          | List of zero or more strings that |
3492 |           | [0..unbounded]|             | represent the contents of the     |
3493 |           |               |             | variables used by the message text|
3494 +-----------+---------------+-------------+-----------------------------------+
3495 | url       | xs:anyUrl     | No          | Hyperlink to a detailed error     |
3496 |           |               |             | resource (e.g., an HTML page for  |
3497 |           |               |             | browser user agents).             |
3498 +-----------+---------------+-------------+-----------------------------------+
3499
3500 Service Exceptions
3501 ~~~~~~~~~~~~~~~~~~~
3502
3503    When a service is not able to process a request, and retrying the
3504    request with the same information will also result in a failure, and
3505    the issue is not related to a service policy issue, then the service
3506    will issue a fault using the service exception fault message.
3507    Examples of service exceptions include invalid input, lack of
3508    availability of a required resource or a processing error.
3509
3510    A service exception uses the letters 'SVC' at the beginning of the
3511    message identifier. ‘SVC’ service exceptions used by the VES Event
3512    Listener API are defined below.
3513
3514 +----------+--------------+-----------------------+----------------+----------+
3515 | MessageId| Description  | Text                  | Variables      | Parent   |
3516 |          | / Comment    |                       |                | HTTP Code|
3517 +==========+==============+=======================+================+==========+
3518 | SVC0001  | General      | <custom error message>| None           | 400      |
3519 |          | service error|                       |                |          |
3520 |          | (see SVC2000)|                       |                |          |
3521 +----------+--------------+-----------------------+----------------+----------+
3522 | SVC0002  | Bad parameter| Invalid input value   | %1: message    | 400      |
3523 |          |              | for message part %1   | part           |          |
3524 +----------+--------------+-----------------------+----------------+----------+
3525 | SVC1000  | No server    | No server resources   | None           | 500      |
3526 |          | resources    | available to process  |                |          |
3527 |          |              | the request           |                |          |
3528 +----------+--------------+-----------------------+----------------+----------+
3529 | SVC2000  | More         | The following service | %1: human      | 400      |
3530 |          | elaborate    | error occurred: %1.   | readable       |          |
3531 |          | version of   |                       | description of |          |
3532 |          | SVC0001      |                       | the error      |          |
3533 |          |              |                       |                |          |
3534 |          |              |  Error code is %2.    | %2: error code |          |
3535 +----------+--------------+-----------------------+----------------+----------+
3536
3537     Table - Service Exceptions
3538
3539 Policy Exceptions
3540 ~~~~~~~~~~~~~~~~~~
3541
3542    When a service is not able to complete because the request fails to
3543    meet a policy criteria, then the service will issue a fault using the
3544    policy exception fault message. To clarify how a policy exception
3545    differs from a service exception, consider that all the input to an
3546    operation may be valid as meeting the required input for the
3547    operation (thus no service exception), but using that input in the
3548    execution of the service may result in conditions that require the
3549    service not to complete. Examples of policy exceptions include
3550    privacy violations, requests not permitted under a governing service
3551    agreement or input content not acceptable to the service provider.
3552
3553    A Policy Exception uses the letters 'POL' at the beginning of the
3554    message identifier. ‘POL’ policy exceptions used by the VES Event
3555    Listener API are defined below.
3556
3557 +----------+---------------+-----------------------+---------------+----------+
3558 | MessageId| Description   |Text                   | Variables     | Parent   |
3559 |          | / Comment     |                       |               | HTTP Code|
3560 +==========+===============+=======================+===============+==========+
3561 | POL0001  | General policy| A policy error        | None          | 401      |
3562 |          | error (see    | occurred.             |               |          |
3563 |          | POL2000)      |                       |               |          |
3564 +----------+---------------+-----------------------+---------------+----------+
3565 | POL1009  | User not      | User has not been     | None          | 401      |
3566 |          | provisioned   | provisioned for       |               |          |
3567 |          | for service   | service               |               |          |
3568 +----------+---------------+-----------------------+---------------+----------+
3569 | POL1010  | User suspended| User has been         | None          | 401      |
3570 |          | from service  | suspended from service|               |          |
3571 +----------+---------------+-----------------------+---------------+----------+
3572 | POL2000  | More elaborate| The following policy  | %1: human     | 401      |
3573 |          | version of    | error occurred: %1.   | readable      |          |
3574 |          | POL0001       | Error code is %2.     | description of|          |
3575 |          |               |                       | the error     |          |
3576 |          |               |                       |               |          |
3577 |          |               |                       | %2: error code|          |
3578 +----------+---------------+-----------------------+---------------+----------+
3579 | POL9003  | Message size  | Message content size  | None          | 400      |
3580 |          | exceeds limit | exceeds the allowable |               |          |
3581 |          |               | limit                 |               |          |
3582 +----------+---------------+-----------------------+---------------+----------+
3583
3584     Table - Policy Exceptions
3585
3586 RESTful Web Services Definition
3587 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3588
3589 REST Operation Overview
3590 ~~~~~~~~~~~~~~~~~~~~~~~~~
3591
3592 REST Operation Summary
3593 +++++++++++++++++++++++
3594
3595 +---------------------+---------+------------------------------------------+
3596 | **Operation Action**| **HTTP**| Resource URL relative to {ServerRoot}\   |
3597 |                     |         | , which is defined in section 3          |
3598 |                     | **Verb**|                                          |
3599 +---------------------+---------+------------------------------------------+
3600 | publishAnyEvent     | POST    | /eventListener/v{apiVersion}             |
3601 +---------------------+---------+------------------------------------------+
3602 | publishEventBatch   | POST    | /eventListener/v{apiVersion}/eventBatch  |
3603 +---------------------+---------+------------------------------------------+
3604
3605 Table - REST Operation Summary
3606
3607 Api Versioning
3608 ++++++++++++++
3609
3610 ``apiVersion`` is used to describe the major version number of the event
3611 listener API (which is the same as the major version number of this
3612 specification). When this number changes, the implication is: the new
3613 major version will break clients of older major versions in some way, if
3614 they try to use the new API without modification (e.g., unmodified v1
3615 clients would not be able to use v2 without error).
3616
3617 The Event Listener shall provide the following HTTP headers in response
3618 to all requests. Additionally, clients may populate these headers on
3619 requests to indicate the specific version they are interested in.
3620
3621 -  X-MinorVersion: 1
3622
3623 -  X-PatchVersion: 1
3624
3625 -  X-LatestVersion: 7.1
3626
3627 If a client requests major version 7 (per the REST resource URL) and
3628 does not specify the above headers, then they will be provided with the
3629 latest patch version of 7.0.x (which is 7.0.1). If the client wants a
3630 minor version of major version 7, then they need to supply
3631 the X-MinorVersion header with their request. For example, if they
3632 request major version 7 with X-MinorVersion: 1, they will get the latest
3633 patch version of 7.1, which is 7.1.1.
3634
3635 Buffering of Events
3636 +++++++++++++++++++
3637
3638 ``{ServerRoot}`` is defined in section 3 of this document, which defines the
3639 REST resource URL.  One or more FQDNs may be provisioned in an event source
3640 when it is instantiated or updated.  If an event source is unable to reach any
3641 of the provisioned FQDNs, it should buffer the event data specified below, up
3642 to a maximum of 1 hour, and re-transmit them once a connection has been
3643 established.
3644
3645 The following events should be buffered:
3646
3647 * Faults with eventSeverity of ``MINOR``, ``MAJOR``, ``NORMAL``, or ``CRITICAL``
3648   with following expected behavior:
3649
3650     * NF keeps a First-In-First-Out buffer.
3651     * Until the collectors are working again, it is desired that the NF sends
3652       the final state events only, and not intermediate ones. However, it is
3653       acceptable to buffer all events and send them over to the collector in
3654       the same order in which they were generated/received.
3655
3656 * When one VES Event Listener connectivity is re-established, NF should first
3657   send the buffered events and then start sending the new events.
3658
3659     * Syslog with syslogSev of ``Emergency``, ``Alert``, ``Critical``,
3660       ``Error``, or ``Warning``
3661
3662 * All measurements events
3663
3664 publishEventBatch Requirements
3665 ******************************
3666
3667 Buffered events can be sent in batch using ``publishEventBatch``. However, a
3668 NF vendor must only include multiple events for the same domain in the
3669 ``publishEventBatch``. The ``publishEventBatch`` event must also conform to
3670 event size limits.
3671
3672 ``publishEventBatch`` events are handled similarly to a single event. The
3673 acknowledgement from the VES Event Listener is for the ``publishEventBatch`` and
3674 not individual events within the ``publishEventBatch``.
3675
3676 Debug Mode
3677 **********
3678
3679 NFs acting as event sources should not send syslog events to the
3680 VES Event Listener during debug mode, but should store syslog events locally
3681 for access, and possible FTP transfer, via the NF console (e.g., command line
3682 interface).
3683
3684 .. _msg-size:
3685
3686 Message Size
3687 ++++++++++++
3688
3689 The maximum allowed message size is 2 megabytes of uncompressed text.
3690 However,messages of this size have been known to cause performance and data
3691 loss. It is strongly recommended,that messages not exceed 1 megabyte.
3692 In a future version of the specification, a 1 megabyte limit will become
3693 a mandatory requirement.
3694
3695 Operation: publishAnyEvent
3696 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
3697
3698 Functional Behavior
3699 +++++++++++++++++++++
3700
3701 Allows authorized clients to publish any single event to the VES event
3702 listener.
3703
3704 -  Supports only HTTPS access.
3705
3706 -  Uses the HTTP verb POST
3707
3708 -  Supports JSON content types
3709
3710 -  Provides HTTP response codes as well as Service and Policy error
3711    messages
3712
3713 Call Flow
3714 ++++++++++
3715
3716 .. seqdiag::
3717     :caption: ``publishAnyEvent`` Call Flow
3718
3719     seqdiag {
3720       edge_length = 250;
3721       client  -> listener [label = "POST /eventlistener/v7"];
3722       client <- listener [label = "HTTP 202 Accepted", note = "sync response"];
3723       === Error Scenario ===
3724       client  -> listener [label = "POST /eventlistener/v7"];
3725       client <- listener [label = "HTTP 4XX/5XX", note = "sync response"];
3726     }
3727
3728 Input Parameters
3729 +++++++++++++++++
3730
3731 Header Fields (note: all parameter names shall be treated as
3732 case-insensitive):
3733
3734 +---------------+----------+----------+---------------------------------------+
3735 | Parameter     | Data Type| Required?| Brief description                     |
3736 +---------------+----------+----------+---------------------------------------+
3737 | Accept        | string   | No       | Determines the format of the body of  |
3738 |               |          |          | the response. Valid values are:       |
3739 |               |          |          |                                       |
3740 |               |          |          | -  application/json                   |
3741 +---------------+----------+----------+---------------------------------------+
3742 | Authorization | string   | No       | The username and password are formed  |
3743 |               |          |          | into one string as                    |
3744 |               |          |          | ``username:password``. This string is |
3745 |               |          |          | then Base64 encoded to produce the    |
3746 |               |          |          | encoded credential which is           |
3747 |               |          |          | communicated in the header after the  |
3748 |               |          |          | string "Authorization: Basic ". See   |
3749 |               |          |          | examples below. If the Authorization  |
3750 |               |          |          | header is missing, then an HTTP 400   |
3751 |               |          |          | Invalid Request message shall be      |
3752 |               |          |          | returned. If the string supplied is   |
3753 |               |          |          | invalid, then an HTTP 401 Unauthorized|
3754 |               |          |          | message shall be returned.            |
3755 +---------------+----------+----------+---------------------------------------+
3756 | Content-length| integer  | No       | Note that content length is limited to|
3757 |               |          |          | 2 Megabyte (see :ref:`msg-size`)      |
3758 +---------------+----------+----------+---------------------------------------+
3759 | Content-type  | string   | Yes      | Must be set to one of the following   |
3760 |               |          |          | values:                               |
3761 |               |          |          |                                       |
3762 |               |          |          | -  application/json                   |
3763 +---------------+----------+----------+---------------------------------------+
3764 | X-MinorVersion| integer  | No       | The minor version of the API requested|
3765 |               |          |          | by the client                         |
3766 +---------------+----------+----------+---------------------------------------+
3767 | X-PatchVersion| integer  | No       | The patch version of the API requested|
3768 |               |          |          | by the client                         |
3769 +---------------+----------+----------+---------------------------------------+
3770 | X-Latest\     | string   | No       | The full version of the API requested |
3771 | Version       |          |          | by the client expressed as            |
3772 |               |          |          | {major}.{minor}.{patch}               |
3773 +---------------+----------+----------+---------------------------------------+
3774
3775 Body Fields:
3776
3777 +--------------+--------------+--------------+-------------------------------+
3778 | **Parameter**| **Data Type**| **Required?**| **Brief description**         |
3779 +--------------+--------------+--------------+-------------------------------+
3780 | Event        | event        | Yes          | Contains the JSON structure of|
3781 |              |              |              | the common event format.      |
3782 +--------------+--------------+--------------+-------------------------------+
3783
3784 Output Parameters
3785 ++++++++++++++++++
3786
3787 Header fields:
3788
3789 +----------------+--------------+--------------+------------------------------+
3790 | **Parameter**  | **Data Type**| **Required?**| **Brief description**        |
3791 +----------------+--------------+--------------+------------------------------+
3792 | Content-length | integer      | No           | Used only in error conditions|
3793 +----------------+--------------+--------------+------------------------------+
3794 | Content-type   | string       | No           | Used only in error conditions|
3795 +----------------+--------------+--------------+------------------------------+
3796 | Date           | datetime     | No           | Date time of the response in |
3797 |                |              |              | GMT                          |
3798 +----------------+--------------+--------------+------------------------------+
3799 | X-MinorVersion | integer      | Yes          | The minor version of the API |
3800 |                |              |              | service                      |
3801 +----------------+--------------+--------------+------------------------------+
3802 | X-PatchVersion | integer      | Yes          | The patch version of the API |
3803 |                |              |              | service                      |
3804 +----------------+--------------+--------------+------------------------------+
3805 | X-LatestVersion| string       | Yes          | The full version of the API  |
3806 |                |              |              | service expressed as {major}.|
3807 |                |              |              | {minor}.{patch}              |
3808 +----------------+--------------+--------------+------------------------------+
3809
3810 Body Fields (for success responses): no content is provided.
3811
3812 Body Fields (for error responses):
3813
3814 +--------------+--------------+----------------+------------------------------+
3815 | **Parameter**| **Data Type**| **Required?**  | **Brief description**        |
3816 +--------------+--------------+----------------+------------------------------+
3817 | requestError | requestError | Yes(for errors)| Used only in error conditions|
3818 +--------------+--------------+----------------+------------------------------+
3819
3820 HTTP Status Codes
3821 ++++++++++++++++++
3822
3823 +-----+--------------+--------------------------------------------------------+
3824 | Code| Reason Phrase| Description                                            |
3825 +=====+==============+========================================================+
3826 | 202 | Accepted     | The request has been accepted for processing           |
3827 +-----+--------------+--------------------------------------------------------+
3828 | 400 | Bad Request  | Many possible reasons not specified by the other codes |
3829 |     |              | (e.g., missing required parameters or incorrect format)|
3830 |     |              | . The response body may include a further exception    |
3831 |     |              | code and text. HTTP 400 errors may be mapped to SVC0001|
3832 |     |              | (general service error), SVC0002 (bad parameter),      |
3833 |     |              | SVC2000 (general service error with details) or PO9003 |
3834 |     |              | (message content size exceeds the allowable limit).    |
3835 +-----+--------------+--------------------------------------------------------+
3836 | 401 | Unauthorized | Authentication failed or was not provided. HTTP 401    |
3837 |     |              | errors may be mapped to POL0001 (general policy error) |
3838 |     |              | or POL2000 (general policy error with details).        |
3839 +-----+--------------+--------------------------------------------------------+
3840 | 404 | Not Found    | The server has not found anything matching the         |
3841 |     |              | Request-URI. No indication is given of whether the     |
3842 |     |              | condition is temporary or permanent.                   |
3843 +-----+--------------+--------------------------------------------------------+
3844 | 405 | Method Not   | A request was made of a resource using a request method|
3845 |     | Allowed      | not supported by that resource (e.g., using PUT on a   |
3846 |     |              | REST resource that only supports POST).                |
3847 +-----+--------------+--------------------------------------------------------+
3848 | 500 | Internal     | The server encountered an internal error or timed out; |
3849 |     | Server Error | please retry (general catch-all server-side error).HTTP|
3850 |     |              | 500 errors may be mapped to SVC1000 (no server         |
3851 |     |              | resources).                                            |
3852 +-----+--------------+--------------------------------------------------------+
3853
3854 Sample Request and Response
3855 ++++++++++++++++++++++++++++
3856
3857 Sample Request
3858 ***************
3859
3860 .. code-block:: http
3861
3862     POST  /eventListener/v7 HTTP/1.1
3863     Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
3864     content-type: application/json
3865     content-length: 12345
3866     X-MinorVersion: 1
3867
3868     {
3869         "event": {
3870             "commonEventHeader": {
3871                 "version": "4.1",
3872                 "vesEventListenerVersion": "7.1.1",
3873                 "domain": "fault",
3874                 "eventName": "Fault_Vscf:Acs-Ericcson_PilotNumberPoolExhaustion",
3875                 "eventId": "fault0000245",
3876                 "sequence": 1,
3877                 "priority": "High",
3878                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
3879                 "reportingEntityName": "ibcx0001vm002oam001",
3880                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
3881                 "sourceName": "scfx0001vm002cap001",
3882                 "nfVendorName": "Ericsson",
3883                 "nfNamingCode": "scfx",
3884                 "nfcNamingCode": "ssc",
3885                 "startEpochMicrosec": 1413378172000000,
3886                 "lastEpochMicrosec": 1413378172000000,
3887                 "timeZoneOffset": "UTC-05:30"
3888             },
3889             "faultFields": {
3890                 "faultFieldsVersion": 4.0,
3891                 "alarmCondition": "PilotNumberPoolExhaustion",
3892                 "eventSourceType": "other",
3893                 "specificProblem": "Calls cannot complete - pilot numbers are unavailable",
3894                 "eventSeverity": "CRITICAL",
3895                 "vfStatus": "Active",
3896                 "alarmAdditionalInformation": {
3897                     "PilotNumberPoolSize": "1000"
3898                 }
3899             }
3900         }
3901     }
3902
3903
3904
3905 Sample Success Response
3906 ************************
3907
3908 .. code-block:: http
3909
3910     HTTPS/1.1 202 Accepted
3911     X-MinorVersion: 1
3912     X-PatchVersion: 1
3913     X-LatestVersion: 7.1.1
3914
3915 Sample Error Responses
3916 ************************
3917
3918 Sample Policy Exception
3919 """"""""""""""""""""""""
3920
3921 .. code-block:: http
3922
3923     HTTPS/1.1 400 Bad Request
3924     content-type: application/json
3925     content-length: 12345
3926     Date: Thu, 04 Jun 2009 02:51:59 GMT
3927     X-MinorVersion: 1
3928     X-PatchVersion: 1
3929     X-LatestVersion: 7.1.1
3930
3931     {
3932       "requestError": {
3933         "policyException": {
3934           "messageId": "POL9003",
3935           "text": "Message content size exceeds the allowable limit",
3936         }
3937       }
3938     }
3939
3940
3941 Sample Service Exception
3942 """""""""""""""""""""""""
3943
3944 .. code-block:: http
3945
3946     HTTPS/1.1 400 Bad Request
3947     content-type: application/json
3948     content-length: 12345
3949     Date: Thu, 04 Jun 2009 02:51:59 GMT
3950     X-MinorVersion: 1
3951     X-PatchVersion: 1
3952     X-LatestVersion: 7.1.1
3953
3954     {
3955       "requestError": {
3956         "serviceException": {
3957           "messageId": "SVC2000",
3958           "text": "Missing Parameter: %1. Error code is %2"
3959           "variables": [
3960             "severity",
3961             "400"
3962           ]
3963         }
3964       }
3965     }
3966
3967 Operation: publishEventBatch
3968 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3969
3970 Functional Behavior
3971 +++++++++++++++++++
3972
3973 Allows authorized clients to publish a batch of events to the VES event
3974 listener.
3975
3976 - Supports only HTTPS access.
3977
3978 - Uses the HTTP verb POST
3979
3980 - Supports JSON content types
3981
3982 - Provides HTTP response codes as well as Service and Policy error
3983   messages
3984
3985 Call Flow
3986 +++++++++++
3987
3988 .. seqdiag::
3989     :caption: ``publishEventBatch`` Call Flow
3990
3991     seqdiag {
3992       edge_length = 250;
3993       client  -> listener [label = "POST /eventlistener/v7/eventBatch"];
3994       client <- listener [label = "HTTP 202 Accepted", note = "sync response"];
3995       === Error Scenario ===
3996       client  -> listener [label = "POST /eventlistener/v7/eventBatch"];
3997       client <- listener [label = "HTTP 4XX/5XX", note = "sync response"];
3998     }
3999
4000 Input Parameters
4001 +++++++++++++++++
4002
4003 Header Fields (note: all parameter names shall be treated as
4004 case-insensitive):
4005
4006 +---------------+----------+----------+---------------------------------------+
4007 | Parameter     | Data Type| Required?| Brief description                     |
4008 +---------------+----------+----------+---------------------------------------+
4009 | Accept        | string   | No       | Determines the format of the body of  |
4010 |               |          |          | the response. Valid values are:       |
4011 |               |          |          |                                       |
4012 |               |          |          | -  application/json                   |
4013 +---------------+----------+----------+---------------------------------------+
4014 | Authorization | string   | No       | The username and password are formed  |
4015 |               |          |          | into one string as "username:password"|
4016 |               |          |          | . This string is then Base64 encoded  |
4017 |               |          |          | to produce the encoded credential     |
4018 |               |          |          | which is communicated in the header   |
4019 |               |          |          | after the string "Authorization:      |
4020 |               |          |          | Basic". See examples below. If the    |
4021 |               |          |          | Authorization header is missing, then |
4022 |               |          |          | an HTTP 400 Invalid Request message   |
4023 |               |          |          | shall be returned. If the string      |
4024 |               |          |          | supplied is invalid, then an HTTP 401 |
4025 |               |          |          | Unauthorized message shall be         |
4026 |               |          |          | returned.                             |
4027 +---------------+----------+----------+---------------------------------------+
4028 | Content-length| integer  | No       | Note that content length is limited to|
4029 |               |          |          | 2 megabyte (see :ref:`msg-size`).     |
4030 +---------------+----------+----------+---------------------------------------+
4031 | Content-type  | string   | Yes      | Must be set to one of the following   |
4032 |               |          |          | values:                               |
4033 |               |          |          |                                       |
4034 |               |          |          | -  application/json                   |
4035 +---------------+----------+----------+---------------------------------------+
4036 | X-MinorVersion| integer  | No       | The minor version of the API requested|
4037 |               |          |          | by the client                         |
4038 +---------------+----------+----------+---------------------------------------+
4039 | X-PatchVersion| integer  | No       | The patch version of the API requested|
4040 |               |          |          | by the client                         |
4041 +---------------+----------+----------+---------------------------------------+
4042 | X-Latest\     | string   | No       | The full version of the API requested |
4043 | Version       |          |          | by the client expressed as            |
4044 |               |          |          | {major}.{minor}.{patch}               |
4045 +---------------+----------+----------+---------------------------------------+
4046
4047 Body Fields:
4048
4049 +--------------+--------------+--------------+-------------------------------+
4050 | **Parameter**| **Data Type**| **Required?**| **Brief description**         |
4051 +--------------+--------------+--------------+-------------------------------+
4052 | eventList    | eventList    | Yes          | Array of events conforming to |
4053 |              |              |              | the common event format.      |
4054 +--------------+--------------+--------------+-------------------------------+
4055
4056 Output Parameters
4057 +++++++++++++++++++
4058
4059 Header fields:
4060
4061 +----------------+--------------+--------------+------------------------------+
4062 | **Parameter**  | **Data Type**| **Required?**| **Brief description**        |
4063 +----------------+--------------+--------------+------------------------------+
4064 | Content-length | integer      | No           | Used only in error conditions|
4065 +----------------+--------------+--------------+------------------------------+
4066 | Content-type   | string       | No           | Used only in error conditions|
4067 +----------------+--------------+--------------+------------------------------+
4068 | Date           | datetime     | No           | Date time of the response in |
4069 |                |              |              | GMT                          |
4070 +----------------+--------------+--------------+------------------------------+
4071 | X-MinorVersion | integer      | Yes          | The minor version of the API |
4072 |                |              |              | service                      |
4073 +----------------+--------------+--------------+------------------------------+
4074 | X-PatchVersion | integer      | Yes          | The patch version of the API |
4075 |                |              |              | service                      |
4076 +----------------+--------------+--------------+------------------------------+
4077 | X-LatestVersion| string       | Yes          | The full version of the API  |
4078 |                |              |              | service expressed as         |
4079 |                |              |              | {major}.{minor}.{patch}      |
4080 +----------------+--------------+--------------+------------------------------+
4081
4082 Body Fields (for success responses: no content is provided.
4083
4084 Body Fields (for error responses):
4085
4086 +--------------+--------------+----------------+------------------------------+
4087 | **Parameter**| **Data Type**| **Required?**  | **Brief description**        |
4088 +--------------+--------------+----------------+------------------------------+
4089 | requestError | requestError | Yes(for errors)| Used only in error conditions|
4090 +--------------+--------------+----------------+------------------------------+
4091
4092 HTTP Status Codes
4093 +++++++++++++++++
4094
4095 +-----+--------------+--------------------------------------------------------+
4096 | Code| Reason Phrase| Description                                            |
4097 +=====+==============+========================================================+
4098 | 202 | Accepted     | The request has been accepted for processing           |
4099 +-----+--------------+--------------------------------------------------------+
4100 | 400 | Bad Request  | Many possible reasons not specified by the other codes |
4101 |     |              | (e.g., missing required parameters or incorrect format)|
4102 |     |              | . The response body may include a further exception    |
4103 |     |              | code and text. HTTP 400 errors may be mapped to SVC0001|
4104 |     |              | (general service error), SVC0002 (bad parameter),      |
4105 |     |              | SVC2000 (general service error with details) or PO9003 |
4106 |     |              | (message content size exceeds the allowable limit).    |
4107 +-----+--------------+--------------------------------------------------------+
4108 | 401 | Unauthorized | Authentication failed or was not provided. HTTP 401    |
4109 |     |              | errors may be mapped to POL0001 (general policy error) |
4110 |     |              | or POL2000 (general policy error with details).        |
4111 +-----+--------------+--------------------------------------------------------+
4112 | 404 | Not Found    | The server has not found anything matching the         |
4113 |     |              | Request-URI. No indication is given of whether the     |
4114 |     |              | condition is temporary or permanent.                   |
4115 +-----+--------------+--------------------------------------------------------+
4116 | 405 | Method Not   | A request was made of a resource using a request method|
4117 |     | Allowed      | not supported by that resource (e.g., using PUT on a   |
4118 |     |              | REST resource that only supports POST).                |
4119 +-----+--------------+--------------------------------------------------------+
4120 | 500 | Internal     | The server encountered an internal error or timed out; |
4121 |     | Server Error | please retry (general catch-all server-side error).HTTP|
4122 |     |              | 500 errors may be mapped to SVC1000 (no server         |
4123 |     |              | resources).                                            |
4124 +-----+--------------+--------------------------------------------------------+
4125
4126 Sample Request and Response
4127 +++++++++++++++++++++++++++++
4128
4129 Sample Request
4130 ****************
4131
4132 .. code-block:: http
4133
4134     POST /eventListener/v7/eventBatch HTTP/1.1
4135     Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
4136     content-type: application/json
4137     content-length: 12345
4138     X-MinorVersion: 1
4139
4140     {
4141        "eventList": [
4142           {
4143              "commonEventHeader": {
4144                 "version": "4.1",
4145                 "vesEventListenerVersion": "7.1.1",
4146                 "domain": "fault",
4147                 "eventName": "Fault_Vscf:Acs-Ericcson_PilotNumberPoolExhaustion",
4148                 "eventId": "fault0000250",
4149                 "sequence": 1,
4150                 "priority": "High",
4151                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
4152                 "reportingEntityName": "ibcx0001vm002oam0011234",
4153                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
4154                 "sourceName": "scfx0001vm002cap001",
4155                 "nfVendorName": "Ericsson",
4156                 "nfNamingCode": "scfx",
4157                 "nfcNamingCode": "ssc",
4158                 "startEpochMicrosec": 1413378172000000,
4159                 "lastEpochMicrosec": 1413378172000000,
4160                 "timeZoneOffset": "UTC-05:30"
4161              },
4162              "faultFields": {
4163                 "faultFieldsVersion": 4.0,
4164                 "alarmCondition": "PilotNumberPoolExhaustion",
4165                 "eventSourceType": "other",
4166                 "specificProblem": "Calls cannot complete - pilot numbers are unavailable",
4167                 "eventSeverity": "CRITICAL",
4168                 "vfStatus": "Active",
4169                 "alarmAdditionalInformation": {
4170                     "PilotNumberPoolSize": "1000"
4171                 }
4172              }
4173           },
4174           {
4175              "commonEventHeader": {
4176                 "version": "4.1",
4177                 "vesEventListenerVersion": "7.1.1",
4178                 "domain": "fault",
4179                 "eventName": " Fault_Vscf:Acs-Ericcson_RecordingServerUnreachable",
4180                 "eventId": "fault0000251",
4181                 "sequence": 0,
4182                 "priority": "High",
4183                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
4184                 "reportingEntityName": "ibcx0001vm002oam0011234",
4185                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
4186                 "sourceName": "scfx0001vm002cap001",
4187                 "nfVendorName": "Ericsson",
4188                 "nfNamingCode": "scfx",
4189                 "nfcNamingCode": "ssc",
4190                 "startEpochMicrosec": 1413378172000010,
4191                 "lastEpochMicrosec": 1413378172000010,
4192                 "timeZoneOffset": "UTC-05:30"
4193              },
4194              "faultFields": {
4195                 "faultFieldsVersion": 4.0,
4196                 "alarmCondition": "RecordingServerUnreachable",
4197                 "eventSourceType": "other",
4198                 "specificProblem": "Recording server unreachable",
4199                 "eventSeverity": "CRITICAL",
4200                 "vfStatus": "Active"
4201              }
4202           }
4203        ]
4204     }
4205
4206 Sample Success Response
4207 *************************
4208
4209 .. code-block:: http
4210
4211     HTTPS/1.1 202 Accepted
4212     X-MinorVersion: 1
4213     X-PatchVersion: 1
4214     X-LatestVersion: 7.1.1
4215
4216 Sample Error Responses
4217 ************************
4218
4219 Sample Policy Exception
4220 """"""""""""""""""""""""
4221
4222 .. code-block:: http
4223
4224     HTTPS/1.1 400 Bad Request
4225     content-type: application/json
4226     content-length: 12345
4227     Date: Thu, 04 Jun 2009 02:51:59 GMT
4228     X-MinorVersion: 1
4229     X-PatchVersion: 1
4230     X-LatestVersion: 7.1.1
4231
4232     {
4233       "requestError": {
4234         "policyException": {
4235           "messageId": "POL9003",
4236           "text": "Message content size exceeds the allowable limit",
4237         }
4238       }
4239     }
4240
4241
4242
4243 Sample Service Exception
4244 """""""""""""""""""""""""
4245
4246 .. code-block:: http
4247
4248     HTTPS/1.1 400 Bad Request
4249     content-type: application/json
4250     content-length: 12345
4251     Date: Thu, 04 Jun 2009 02:51:59 GMT
4252     X-MinorVersion: 1
4253     X-PatchVersion: 1
4254     X-LatestVersion: 7.1.1
4255
4256     {
4257       "requestError": {
4258         "serviceException": {
4259           "messageId": "SVC2000",
4260           "text": "Missing Parameter: %1. Error code is %2"
4261           "variables": [
4262             "severity",
4263             "400"
4264           ]
4265         }
4266       }
4267     }
4268
4269
4270 Terminology
4271 ^^^^^^^^^^^^
4272
4273 Terminology used in this document is summarized below:
4274
4275 **A&AI**. Active & Available Inventory is the ONAP component that
4276 provides data views of Customer Subscriptions, Products, Services,
4277 Resources, and their relationships.
4278
4279 **Alarm Condition**. Short name of the alarm condition/problem, such as
4280 a trap name.
4281
4282 **APPC (formerly APP-C)**. Application Controller. Handles the life
4283 cycle management of Virtual Network Functions (VNFs).
4284
4285 **ASDC**. AT&T Service Design and Creation Platform: the original name
4286 for the SDC. Replaced by SDC.
4287
4288 **Common Event Format**. A JSON schema describing events sent to the VES
4289 Event Listener.
4290
4291 **Common Event Header**. A component of the Common Event Format JSON
4292 structure. This datatype consists of fields common to all events.
4293
4294 **DCAE**. Data Collection Analysis and Events. DCAE is the ONAP
4295 subsystem that supports closed loop control and higher-level correlation
4296 for business and operations activities. DCAE collects performance,
4297 usage, and configuration data, provides computation of analytics, aids
4298 in trouble-shooting and management, and publishes event, data, and
4299 analytics to the rest of the ONAP system for FCAPS functionality.
4300
4301 **DMaaP.** Data Movement as a Platform. A set of common services
4302 provided by ONAP, including a Message Router, Data Router, and a Data
4303 Bus Controller.
4304
4305 **Domain**. In VES, an event ‘domain’ identifies a broad category of
4306 events (e.g., ‘fault’ or ‘measurement’), each of which is associated
4307 with a VES domain field block, which is sent with the commonEventHeader
4308 when events of that category are generated.
4309
4310 **Epoch**. The number of seconds that have elapsed since
4311 00:00:00 \ `Coordinated Universal
4312 Time <https://en.wikipedia.org/wiki/Coordinated_Universal_Time>`__ (UTC),
4313 Thursday, 1 January 1970. Every day is treated as if it contains exactly
4314 86400 seconds, so \ `leap
4315 seconds <https://en.wikipedia.org/wiki/Leap_second>`__ are not applied
4316 to seconds since the Epoch. In VES Epoch times are measured in
4317 microseconds.
4318
4319 **Event.** A well-structured packet of network management information
4320 identified by an eventName which is asynchronously communicated to one
4321 or more instances of an Event Listener service to subscribers interested
4322 in that eventName. Events can convey measurements, faults, syslogs,
4323 threshold crossing alerts, and others types of information.
4324
4325 **Event Id**. Event key that is unique to the event source. The key must
4326 be unique within notification life cycle similar to EventID from 3GPP.
4327 It could be a sequential number, or a composite key formed from the
4328 event fields, such as sourceName\_alarmCondition\_startEpoch. The
4329 eventId should not include whitespace. For fault events, eventId is the
4330 eventId of the initial alarm; if the same alarm is raised again for
4331 changed, acknowledged or cleared cases, eventId must be the same as the
4332 initial alarm (along with the same startEpochMicrosec and an incremental
4333 sequence number.
4334
4335 **Event Name**. Identifier for specific types of events. Specific
4336 eventNames registered by the YAML may require that certain fields, which
4337 are optional in the Common Event Format, be present when events with
4338 that eventName are published.
4339
4340 **Event Streaming**. The delivery of network management event
4341 information in real time.
4342
4343 **Extensible Data Structures**. Data structures (e.g., hashMap) that
4344 allow event sources to send information not specifically identified in
4345 the VES schema.
4346
4347 **Hash Map**. A hash table, or data structure, used to implement an
4348 associative array, a structure than can map keys to values. In VES 6.0,
4349 all name-value pair structures were changed to hash maps (i.e., {‘name’:
4350 ‘keyName’, ‘value’: ‘keyValue’} was replaced with {‘keyName’:
4351 ‘keyValue’}).
4352
4353 **ICE**. Incubation and Certification Environment. Facilitates vendors
4354 and third-party in developing virtual network functions using ONAP and a
4355 network cloud.
4356
4357 **IPMI**. The `Intelligent Platform Management
4358 Interface <https://en.wikipedia.org/wiki/Intelligent_Platform_Management_Interface>`__.
4359
4360 **JSON**. Java Script Object Notation. JSON is an
4361 `open-standard <https://en.wikipedia.org/wiki/Open_standard>`__ `file
4362 format <https://en.wikipedia.org/wiki/File_format>`__ that uses
4363 `human-readable <https://en.wikipedia.org/wiki/Human-readable_medium>`__
4364 text to transmit data objects consisting of `attribute–value
4365 pairs <https://en.wikipedia.org/wiki/Attribute%E2%80%93value_pair>`__
4366 and `array data types <https://en.wikipedia.org/wiki/Array_data_type>`__
4367 (or any other
4368 `serializable <https://en.wikipedia.org/wiki/Serialization>`__ value).
4369 It is a very common `data <https://en.wikipedia.org/wiki/Data>`__ format
4370 used for
4371 `asynchronous <https://en.wikipedia.org/wiki/Asynchronous_I/O>`__
4372 browser–server communication.
4373
4374 **NF**. Network Function. Generalized name for a VNF or PNF.
4375
4376 **NFC**. Network Function Component. Generalized name for a VNFC or a
4377 component of a PNF.
4378
4379 **ONAP**. `Open Network Automation Platform <https://www.onap.org/>`__.
4380
4381 **PNF**. Physical Network Function.
4382
4383 **Policy**. Course of action for the management of the network. The ONAP
4384 Policy Framework is a comprehensive policy design, deployment, and
4385 execution environment. The Policy Framework is the ***decision making***
4386 component in `an ONAP
4387 system <https://www.onap.org/wp-content/uploads/sites/20/2017/12/ONAP_CaseSolution_Architecture_120817_FNL.pdf>`__.
4388 It allows you to specify, deploy, and execute the governance of the
4389 features and functions in your ONAP system, be they closed loop,
4390 orchestration, or more traditional open loop use case implementations.
4391 The Policy Framework is the component that is the source of truth for
4392 all policy decisions.
4393
4394 **Reporting Entity Name**. Name of the entity reporting the event or
4395 detecting a problem in another vnf/vm or pnf which is experiencing the
4396 problem. May be the same as the sourceName. Not used for performance
4397 measurements currently.
4398
4399 **SDC**. Service Design and Creation Platform: The ONAP visual modeling
4400 and design tool. It creates internal metadata that describes assets used
4401 by all ONAP components, both at design time and run time. The SDC
4402 manages the content of a catalog, and assemblies of selected catalog to
4403 define how and when VNFs are realized in a target environment.
4404
4405 **Source Name**: Name of the entity experiencing the event issue, which
4406 may be detected and reported by a separate reporting entity. The
4407 sourceName identifies the device for which data is collected. A valid
4408 sourceName must be inventoried in A&AI.
4409
4410 **Specific Problem**. Description of the alarm or problem.
4411
4412 **VES**. Virtual Function Event Stream. In 6.0, the definition of VES
4413 was expanded to include event streaming for VNF, PNF and infrastructure.
4414 The VES Event Listener can receive any event sent in the VES Common
4415 Event Format.
4416
4417 **VES Event Listener**. A RESTful connectionless push event listener
4418 capable of receiving single events or batches of events sent in the
4419 Common Event Format.
4420
4421 **VM**. Virtual Machine.
4422
4423 **VNF**. Virtual Network Function. A VNF is a virtualized task formerly
4424 carried out by proprietary, dedicated network hardware. (Examples:
4425 virtual firewall, virtual DNS). A VNF can also be defined as a specific
4426 kind of Vendor Software Product.
4427
4428 **YAML**. A `data serialization
4429 language <https://en.wikipedia.org/wiki/Data_serialization_language>`__
4430 and superset of JSON.
4431
4432 **VNFC**. Virtual Network Function Component. A VNFC is a part of a VNF.
4433 It is a stand-alone executable that is loosely-coupled, granular,
4434 re-usable, and responsible for a single capability.
4435
4436 Appendix: Historical Change Log
4437 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4438
4439 For the latest changes, see the Change Block just before the Table of
4440 Contents.
4441
4442 +-----------+---------+-------------------------------------------------------+
4443 | Date      | Revision| Description                                           |
4444 +-----------+---------+-------------------------------------------------------+
4445 | 5/22/2015 | 0.1     | Initial Release - Draft                               |
4446 +-----------+---------+-------------------------------------------------------+
4447 | 5/29/2015 | 0.2     | -  Introduction: removed all system names and         |
4448 |           |         |    references to internal AT&T components             |
4449 |           |         |                                                       |
4450 |           |         | -  Security: changed ‘event publisher’ to             |
4451 |           |         |    ‘event source’                                     |
4452 |           |         |                                                       |
4453 |           |         | -  Generic Event Format: updated the JSON schema per  |
4454 |           |         |    the below:                                         |
4455 |           |         |                                                       |
4456 |           |         | -  eventHeader: clarified the description of id, made |
4457 |           |         |    sourceId a required field, changed the datatype of |
4458 |           |         |    timestamps to timestamp [ ]                        |
4459 |           |         |                                                       |
4460 |           |         | -  performanceFields: removed overflowFields          |
4461 |           |         |                                                       |
4462 |           |         | -  tmestamp: added a description of this datatype     |
4463 |           |         |                                                       |
4464 |           |         | -  Exceptions: fixed indentation of sections          |
4465 |           |         |                                                       |
4466 |           |         | -  Approvers: updated the list of approvers and added |
4467 |           |         |    attuids                                            |
4468 +-----------+---------+-------------------------------------------------------+
4469 | 6/3/2015  | 0.3     | -  Updated the security section to use HTTP Basic     |
4470 |           |         |    Authentication per AT&T REST standards. Updated the|
4471 |           |         |    input parameters and messaging examples to use the |
4472 |           |         |    new security scheme.                               |
4473 +-----------+---------+-------------------------------------------------------+
4474 | 6/5/2015  | 0.4     | -  Added otherFields sub section to the defined       |
4475 |           |         |    datatypes                                          |
4476 |           |         |                                                       |
4477 |           |         | -  Added locale field to the eventHeader.             |
4478 +-----------+---------+-------------------------------------------------------+
4479 | 6/5/2015  | 0.5     | -  Updated the embedded event format json schema to   |
4480 |           |         |    match the changes made in v0.4                     |
4481 +-----------+---------+-------------------------------------------------------+
4482 | 6/10/2015 | 0.6     | -  Updated the {ServerRoot} format to contain an      |
4483 |           |         |    optional routing path (for D2 service modules).    |
4484 +-----------+---------+-------------------------------------------------------+
4485 | 7/7/2015  | 0.7     |     Common Event Format updates:                      |
4486 |           |         |                                                       |
4487 |           |         | -  EventHeader: added ‘measurement’ to the ‘domain’   |
4488 |           |         |    enumeration; changed ‘locale’ to ‘location’ and    |
4489 |           |         |    clarified in the description that this should be a |
4490 |           |         |    clli code                                          |
4491 |           |         |                                                       |
4492 |           |         | -  Added a MeasurementFields datatype, which required |
4493 |           |         |    the addition of the following datatypes:           |
4494 |           |         |    codecsInUse, cpuUsage, diskUsage, featuresInUse,   |
4495 |           |         |    memoryUsage                                        |
4496 +-----------+---------+-------------------------------------------------------+
4497 | 7/15/2015 | 1.0     | -  Changed sourceInstance in the eventHeader to be an |
4498 |           |         |    array of name value pairs                          |
4499 |           |         |                                                       |
4500 |           |         | -  Changed the performanceFields block to             |
4501 |           |         |    thresholdCrossingAlertFields. Updated the domain   |
4502 |           |         |    field of the eventHeader to match.                 |
4503 +-----------+---------+-------------------------------------------------------+
4504 | 7/23/2015 | v1.1    | Changes to eventHeader data format:                   |
4505 |           |         |                                                       |
4506 |           |         | -  moved sourceInstance to internalHeaderFields       |
4507 |           |         |                                                       |
4508 |           |         | -  moved serviceInstanceId to internalHeaderFields    |
4509 |           |         |                                                       |
4510 |           |         | -  moved productId to internalHeaderFields            |
4511 |           |         |                                                       |
4512 |           |         | -  moved subscriberId to internalHeaderFields         |
4513 |           |         |                                                       |
4514 |           |         | -  moved location to internalHeaderFields             |
4515 |           |         |                                                       |
4516 |           |         | -  added the following new fields in                  |
4517 |           |         |    internalHeaderFields: policyType, policyName,      |
4518 |           |         |    correlationEventType, correlationType,             |
4519 |           |         |    correlationName, correlationRootEventId            |
4520 |           |         |                                                       |
4521 |           |         | Changes to faultFields data format:                   |
4522 |           |         |                                                       |
4523 |           |         | -  moved the eventSourceDeviceDescription to          |
4524 |           |         |    internalFaultFields and renamed it                 |
4525 |           |         |    equipmentVendorModel                               |
4526 |           |         |                                                       |
4527 |           |         | -  moved eventSourceHostname to internalFaultFields   |
4528 |           |         |                                                       |
4529 |           |         | -  changed alarmObjectInterface to alarmInterfaceA    |
4530 |           |         |                                                       |
4531 |           |         | -  changed alarmRemoteObject to alarmRemoteObjectZ and|
4532 |           |         |     moved it to internalFaultFields                   |
4533 |           |         |                                                       |
4534 |           |         | -  changed alarmRemoteObjectInterface to              |
4535 |           |         |    alarmInterfaceZ and moved it to internalFaultFields|
4536 |           |         |                                                       |
4537 |           |         | Changes to thresholdCrossingFields data format:       |
4538 |           |         |                                                       |
4539 |           |         | -  changed several references from the old            |
4540 |           |         |    ‘performanceFields’ block to the new               |
4541 |           |         |    ‘thresholdCrossingFields’ block                    |
4542 |           |         |                                                       |
4543 |           |         | Other:                                                |
4544 |           |         |                                                       |
4545 |           |         | -  Fixed several comma and colon syntax errors in the |
4546 |           |         |    JSON schema as detected by a JSON schema syntax    |
4547 |           |         |    checker.                                           |
4548 +-----------+---------+-------------------------------------------------------+
4549 | 8/11/2015 | v1.2    | Timestamp format:                                     |
4550 |           |         |                                                       |
4551 |           |         | -  Section 4.18: added a note in the datetime field of|
4552 |           |         |    the Timestamp datatype specifying the (GMT) format |
4553 |           |         |    required                                           |
4554 |           |         |                                                       |
4555 |           |         | -  Updated the JSON schema with the same information  |
4556 |           |         |                                                       |
4557 |           |         | Event Header Severity Enumeration:                    |
4558 |           |         |                                                       |
4559 |           |         | -  Section 4.8: modified the severity enumeration to  |
4560 |           |         |    remove the numbers in parentheses that followed the|
4561 |           |         |    names. The names were not changed.                 |
4562 |           |         |                                                       |
4563 |           |         | -  Updated the JSON schema with the same information. |
4564 +-----------+---------+-------------------------------------------------------+
4565 | 8/20/2015 | v1.3    | JSON Schema rev’d to v9:                              |
4566 |           |         |                                                       |
4567 |           |         | -  Alphabetized all fields in the JSON schema         |
4568 |           |         |                                                       |
4569 |           |         | -  Fixed the way arrays were specified (JSON schema   |
4570 |           |         |    syntax issue)                                      |
4571 |           |         |                                                       |
4572 |           |         | Sample Responses:                                     |
4573 |           |         |                                                       |
4574 |           |         | -  2.1.1.1: alphabetized fields, fixed timestamps     |
4575 |           |         |    array depiction, fixed severity enum value to      |
4576 |           |         |    conform to latest format                           |
4577 |           |         |                                                       |
4578 |           |         | -  6.2.6.1: alphabetized fields, fixed timestamps     |
4579 |           |         |    array depiction, fixed severity enum value to      |
4580 |           |         |    conform to latest format                           |
4581 |           |         |                                                       |
4582 |           |         | -  6.3.6.1: alphabetized fields, fixed timestamps     |
4583 |           |         |    array depiction, fixed severity enum value to      |
4584 |           |         |    conform to latest format                           |
4585 |           |         |                                                       |
4586 |           |         | -  6.4.6.1: alphabetized fields, fixed timestamps     |
4587 |           |         |    array depiction, fixed eventList array depection,  |
4588 |           |         |    fixed severity enum value to conform to latest     |
4589 |           |         |    format                                             |
4590 +-----------+---------+-------------------------------------------------------+
4591 | 9/16/2015 | v1.4    | JSON Schema rev’d to v10:                             |
4592 |           |         |                                                       |
4593 |           |         | - Fixed an error in the way that the top level        |
4594 |           |         |   "event" object was specified in the v9 json schema. |
4595 |           |         |   This was discovered when validating examples        |
4596 |           |         |   against the schema using this site:                 |
4597 |           |         |   http://json-schema-validator.herokuapp.com/index.jsp|
4598 |           |         |                                                       |
4599 |           |         | - Changed the embedded json file in section 4         |
4600 |           |         |                                                       |
4601 |           |         | Sample Responses:                                     |
4602 |           |         |                                                       |
4603 |           |         | - Removed an extra comma after the timestamp brace in |
4604 |           |         |   section 6.2.6 and 6.3.6.                            |
4605 +-----------+---------+-------------------------------------------------------+
4606 | 11/11/2015| v1.5    | Section 4 was the only section changed: JSON Schema   |
4607 |           |         | rev’d to v11 and Datatype tables were updated to match|
4608 |           |         | . Numerous data structure changes were made based on  |
4609 |           |         | VNF vendor proof of concept feedback. Modified sample |
4610 |           |         | requests and responses to match.                      |
4611 +-----------+---------+-------------------------------------------------------+
4612 | 11/12/2015| v1.6    | -  The internalFaultFields were merged into the       |
4613 |           |         |    internalHeaderFields; then the internalFaultFields |
4614 |           |         |    datatype was deleted.                              |
4615 |           |         |                                                       |
4616 |           |         | -  Updated the JSON schema to v12.                    |
4617 |           |         |                                                       |
4618 |           |         | -  Also corrected some background color issues in the |
4619 |           |         |    sample requests and responses.                     |
4620 +-----------+---------+-------------------------------------------------------+
4621 | 1/18/2016 | v1.7    | -  Section 2 changes: updated the sample request to   |
4622 |           |         |    conform with the changes below                     |
4623 |           |         |                                                       |
4624 |           |         | -  Section 4 datatype changes:                        |
4625 |           |         |                                                       |
4626 |           |         | -  Changed 'eventHeader' to 'commonEventHeader'       |
4627 |           |         |                                                       |
4628 |           |         | -  Moved 'eventSeverity' from the 'commonEventHeader' |
4629 |           |         |    to 'faultFields'                                   |
4630 |           |         |                                                       |
4631 |           |         | -  Added 'priority' to 'commonEventHeader'            |
4632 |           |         |                                                       |
4633 |           |         | -  moved 'vFstatus' to 'faultFields'                  |
4634 |           |         |                                                       |
4635 |           |         | -  removed 'firstDateTime' and 'lastDateTime' and     |
4636 |           |         |    changed 'firstEpoch' to 'startEpochMicrosec' and   |
4637 |           |         |    changed 'lastEpoch' to 'lastEpochMicrosec'.        |
4638 |           |         |                                                       |
4639 |           |         | -  Added 'functionalRole' to the commonEventHeader    |
4640 |           |         |                                                       |
4641 |           |         | -  In the commonEventHeader, changed the 'eventDomain'|
4642 |           |         |    enumeration to remove 'measurements' and add       |
4643 |           |         |    'measurementsForVfScaling'.                        |
4644 |           |         |                                                       |
4645 |           |         | -  Changed the 'measurementFields' to                 |
4646 |           |         |    'measurementsForVfScalingFields'                   |
4647 |           |         |                                                       |
4648 |           |         | -  In the commonEventHeader, changed the following    |
4649 |           |         |    fields:                                            |
4650 |           |         |                                                       |
4651 |           |         | -  'eventDomain' to 'domain'                          |
4652 |           |         |                                                       |
4653 |           |         | -  'eventSequence' to 'sequence'                      |
4654 |           |         |                                                       |
4655 |           |         | -  'eventSourceId' to 'sourceId'                      |
4656 |           |         |                                                       |
4657 |           |         | -  'eventSounceName' to 'sourceName'                  |
4658 |           |         |                                                       |
4659 |           |         | -  Updated the JSON schema to v13                     |
4660 |           |         |                                                       |
4661 |           |         | -  Section 6 changes: updated the input parameters and|
4662 |           |         |    sample requests to conform to the changes above.   |
4663 |           |         |                                                       |
4664 |           |         | -  Section 7: changed the section from Approvers to   |
4665 |           |         |    Contributors.                                      |
4666 +-----------+---------+-------------------------------------------------------+
4667 | 1/22/2016 | v1.8    | -  Section 4: Added support for ‘mobileFlow’ in the   |
4668 |           |         |    commonEventHeader ‘domain’ enumeration. Added the  |
4669 |           |         |    mobileFlowFields datatype and the gtpPerFlowMetrics|
4670 |           |         |    datatype referenced by that datatype.              |
4671 |           |         |                                                       |
4672 |           |         | -  Section 7: alphabetized the contributors           |
4673 +-----------+---------+-------------------------------------------------------+
4674 | 2/11/2016 | v1.9    | -  Added section 1.3: Naming Standard for Event Types |
4675 +-----------+---------+-------------------------------------------------------+
4676 | 2/12/2016 | v2.0    | -  Updated request – response examples to reflect the |
4677 |           |         |    naming standards for event types introduced in v1.9|
4678 |           |         |                                                       |
4679 |           |         | -  Added a paragraph on use of Avro as a transport in |
4680 |           |         |    section 1.4                                        |
4681 +-----------+---------+-------------------------------------------------------+
4682 | 3/11/2016 | v2.1    | -  Updated the embedded JSON schema to v15 to fix a   |
4683 |           |         |    typo in the required fields for the                |
4684 |           |         |    measurementsForVfScalingFields, namely, changed    |
4685 |           |         |    ‘configuredEntites’ to ‘configuredEntities’.       |
4686 |           |         |    Additionally, added an ‘Event Listener’ title block|
4687 |           |         |    at the bottom of the file with a single required   |
4688 |           |         |    event object.                                      |
4689 +-----------+---------+-------------------------------------------------------+
4690 | 3/15/2016 | v2.2    | -  Added mobileFlowFields to the event datatype       |
4691 |           |         |    definition in section 4.7 and updated the embedded |
4692 |           |         |    json schema at the top of section 4 to v16.        |
4693 +-----------+---------+-------------------------------------------------------+
4694 | 4/26/2016 | v2.3    | -  Generic Event Format updates: 1) made ‘priority’   |
4695 |           |         |    lowercase in the Word doc table for                |
4696 |           |         |    commonEventHeader; 2) added ‘requestError’ data    |
4697 |           |         |    structure to the Word doc and JSON schema (which is|
4698 |           |         |    now at v17)                                        |
4699 +-----------+---------+-------------------------------------------------------+
4700 | 4/27/2016 | v2.4    | -  JSON Schema: In the 'event' data structure, changed|
4701 |           |         |    'thresholdCrossingFields' to                       |
4702 |           |         |    'thresholdCrossingAlertFields' to product v18 of   |
4703 |           |         |    the schema.                                        |
4704 |           |         |                                                       |
4705 |           |         | -  'codecsInUse' data structure: changed 'numberInUse'|
4706 |           |         |     to 'codecUtilization’                             |
4707 +-----------+---------+-------------------------------------------------------+
4708 | 5/26/2016 | v2.5    | -  Changed responses from ‘204 No Content’ to ‘202    |
4709 |           |         |    Accepted’ and added a body to the response that    |
4710 |           |         |    enable AT&T to throttle the events being sent      |
4711 |           |         |    and/or to request the current state of throttling  |
4712 |           |         |    at the event source.                               |
4713 |           |         |                                                       |
4714 |           |         | -  Added new datatypes to support the above:          |
4715 |           |         |    eventDomainThrottleSpecification,                  |
4716 |           |         |    eventDomainThrottleSpecificationList,              |
4717 |           |         |    eventThrottlingState, suppressedNvPairs            |
4718 |           |         |                                                       |
4719 |           |         | -  Modifed the commonEventFormat json schema to v19   |
4720 |           |         |                                                       |
4721 |           |         | -  Note: for the VendorEventListener: added new       |
4722 |           |         |    licensing language on the back of the title page;  |
4723 |           |         |    added an "attCopyrightNotice" definition at the top|
4724 |           |         |    of the commonEventFormat\_Vendors.json file; also  |
4725 |           |         |    removed all references to internalHeaderFields from|
4726 |           |         |    this file and from the VendorEventListener spec.   |
4727 +-----------+---------+-------------------------------------------------------+
4728 | 8/9/2016  | v2.6    | -  commonHeader: added a note on the description of   |
4729 |           |         |    sourceId and sourceName in the commonHeader: "use  |
4730 |           |         |    reportingEntity for domains that provide more      |
4731 |           |         |    detailed source info"                              |
4732 |           |         |                                                       |
4733 |           |         | -  commonHeader: deleted the capacity,                |
4734 |           |         |    measurementsForVfScaling and usage domains in the  |
4735 |           |         |    domain enumeration                                 |
4736 |           |         |                                                       |
4737 |           |         | -  commonHeader: added the following domains to the   |
4738 |           |         |    domain enumeration: licensingKci, scalingKpi,      |
4739 |           |         |    stateChange                                        |
4740 |           |         |                                                       |
4741 |           |         | -  event: removed references to capacityFields,       |
4742 |           |         |    measurementsForVfScalingFields and usageFields and |
4743 |           |         |    added references to licensingKciFields,            |
4744 |           |         |    scalingKpiFields, stateChangeFields                |
4745 |           |         |                                                       |
4746 |           |         | -  licensingKciFields: added this section along with  |
4747 |           |         |    'additionalMeasurements', which is an optional list|
4748 |           |         |    of measurementGroup structures. Changed the name of|
4749 |           |         |    kciFieldsVersion to licensingKciFieldsVersion.     |
4750 |           |         |                                                       |
4751 |           |         | -  scalingKpiFields: added this section but changed   |
4752 |           |         |    measurementFieldsVersion to scalingKpiFieldsVersion|
4753 |           |         |                                                       |
4754 |           |         | -  stateChangeFields: added this section along with   |
4755 |           |         |    'additionalFields', which is an optional list of   |
4756 |           |         |    name-value pairs. Other fields included newState   |
4757 |           |         |    and oldState which were enumerations of the        |
4758 |           |         |    following possible states: 'inService',            |
4759 |           |         |    'maintenance', 'outOfService'                      |
4760 |           |         |                                                       |
4761 |           |         | -  sysLogFields: added 'additionalFields', which is an|
4762 |           |         |    optional list of name-value pairs                  |
4763 |           |         |                                                       |
4764 |           |         | -  vNicUsage: added two required fields to the        |
4765 |           |         |    vNicUsage data structure: packetsIn and packetsOut |
4766 +-----------+---------+-------------------------------------------------------+
4767 | 8/10/2016 | v2.7    | -  commonHeader: removed the note on the description  |
4768 |           |         |    of sourceId and sourceName in the commonHeader:    |
4769 |           |         |    "use reportingEntity for domains that provide more |
4770 |           |         |    detailed source info"                              |
4771 |           |         |                                                       |
4772 |           |         | -  commonHeader: added measurementsForVfScaling domain|
4773 |           |         |    back and removed the licensingKci and scalingKpi   |
4774 |           |         |    domains                                            |
4775 |           |         |                                                       |
4776 |           |         | -  event: removed references to licensingKciFields and|
4777 |           |         |    scalingKpiFields; added references to              |
4778 |           |         |    measurementsForVfScalingFields                     |
4779 |           |         |                                                       |
4780 |           |         | -  measurementsForVfScalingFields: combined the       |
4781 |           |         |    kciDetail and kpiDetail structures into the        |
4782 |           |         |    measurementsForVfScalingFields structure;          |
4783 |           |         |    referenced the errors structure                    |
4784 |           |         |                                                       |
4785 |           |         | -  errors: added a new structure to capture the       |
4786 |           |         |    receive and transmit errors for the measurements   |
4787 |           |         |    domain                                             |
4788 |           |         |                                                       |
4789 |           |         | -  removed the following structures: kci, kpi,        |
4790 |           |         |    scalingKpiFields and licensingKciFields            |
4791 |           |         |                                                       |
4792 |           |         | -  eventDomainThrottleSpecification: updated the      |
4793 |           |         |    reference to commonEventHeader domain field        |
4794 |           |         |                                                       |
4795 |           |         | -  faultFields: removed the numbers from the          |
4796 |           |         |    enumerated strings for eventSourceType             |
4797 |           |         |                                                       |
4798 |           |         | -  vNicUsage: made the broadcast, multicast and       |
4799 |           |         |    unicast fields optional                            |
4800 |           |         |                                                       |
4801 |           |         | -  contributors: updated Alok’s organizational area   |
4802 +-----------+---------+-------------------------------------------------------+
4803 | 8/12/2016 | v2.8    | -  commonHeader: copied the descriptions of sourceId  |
4804 |           |         |    and sourceName from the JSON schema into the word  |
4805 |           |         |    document tables.                                   |
4806 |           |         |                                                       |
4807 |           |         | -  sample request examples: moved the                 |
4808 |           |         |    reportingEntityId and reportingEntityNames to the  |
4809 |           |         |    same relative place in all sample requests in the  |
4810 |           |         |    document                                           |
4811 |           |         |                                                       |
4812 |           |         | -  Fixed the sample request shown for                 |
4813 |           |         |    publishEventBatch to take an eventList as input.   |
4814 |           |         |                                                       |
4815 |           |         | -  Fixed the sample request shown for                 |
4816 |           |         |    publishSpecificTopic to put the topic in the URL   |
4817 |           |         |                                                       |
4818 |           |         | -  errors: changed the receiveErrors and              |
4819 |           |         |    transmitErrors fields to be datatype number        |
4820 |           |         |                                                       |
4821 |           |         | -  codesInUse: changed 'codecUtilization' to          |
4822 |           |         |    'numberinUse'                                      |
4823 |           |         |                                                       |
4824 |           |         | -  vNicUsage: updated the description of the fields   |
4825 +-----------+---------+-------------------------------------------------------+
4826 | 8/27/2016 | v2.9    | -  Added a note "(currently: 1.1)" in the descriptions|
4827 |           |         |    of the following fields: commonEventHeader:version,|
4828 |           |         |    faultFields:faultFieldsVersion,                    |
4829 |           |         |    measurementsForVfScalingFields:measurementsForVf\  |
4830 |           |         |    ScalingFieldsVersion, stateChangeFields:state\     |
4831 |           |         |    ChangeFieldsVersion, sysLogFields:syslogFields\    |
4832 |           |         |    Version, thresholdCrossingAlertFields:threshold\   |
4833 |           |         |    CrossingFieldsVersion                              |
4834 |           |         |                                                       |
4835 |           |         | -  stateChangeFields: made stateInterface mandatory   |
4836 |           |         |                                                       |
4837 |           |         | -  changed 'enum' to 'enumeration' throughout section |
4838 |           |         |    4 of the document (note: this can't be done in the |
4839 |           |         |    JSON schema).                                      |
4840 |           |         |                                                       |
4841 |           |         | -  measurementsForVfScalingFields: made the following |
4842 |           |         |    fields optional: conurrentSessions, configured\    |
4843 |           |         |    Entitites, cpuUsageArray, fileSystemUsageArray,    |
4844 |           |         |    memoryConfigured, memoryUsed, requestRate,         |
4845 |           |         |    vNicUsageArray                                     |
4846 |           |         |                                                       |
4847 |           |         | -  measurementsForVfScalingFields: concurrentSessions |
4848 |           |         |    and configuredEntities: changed the description to |
4849 |           |         |    support both VMs and VNFs                          |
4850 |           |         |                                                       |
4851 |           |         | -  measurementsFor VfScalingFields: clarified the     |
4852 |           |         |    descriptions of latencyDistribution, measurement\  |
4853 |           |         |    Inverval and requestRate                           |
4854 |           |         |                                                       |
4855 |           |         | -  syslogFields: clarified the descriptions of        |
4856 |           |         |    syslogSData, syslogTag, syslogVer                  |
4857 |           |         |                                                       |
4858 |           |         | -  thresholdCrossingAlertFields: made the following   |
4859 |           |         |    fields optional and clarified their descriptions:  |
4860 |           |         |    elementType, networkService                        |
4861 |           |         |                                                       |
4862 |           |         | -  command and commandList: created a list of command |
4863 |           |         |    structures to enable the event collector to request|
4864 |           |         |    changes of event sources. Commands consist of a    |
4865 |           |         |    commandType along with optional fields (whose      |
4866 |           |         |    presence is indicated by the commandType). Three   |
4867 |           |         |    command types are currently supported:             |
4868 |           |         |    'measurementIntevalChange',                        |
4869 |           |         |    ‘provideThrottlingState’ and                       |
4870 |           |         |    'throttlingSpecification'.                         |
4871 |           |         |                                                       |
4872 |           |         | -  eventDomainThrottleSpecificationList: removed this |
4873 |           |         |    and replaced it with commandList.                  |
4874 |           |         |                                                       |
4875 |           |         | -  Operations and Sample Requests: modified the       |
4876 |           |         |    operations and samples to support the new command  |
4877 |           |         |    and commandList structures.                        |
4878 +-----------+---------+-------------------------------------------------------+
4879 | 9/1/2016  | v2.10   | -  measurementsForVfScaling block: made the following |
4880 |           |         |    fields optional: latencyDistribution (which is an  |
4881 |           |         |    array of latencyBucketMeasure structures) and      |
4882 |           |         |    meanRequestLatency. Updated the JSON schemas (now  |
4883 |           |         |    v24) to match.                                     |
4884 +-----------+---------+-------------------------------------------------------+
4885 | 9/16/2016 | v2.11   | -  1 Introduction: updated the introduction to clarify|
4886 |           |         |    the usage of eventTypes and the possibility of     |
4887 |           |         |    support for other protocols.                       |
4888 |           |         |                                                       |
4889 |           |         | -  6.1 REST Operation Overview: added two new         |
4890 |           |         |    subsections (6.1.2 and 6.1.3) discussing Api       |
4891 |           |         |    Version and Commands Toward Event Source Clients.  |
4892 |           |         |                                                       |
4893 |           |         | -  6.2 publishAnyEvent: fixed the sample to conform to|
4894 |           |         |    the latest changes                                 |
4895 |           |         |                                                       |
4896 |           |         | -  6.3 publishSpecificTopic: fixed the sample to      |
4897 |           |         |    conform to the latest changes                      |
4898 |           |         |                                                       |
4899 |           |         | -  6.4 publishEventBatch: fixed the sample to conform |
4900 |           |         |    to the latest changes                              |
4901 |           |         |                                                       |
4902 |           |         | -  6.5 provideThrottlingState operation: added the    |
4903 |           |         |    Input Parameters section heading back and fixed the|
4904 |           |         |    sample request to provide eventThrottlingState     |
4905 |           |         |    (instead of eventThrottlingClientState).           |
4906 |           |         |                                                       |
4907 |           |         | -  The remaining bullets describe changes made to     |
4908 |           |         |    section 4 datatypes in alphabetical order:         |
4909 |           |         |                                                       |
4910 |           |         | -  command datatype: referenced the new section 6.1.3 |
4911 |           |         |    which provides an explanation of command state     |
4912 |           |         |    expectations and requirements for a given          |
4913 |           |         |    eventSource:                                       |
4914 |           |         |                                                       |
4915 |           |         | -  commonEventHeader datatype:                        |
4916 |           |         |                                                       |
4917 |           |         |    -  made sourceId and reportingEntityId fields      |
4918 |           |         |       optional (although the internal Generic Event   |
4919 |           |         |       Listener spec indicates, in the field           |
4920 |           |         |       descriptions, that the AT&T enrichment process  |
4921 |           |         |       shall ensure that these fields are populated)   |
4922 |           |         |                                                       |
4923 |           |         |    -  domain enumeration: changed measurementsForVf\  |
4924 |           |         |       ScalingFields to measurementsForVfScaling       |
4925 |           |         |                                                       |
4926 |           |         | -  eventDomainThrottleSpecificationList: added this   |
4927 |           |         |    array of eventDomainThrottleSpecification stuctures|
4928 |           |         |    back to the schema because it is used by the       |
4929 |           |         |    provideThrottlingState operation.                  |
4930 |           |         |                                                       |
4931 |           |         | -  eventList: added eventList back to the vendor      |
4932 |           |         |    version of the commonEventFormat. This is used by  |
4933 |           |         |    the publishEventBatch operation.                   |
4934 |           |         |                                                       |
4935 |           |         | -  faultFields datatype:                              |
4936 |           |         |                                                       |
4937 |           |         |    -  eventSourceType: made this a string (and        |
4938 |           |         |       provided the previous enumerated values as      |
4939 |           |         |       examples)                                       |
4940 |           |         |                                                       |
4941 |           |         | -  filesystemUsage datatype:                          |
4942 |           |         |                                                       |
4943 |           |         |    -  changed vmIdentifier to filesystemName          |
4944 |           |         |                                                       |
4945 |           |         | -  gtpPerFlowMetrics datatype:                        |
4946 |           |         |                                                       |
4947 |           |         |    -  flowActivationTime: changed the format and      |
4948 |           |         |       description to be compliant with RFC 2822.      |
4949 |           |         |                                                       |
4950 |           |         |    -  flowDeactivationTime: changed the format and    |
4951 |           |         |       description to be compliant with RFC 2822.      |
4952 |           |         |                                                       |
4953 |           |         | -  internalHeaderFields datatype:                     |
4954 |           |         |                                                       |
4955 |           |         |    -  Added the following optional fields: firstDate\ |
4956 |           |         |       Time, lastDateTime compliant with RFC 2822.     |
4957 |           |         |       Noted in the description that these fields must |
4958 |           |         |       be supplied for events in the following domains:|
4959 |           |         |       fault, thresholdCrossingAlerts and              |
4960 |           |         |       measurementsForVfScaling.                       |
4961 |           |         |                                                       |
4962 |           |         |    -  ticketingTimestamp: changed the format and      |
4963 |           |         |       description to be compliant with RFC 2822.      |
4964 |           |         |                                                       |
4965 |           |         | -  syslogFields datatype:                             |
4966 |           |         |                                                       |
4967 |           |         |    -  eventSourceType: made this a string (and        |
4968 |           |         |       provided the previous enumerated values, without|
4969 |           |         |       the numbers, as examples)                       |
4970 |           |         |                                                       |
4971 |           |         | -  thresholdCrossingAlerts dataypte:                  |
4972 |           |         |                                                       |
4973 |           |         |    -  collectionTimestamp: changed the format and     |
4974 |           |         |       description to be compliant with RFC 2822.      |
4975 |           |         |                                                       |
4976 |           |         |    -  eventStartTimestamp: changed the format and     |
4977 |           |         |       description to be compliant with RFC 2822.      |
4978 |           |         |                                                       |
4979 |           |         |    -  added the same eventSeverity field as from the  |
4980 |           |         |       faultFields and made it required                |
4981 +-----------+---------+-------------------------------------------------------+
4982 | 9/23/2016 | v2.12   | -  Section 4 Datatypes: commonEventHeader: made       |
4983 |           |         |    reportingEntityName a required field (note: the    |
4984 |           |         |    JSON schema already had this field as required)    |
4985 +-----------+---------+-------------------------------------------------------+
4986 | 11/29/2016| v3.0    | -  Introduction:                                      |
4987 |           |         |                                                       |
4988 |           |         |    -  Introductory paragraph: changed '...Common Event|
4989 |           |         |       Header Block followed by zero or more event     |
4990 |           |         |       domain blocks' to '...Common Event Header Block |
4991 |           |         |       accompanied by zero or more event domain blocks'|
4992 |           |         |       since the order of the blocks on the wire is    |
4993 |           |         |       not guaranteed.                                 |
4994 |           |         |                                                       |
4995 |           |         |    -  Added Section 1.5 Versioning                    |
4996 |           |         |                                                       |
4997 |           |         | -  Section 4: codec processing:                       |
4998 |           |         |                                                       |
4999 |           |         |    -  CommonEventFormat\_Vendors schema only:         |
5000 |           |         |       codesInUse: changed required field from         |
5001 |           |         |       "codecUtilization" which was removed previously |
5002 |           |         |       to "numberInUse" which is the new field name.   |
5003 |           |         |                                                       |
5004 |           |         |    -  added ‘codecSelected’ datatype                  |
5005 |           |         |                                                       |
5006 |           |         |    -  added ‘codecSelectedTranscoding’ datatype       |
5007 |           |         |                                                       |
5008 |           |         | -  Section 4 and section 6: command processing:       |
5009 |           |         |                                                       |
5010 |           |         |    -  Added commandListEntry which is an object that  |
5011 |           |         |       references the command object.                  |
5012 |           |         |                                                       |
5013 |           |         |    -  commandList: changed commandList to contain an  |
5014 |           |         |       array of commandListEntry objects.              |
5015 |           |         |                                                       |
5016 |           |         |    -  Updated sample responses in section 6 where     |
5017 |           |         |       commands are used                               |
5018 |           |         |                                                       |
5019 |           |         | -  Section 4: commonEventHeader:                      |
5020 |           |         |                                                       |
5021 |           |         |    -  Incremented version to 1.2                      |
5022 |           |         |                                                       |
5023 |           |         |    -  added two new values to the ‘domain’            |
5024 |           |         |       enumeration: ‘serviceEvents’ and ‘signaling     |
5025 |           |         |                                                       |
5026 |           |         | -  Section 4: added endOfCallVqmSummaries datatype    |
5027 |           |         |                                                       |
5028 |           |         | -  Section 4: ‘event’: added two fields:              |
5029 |           |         |    ‘serviceEventsFields’ and ‘signalingFields’        |
5030 |           |         |                                                       |
5031 |           |         | -  Section 4: added ‘eventInstanceIdentifier’datatype |
5032 |           |         |                                                       |
5033 |           |         | -  Section 4: CommonEventListener only:               |
5034 |           |         |    internalHeaderFields:                              |
5035 |           |         |                                                       |
5036 |           |         |    -  added ‘internalHeaderFieldsVersion’(initially   |
5037 |           |         |       set to 1.1)                                     |
5038 |           |         |                                                       |
5039 |           |         |    -  added ‘correlationFirstEpoch’                   |
5040 |           |         |                                                       |
5041 |           |         |    -  added 'closedLoopControlName'                   |
5042 |           |         |                                                       |
5043 |           |         |    -  added 'closedLoopFlag'                          |
5044 |           |         |                                                       |
5045 |           |         |    -  added 'collectorTimeStamp'                      |
5046 |           |         |                                                       |
5047 |           |         |    -  added 'eventTag'                                |
5048 |           |         |                                                       |
5049 |           |         |    -  added ‘tenantName’                              |
5050 |           |         |                                                       |
5051 |           |         |    -  changed 'operationalStatus' to 'inMaint'        |
5052 |           |         |                                                       |
5053 |           |         |    -  added required fields in the schema to match the|
5054 |           |         |       word doc: 'equipmentNameCode', 'equipmentType', |
5055 |           |         |       'equipmentVendor', 'inMaint', 'provStatus'      |
5056 |           |         |                                                       |
5057 |           |         | -  Section 4: added ‘marker’datatype                  |
5058 |           |         |                                                       |
5059 |           |         | -  Section 4: added ‘midCallRtcp’ datatype            |
5060 |           |         |                                                       |
5061 |           |         | -  Section 4: mobileFlowFields:                       |
5062 |           |         |                                                       |
5063 |           |         |    -  added ‘mobileFlowFieldsVersion’(initially set to|
5064 |           |         |       1.1)                                            |
5065 |           |         |                                                       |
5066 |           |         | -  Section 4: added ‘serviceEventsFields’datatype     |
5067 |           |         |                                                       |
5068 |           |         | -  Section 4: added ‘signalingFields’ datatype        |
5069 |           |         |                                                       |
5070 |           |         | -  Section 4: syslogFields:                           |
5071 |           |         |                                                       |
5072 |           |         |    -  Incremented syslogFieldsVersion to 1.2          |
5073 |           |         |                                                       |
5074 |           |         |    -  added 'syslogPri'                               |
5075 |           |         |                                                       |
5076 |           |         |    -  added 'syslogSev'                               |
5077 |           |         |                                                       |
5078 |           |         |    -  added ‘syslogSdId’                              |
5079 |           |         |                                                       |
5080 |           |         | -  Section 4: thresholdCrossingAlertFields:           |
5081 |           |         |                                                       |
5082 |           |         |    -  Incremented thresholdCrossingFieldsVersion to   |
5083 |           |         |       1.2                                             |
5084 |           |         |                                                       |
5085 |           |         |    -  added 'additionalFields' which is an optional   |
5086 |           |         |       list of name value pairs.                       |
5087 |           |         |                                                       |
5088 |           |         | -  Section 4: schema v26.0 embedded reflecting the    |
5089 |           |         |    above changes.                                     |
5090 |           |         |                                                       |
5091 |           |         | -  Section 6 and Section 2: changed all sample        |
5092 |           |         |    requests to use /v3 in the REST Resource URL.      |
5093 +-----------+---------+-------------------------------------------------------+
5094 | 12/1/2016 | v3.1    | -  Section 6: Updated the call flow diagrams to show  |
5095 |           |         |    ‘v3’                                               |
5096 +-----------+---------+-------------------------------------------------------+
5097 | 1/5/2017  | v4.0    | -  Combined the Generic Event Listener and Vendor     |
5098 |           |         |    Event Listener into a single API service           |
5099 |           |         |    specification with version 4.0.                    |
5100 |           |         |                                                       |
5101 |           |         | -  Changed the title to VES (Virtual Function Event   |
5102 |           |         |    Streaming) Listener.                               |
5103 |           |         |                                                       |
5104 |           |         | -  Changed references to 'generic event' to 'common   |
5105 |           |         |    event' or 'VES event' (depending on the context)   |
5106 |           |         |    throughout the document.                           |
5107 |           |         |                                                       |
5108 |           |         | -  Used the Legal Disclaimer from the Vendor Event    |
5109 |           |         |    Listener on the back of the title page.            |
5110 |           |         |                                                       |
5111 |           |         | -  Section 1: Introduction changes:                   |
5112 |           |         |                                                       |
5113 |           |         |    -  modified wording to reference 'VES'             |
5114 |           |         |                                                       |
5115 |           |         |    -  removed the 'Audience' section, which described |
5116 |           |         |       various AT&T groups the documented was intended |
5117 |           |         |       for                                             |
5118 |           |         |                                                       |
5119 |           |         |    -  tweaked the naming standards for event types to |
5120 |           |         |       clarify the purpose of the naming conventions   |
5121 |           |         |                                                       |
5122 |           |         | -  Section 3: Resource Structure: added a sentence    |
5123 |           |         |    describing the FQDN and port used in the resource  |
5124 |           |         |    URL.                                               |
5125 |           |         |                                                       |
5126 |           |         | -  Section 4: Common Event Format changes:            |
5127 |           |         |                                                       |
5128 |           |         |    -  renamed the section to 'Common Event Format'    |
5129 |           |         |       from 'Generic Event Format'                     |
5130 |           |         |                                                       |
5131 |           |         |    -  reorganized the datatypes into separate sections|
5132 |           |         |       ; sections were defined for each of the domains |
5133 |           |         |       as well as for common event, common event header|
5134 |           |         |       and command list processing                     |
5135 |           |         |                                                       |
5136 |           |         |    -  codecSelected datatype: removed this datatype   |
5137 |           |         |                                                       |
5138 |           |         |    -  codecSelectedTranscoding datatype: removed this |
5139 |           |         |       datatype                                        |
5140 |           |         |                                                       |
5141 |           |         |    -  command datatype: added an enumerated value to  |
5142 |           |         |       commandType: 'heartbeatIntervalChange'          |
5143 |           |         |                                                       |
5144 |           |         |    -  commonEventHeader: added internalHeaderFields to|
5145 |           |         |       the commonEventHeader, defined as "Fields (not  |
5146 |           |         |       supplied by event sources) that the VES Event   |
5147 |           |         |       Listener service can use to enrich the event if |
5148 |           |         |       needed for efficient internal processing. This  |
5149 |           |         |       is an empty object which is intended to be      |
5150 |           |         |       defined separately by each provider implementing|
5151 |           |         |       the VES Event Listener."                        |
5152 |           |         |                                                       |
5153 |           |         |    -  commonEventHeader: removed two enumerated values|
5154 |           |         |       , 'serviceEvents' and 'signaling' from the      |
5155 |           |         |       domain enumeration                              |
5156 |           |         |                                                       |
5157 |           |         |    -  commonEventHeader version: incremented the      |
5158 |           |         |       version to 2.0                                  |
5159 |           |         |                                                       |
5160 |           |         |    -  endOfCallVqmSummaries datatype: removed this    |
5161 |           |         |       datatype                                        |
5162 |           |         |                                                       |
5163 |           |         |    -  event: changed the description of the event     |
5164 |           |         |       datatype to: "fields which constitute the ‘root |
5165 |           |         |       level’ of the common event format"              |
5166 |           |         |                                                       |
5167 |           |         |    -  event: removed 'serviceEventFields' and         |
5168 |           |         |       'signalingFields' from the definition           |
5169 |           |         |                                                       |
5170 |           |         |    -  event: fixed a misspelling of                   |
5171 |           |         |       ‘thresholdCrossingAlertFields’, which was only  |
5172 |           |         |       present in the Word document                    |
5173 |           |         |                                                       |
5174 |           |         |    -  eventInstanceIdentifier datatype: removed this  |
5175 |           |         |       datatype                                        |
5176 |           |         |                                                       |
5177 |           |         |    -  internalHeaderFIelds datatype: defined this as  |
5178 |           |         |       follows: "The internalHeaderFields datatype is  |
5179 |           |         |       an undefined object which can contain           |
5180 |           |         |       arbitrarily complex JSON structures. It is      |
5181 |           |         |       intended to be defined separately by each       |
5182 |           |         |       provider implementing the VES Event Listener.   |
5183 |           |         |       The fields in internalHeaderFields are not      |
5184 |           |         |       provided by any event source but instead are    |
5185 |           |         |       added by the VES Event Listener service itself  |
5186 |           |         |       as part of an event enrichment process necessary|
5187 |           |         |       for efficient internal processing of events     |
5188 |           |         |       received by the VES Event Listener"             |
5189 |           |         |                                                       |
5190 |           |         |    -  marker datatype: removed this datatype          |
5191 |           |         |                                                       |
5192 |           |         |    -  measurementsForVfScalingFields datatype:        |
5193 |           |         |       clarified that memoryConfigured and memoryUsed  |
5194 |           |         |       are measured in MB                              |
5195 |           |         |                                                       |
5196 |           |         |    -  midCallRtcp datatype: removed this datatype     |
5197 |           |         |                                                       |
5198 |           |         |    -  mobileFlowFields datatype: added                |
5199 |           |         |       ‘additionalFields’                              |
5200 |           |         |                                                       |
5201 |           |         |    -  mobileFlowFields datatype: incremented the      |
5202 |           |         |       version number for this field block to 1.2      |
5203 |           |         |                                                       |
5204 |           |         |    -  serviceEventsFields datatype: removed this      |
5205 |           |         |       datatype                                        |
5206 |           |         |                                                       |
5207 |           |         |    -  signalingFields datatype: removed this datatype |
5208 |           |         |                                                       |
5209 |           |         |    -  syslogFields: added three fields to the schema  |
5210 |           |         |       that were previously described in the document  |
5211 |           |         |       but not incorporated into the schema: syslogPri,|
5212 |           |         |       syslogSev, syslogSdId                           |
5213 |           |         |                                                       |
5214 |           |         |    -  syslogFields version: incremented the version to|
5215 |           |         |       2.0                                             |
5216 |           |         |                                                       |
5217 |           |         | -  Modified the Common Event Format JSON schema to    |
5218 |           |         |    v27.0 to incorporate the above changes. Also, added|
5219 |           |         |    the AT&T Copyright Notice from the top of the      |
5220 |           |         |    retired CommonEventFormat\_Vendors schema.         |
5221 |           |         |                                                       |
5222 |           |         | -  Section 6 and 2: changed all sample requests to use|
5223 |           |         |    /v4 in the REST Resource URL and call flow diagrams|
5224 |           |         |                                                       |
5225 |           |         | -  Section 6.1.3: added a row to the table in this    |
5226 |           |         |    section describing the ‘heartbeatIntervalChange’   |
5227 |           |         |    command.                                           |
5228 |           |         |                                                       |
5229 |           |         | -  Section 6.1.4: added this new section describing   |
5230 |           |         |    expectations for buffering of events should all    |
5231 |           |         |    REST resource URL FQDNs be unreachable.            |
5232 |           |         |                                                       |
5233 |           |         | -  Section 6 Sample Requests: modified all sample     |
5234 |           |         |    requests showing the return of a commandList toward|
5235 |           |         |    the event source to incorporate a                  |
5236 |           |         |    heartbeatIntervalChange command; also corrected the|
5237 |           |         |    spelling in the samples for the                    |
5238 |           |         |    measurementIntervalChange command.                 |
5239 |           |         |                                                       |
5240 |           |         | -  Section 7: Contributors: removed this section      |
5241 +-----------+---------+-------------------------------------------------------+
5242 | 3/21/2017 | v4.1    | -  JSON Schema changes to produce v27.2 (note: an     |
5243 |           |         |    earlier draft version of v27.1 had been distributed|
5244 |           |         |    to a few individuals):                             |
5245 |           |         |                                                       |
5246 |           |         |    -  To support use of the schema with event batches,|
5247 |           |         |       removed the following statement near the end of |
5248 |           |         |       the schema file:                                |
5249 |           |         |                                                       |
5250 |           |         |     "required": [ "event" ]                           |
5251 |           |         |                                                       |
5252 |           |         | -  Fixed the characters used in some of the quotes    |
5253 |           |         |                                                       |
5254 |           |         | -  Fixed some typos in the descriptions.              |
5255 |           |         |                                                       |
5256 |           |         | -  Removed the booleans, which were non-essential and |
5257 |           |         |    which were causing problems across different       |
5258 |           |         |    implementations.                                   |
5259 |           |         |                                                       |
5260 |           |         | -  Section 4.5.7 measurementsForVfScalingFields:      |
5261 |           |         |                                                       |
5262 |           |         |    -  Fixed the spelling of measurementsForVf\        |
5263 |           |         |       ScalingFields in the Word document              |
5264 |           |         |                                                       |
5265 |           |         | -  Section 2 and 6 sample requests and responses:     |
5266 |           |         |                                                       |
5267 |           |         |    -  Removed quotes from numbers: sequence, and      |
5268 |           |         |       first/lastEpochMicrosec.                        |
5269 |           |         |                                                       |
5270 |           |         |    -  Fixed all quote characters, some of which were  |
5271 |           |         |       using unusual symbols that wouldn’t validate    |
5272 |           |         |       with the json-schema Python package.            |
5273 |           |         |                                                       |
5274 |           |         | -  Section 6.2.6.1, 6.3.6.1, 6.4.6.1 sample requests: |
5275 |           |         |                                                       |
5276 |           |         |    -  Added an alarmAdditionalInformation field array |
5277 |           |         |       to the sample requests.                         |
5278 |           |         |                                                       |
5279 |           |         |    -  Added missing commas.                           |
5280 |           |         |                                                       |
5281 |           |         | -  Section 6.5.6.1 provideThrottlingState sample      |
5282 |           |         |    requests:                                          |
5283 |           |         |                                                       |
5284 |           |         |    -  Fixed the eventDomainThrottleSpecificationList  |
5285 |           |         |       to pass an array of anonymous eventDomain\      |
5286 |           |         |       ThrottleSpecification objects.                  |
5287 |           |         |                                                       |
5288 |           |         |    -  Added missing quotes.                           |
5289 |           |         |                                                       |
5290 |           |         | -  Fixed the suppressedNvPairsList to pass an array of|
5291 |           |         |    anonymous suppressedNvPairs objects.               |
5292 +-----------+---------+-------------------------------------------------------+
5293 | 4/14/2017 | v5.0    | -  Section 1 Introduction:                            |
5294 |           |         |                                                       |
5295 |           |         |    -  Clarified the Introduction (Section 1).         |
5296 |           |         |                                                       |
5297 |           |         |    -  Changed Section 1.1 title from ‘Terminology’ to |
5298 |           |         |       'Event Registration' and referenced the YAML    |
5299 |           |         |       event registration format, defined in a separate|
5300 |           |         |       document.                                       |
5301 |           |         |                                                       |
5302 |           |         |    -  Clarified naming standards for eventName.       |
5303 |           |         |                                                       |
5304 |           |         | -  Section 3: updated the REST resource structure     |
5305 |           |         |                                                       |
5306 |           |         | -  Section 4.1 command list processing datatypes:     |
5307 |           |         |                                                       |
5308 |           |         |    -  Got rid of commandListEntry and returned        |
5309 |           |         |       commandList to a simple array of commands.      |
5310 |           |         |                                                       |
5311 |           |         |    -  Added heartbeatInterval to the command datatype.|
5312 |           |         |                                                       |
5313 |           |         |    -  Changed the datatype of measurementInterval from|
5314 |           |         |       number to integer.                              |
5315 |           |         |                                                       |
5316 |           |         | -  Section 4.2 common event datatypes:                |
5317 |           |         |                                                       |
5318 |           |         |    -  event dataType: Added heartbeatFields,          |
5319 |           |         |       sipSignalingFields and voiceQualityFields to the|
5320 |           |         |       event datatype as optional field blocks         |
5321 |           |         |                                                       |
5322 |           |         |    -  Added jsonObject which provides a json object   |
5323 |           |         |       schema, name and other meta-information along   |
5324 |           |         |       with one or more object instances.              |
5325 |           |         |                                                       |
5326 |           |         |    -  Added jsonObjectInstance which provides         |
5327 |           |         |       meta-information about an instance of a         |
5328 |           |         |       jsonObject along with the actual object instance|
5329 |           |         |                                                       |
5330 |           |         |    -  Added the ‘key’ datatype                        |
5331 |           |         |                                                       |
5332 |           |         |    -  Added the namedArrayOfFields datatype           |
5333 |           |         |                                                       |
5334 |           |         |    -  Added vendorVnfNameFields                       |
5335 |           |         |                                                       |
5336 |           |         | -  Section 4.3 common event header fields:            |
5337 |           |         |                                                       |
5338 |           |         |    -  Add two new enumerations to domain:             |
5339 |           |         |       ‘sipSignaling’ and ‘voiceQuality’               |
5340 |           |         |                                                       |
5341 |           |         |    -  Renamed eventType to eventName. Note that the   |
5342 |           |         |       original usage of eventType was formally        |
5343 |           |         |       described in the Introduction back on 2/11/2016 |
5344 |           |         |       with v1.9.                                      |
5345 |           |         |                                                       |
5346 |           |         |    -  Made eventName a required field                 |
5347 |           |         |                                                       |
5348 |           |         |    -  Created a new field called eventType with a     |
5349 |           |         |       meaning that is different than the old eventType|
5350 |           |         |                                                       |
5351 |           |         |    -  Removed functionalRole, which was replaced by   |
5352 |           |         |       the following two fields.                       |
5353 |           |         |                                                       |
5354 |           |         |    -  Added nfNamingCode                              |
5355 |           |         |                                                       |
5356 |           |         |    -  Added nfcNamingCode                             |
5357 |           |         |                                                       |
5358 |           |         |    -  Changed version to 3.0 (major version change)   |
5359 |           |         |       and made it a required field                    |
5360 |           |         |                                                       |
5361 |           |         | -  Section 4.4: faultFields:                          |
5362 |           |         |                                                       |
5363 |           |         |    -  added one optional field: eventCategory         |
5364 |           |         |                                                       |
5365 |           |         |    -  made faultFieldsVersion a required field        |
5366 |           |         |                                                       |
5367 |           |         |    -  changed faultFieldsVersion to 2.0 (major version|
5368 |           |         |       change)                                         |
5369 |           |         |                                                       |
5370 |           |         |    -  fixed a typo on the spelling of alarmInterfaceA |
5371 |           |         |                                                       |
5372 |           |         |    -  clarified field descriptions                    |
5373 |           |         |                                                       |
5374 |           |         | -  Section 4.5: added heartbeatFields datatype which  |
5375 |           |         |    can be used to communicate heartbeatInterval. Note:|
5376 |           |         |    this change was previously made in v4.2            |
5377 |           |         |                                                       |
5378 |           |         | -  Section 4.6 measurements for vf scaling datatypes: |
5379 |           |         |    changed the following datatypes from number to     |
5380 |           |         |    integer:                                           |
5381 |           |         |                                                       |
5382 |           |         |    -  In measurementsForVfScalingFields:              |
5383 |           |         |       concurrentSessions, configuredEntities,         |
5384 |           |         |       numberOfMediaPortsInUse, vnfcScalingMetric      |
5385 |           |         |                                                       |
5386 |           |         |    -  In codecsInUse: numberInUse                     |
5387 |           |         |                                                       |
5388 |           |         |    -  In featuresInUse: featureUtilization            |
5389 |           |         |                                                       |
5390 |           |         | -  Section 4.6.2 modified cpuUsage                    |
5391 |           |         |                                                       |
5392 |           |         | -  Section 4.6.3 added diskUsage                      |
5393 |           |         |                                                       |
5394 |           |         | -  Section 4.6.7 measurementsForVfScalingFields:      |
5395 |           |         |                                                       |
5396 |           |         |    -  fixed the spelling of the measurementsForVf\    |
5397 |           |         |       ScalingFields in the Word document              |
5398 |           |         |                                                       |
5399 |           |         |    -  added additionalFields, which is an array of    |
5400 |           |         |       fields (i.e., name-value pairs)                 |
5401 |           |         |                                                       |
5402 |           |         |    -  changed additionalMeasurements to reference the |
5403 |           |         |       common datatype namedArrayOfFields (instead of  |
5404 |           |         |       referencing measurementGroup)                   |
5405 |           |         |                                                       |
5406 |           |         |    -  added additionalObjects which is an array of    |
5407 |           |         |       jsonObjects described by name, keys and schema  |
5408 |           |         |                                                       |
5409 |           |         |    -  deleted aggregateCpuUsage                       |
5410 |           |         |                                                       |
5411 |           |         |    -  added diskUsageArray                            |
5412 |           |         |                                                       |
5413 |           |         |    -  deleted measurementGroup (which was replaced by |
5414 |           |         |       the common datatype: namedArrayOfFields         |
5415 |           |         |                                                       |
5416 |           |         |    -  added memoryUsageArray                          |
5417 |           |         |                                                       |
5418 |           |         |    -  deleted memoryConfigured and memoryUsed         |
5419 |           |         |                                                       |
5420 |           |         |    -  deleted errors and vNicUsageArray               |
5421 |           |         |                                                       |
5422 |           |         |    -  added vNicPerformanceArray                      |
5423 |           |         |                                                       |
5424 |           |         |    -  changed the measurementsForVfScalingVersion to  |
5425 |           |         |       2.0 (major version change) and made it a        |
5426 |           |         |       required field. Also changed the name of this   |
5427 |           |         |       version field in the Word document to match that|
5428 |           |         |       in the JSON schema.                             |
5429 |           |         |                                                       |
5430 |           |         | -  Section 4.6.8 added memoryUsage                    |
5431 |           |         |                                                       |
5432 |           |         | -  Section 4.6.9 vNicPerformance: replaced vNicUsage  |
5433 |           |         |    and errors with vNicPerformance                    |
5434 |           |         |                                                       |
5435 |           |         | -  Section 4.7 mobile flow fields changes:            |
5436 |           |         |                                                       |
5437 |           |         |    -  Made mobileFlowFieldsVersion a required field   |
5438 |           |         |       and changed the mobileFlowFieldsVersion to 2.0  |
5439 |           |         |       (major version change).                         |
5440 |           |         |                                                       |
5441 |           |         |    -  Changed the datatype of flowActivationTime and  |
5442 |           |         |       flowDeactivationTime in the Word doc to string. |
5443 |           |         |                                                       |
5444 |           |         |    -  changed the following datatypes from number to  |
5445 |           |         |       integer: otherEndpointPort,                     |
5446 |           |         |       reportingEndpointPort, samplingAlgorithm        |
5447 |           |         |                                                       |
5448 |           |         | -  Section 4.8: otherFields:                          |
5449 |           |         |                                                       |
5450 |           |         |    -  Added otherFieldsVersion (set at 1.1)           |
5451 |           |         |                                                       |
5452 |           |         |    -  Added hashOfNameValuePairArrays                 |
5453 |           |         |                                                       |
5454 |           |         |    -  Added jsonObjects                               |
5455 |           |         |                                                       |
5456 |           |         |    -  Added nameValuePairs                            |
5457 |           |         |                                                       |
5458 |           |         | -  Section 4.9: added sipSignaling domain datatypes   |
5459 |           |         |    with 4.8.1 sipSignalingFields. sipSignalingFields\ |
5460 |           |         |    Version is set at 1.0                              |
5461 |           |         |                                                       |
5462 |           |         | -  Section 4.10 stateChangeFields: made stateChange\  |
5463 |           |         |    FieldsVersion a required field and set it to 2.0   |
5464 |           |         |    (major version change).                            |
5465 |           |         |                                                       |
5466 |           |         | -  Section 4.11 syslogFields:                         |
5467 |           |         |                                                       |
5468 |           |         |    -  Changed the following datatypes from number to  |
5469 |           |         |       integer: syslogFacility, syslogPri              |
5470 |           |         |                                                       |
5471 |           |         |    -  Changed additionalFields from a field [ ] to a  |
5472 |           |         |       string which takes name=value pairs delimited by|
5473 |           |         |       a pipe symbol.                                  |
5474 |           |         |                                                       |
5475 |           |         |    -  Changed syslogFieldsVersion to 3.0 (major       |
5476 |           |         |       version change) and made it a required field    |
5477 |           |         |                                                       |
5478 |           |         |    -  Made syslogSev an enumerated string (previously |
5479 |           |         |       just a string)                                  |
5480 |           |         |                                                       |
5481 |           |         | -  Section 4.12 thresholdCrossingAlertFields: made    |
5482 |           |         |    thresholdCrossingFieldsVersion a required field and|
5483 |           |         |    set it to 2.0 (major version change).              |
5484 |           |         |                                                       |
5485 |           |         | -  Section 4.132: added voice quality domain datatypes|
5486 |           |         |    with 4.13.1 endOfCallVqmSummaries and 4.13.2       |
5487 |           |         |    voiceQualityFields. voiceQualityFieldsVersion is   |
5488 |           |         |    set at 1.0                                         |
5489 |           |         |                                                       |
5490 |           |         | -  JSON Schema: changed the schema to v28.0 and       |
5491 |           |         |    incorporated all of the changes above.             |
5492 |           |         |                                                       |
5493 |           |         | -  Additional JSON Schema changes that are part of    |
5494 |           |         |    v28: Note: The following changes are provided      |
5495 |           |         |    relative to API Spec v4.0 (which embedded JSON     |
5496 |           |         |    schema v27.0), but they were also made in an       |
5497 |           |         |    interim release v4.1 (which embedded JSON schema   |
5498 |           |         |    v27.2):                                            |
5499 |           |         |                                                       |
5500 |           |         |    -  To support use of the schema with event batches,|
5501 |           |         |       removed the following statement near the end of |
5502 |           |         |       the schema file:                                |
5503 |           |         |                                                       |
5504 |           |         |     "required": [ "event" ]                           |
5505 |           |         |                                                       |
5506 |           |         | -  Fixed the characters used in some of the quotes    |
5507 |           |         |                                                       |
5508 |           |         | -  Fixed some typos in the descriptions.              |
5509 |           |         |                                                       |
5510 |           |         | -  Removed the booleans, which were non-essential and |
5511 |           |         |    which were causing problems across different       |
5512 |           |         |    implementations.                                   |
5513 |           |         |                                                       |
5514 |           |         | -  Section 2 and 6 sample requests and responses (also|
5515 |           |         |    incorporated in interim release 4.1):              |
5516 |           |         |                                                       |
5517 |           |         |    -  Removed quotes from numbers: sequence, and      |
5518 |           |         |       first/lastEpochMicrosec.                        |
5519 |           |         |                                                       |
5520 |           |         |    -  Fixed all quote characters, some of which were  |
5521 |           |         |       using unusual symbols that wouldn’t validate    |
5522 |           |         |       with the json-schema Python package.            |
5523 |           |         |                                                       |
5524 |           |         | -  Section 2 and 6 sample requests and responses (only|
5525 |           |         |    in v5.0):                                          |
5526 |           |         |                                                       |
5527 |           |         |    -  Changed the version numbers in the URL string.  |
5528 |           |         |                                                       |
5529 |           |         |    -  Added nfNamingCode and nfcNamingCode and removed|
5530 |           |         |       functionalRole                                  |
5531 |           |         |                                                       |
5532 |           |         | -  Section 6 call flows: updated the version number   |
5533 |           |         |    (only in v5.0).                                    |
5534 |           |         |                                                       |
5535 |           |         | -  Section 6: removed the publishSpecificTopic        |
5536 |           |         |    operation                                          |
5537 |           |         |                                                       |
5538 |           |         | -  Section 6.1.4: Buffering: clarified event source   |
5539 |           |         |    expectations for buffering (only in v5.0).         |
5540 |           |         |                                                       |
5541 |           |         | -  Section 6.2.6.1, 6.3.6.1 sample requests (also     |
5542 |           |         |    incorporated in interim release 4.1):              |
5543 |           |         |                                                       |
5544 |           |         |    -  Added an alarmAdditionalInformation field array |
5545 |           |         |       to the sample requests.                         |
5546 |           |         |                                                       |
5547 |           |         |    -  Added missing commas.                           |
5548 |           |         |                                                       |
5549 |           |         | -  Section 6.2.6.3, 6.3.6.3 commandList sample        |
5550 |           |         |    responses (only in v5.0):                          |
5551 |           |         |                                                       |
5552 |           |         |    -  Fixed the commandList sample responses to pass  |
5553 |           |         |       an array of anonymous command objects (rather   |
5554 |           |         |       than an array of commandListEntry objects).     |
5555 |           |         |                                                       |
5556 |           |         |    -  Fixed the heartbeatIntervalChange commandType to|
5557 |           |         |       pass a heartbeatInterval value instead of a     |
5558 |           |         |       measurementInterval value.                      |
5559 |           |         |                                                       |
5560 |           |         |    -  Removed quotes from the measurementInterval and |
5561 |           |         |       heartbeatInterval values since they are numbers.|
5562 |           |         |                                                       |
5563 |           |         | -  Section 6.4.6.1 provideThrottlingState sample      |
5564 |           |         |    requests(also incorporated in interim release 4.1):|
5565 |           |         |                                                       |
5566 |           |         |    -  Fixed the eventDomainThrottleSpecificationList  |
5567 |           |         |       to pass an array of anonymous                   |
5568 |           |         |       eventDomainThrottleSpecification objects.       |
5569 |           |         |                                                       |
5570 |           |         |    -  Added missing quotes.                           |
5571 |           |         |                                                       |
5572 |           |         |    -  Fixed the suppressedNvPairsList to pass an array|
5573 |           |         |       of anonymous suppressedNvPairs objects (also    |
5574 |           |         |       incorporated in interim release 4.1).           |
5575 +-----------+---------+-------------------------------------------------------+
5576 | 5/22/2017 | v5.1    | -  Footers: removed proprietary markings and updated  |
5577 |           |         |    copyrights to 2017                                 |
5578 |           |         |                                                       |
5579 |           |         | -  Section 4.2.3: field:                              |
5580 |           |         |                                                       |
5581 |           |         |    -  Changed the API spec to make ‘name’ and ‘value’ |
5582 |           |         |       start with lowercase letters. Note: this did not|
5583 |           |         |       affect the schema, which already had them as    |
5584 |           |         |       lowercase.                                      |
5585 |           |         |                                                       |
5586 |           |         | -  JSON Schema:                                       |
5587 |           |         |                                                       |
5588 |           |         |    -  measurementGroup: deleted this object since it  |
5589 |           |         |       was replaced with ‘namedArrayOfFields’ in v28.0 |
5590 |           |         |       and was no longer being used.                   |
5591 |           |         |                                                       |
5592 |           |         |    -  namedArrayOfFields: Fixed an error in the       |
5593 |           |         |       specification of required fields: from          |
5594 |           |         |       ‘measurements’ to ‘arrayOfFields’.              |
5595 |           |         |                                                       |
5596 |           |         | -  Changed the version of the JSON schema to 28.1     |
5597 +-----------+---------+-------------------------------------------------------+
5598 | 6/14/2017 | v5.2    | -  JSON Schema: created v28.2 by changing the field   |
5599 |           |         |    descriptions in the memoryUsage object to refer to |
5600 |           |         |    ‘kibibytes’ instead of ‘kilobytes’. There were no  |
5601 |           |         |    changes to the 28.1 structure.                     |
5602 |           |         |                                                       |
5603 |           |         | -  Word Document: measurementsForVfScaling Domain:    |
5604 |           |         |    memoryUsage object: changed the field descriptions |
5605 |           |         |    in this object to refer to ‘kibibytes’ instead of  |
5606 |           |         |    ‘kilobytes’. There were no changes to the          |
5607 |           |         |    memoryUsage structure.                             |
5608 |           |         |                                                       |
5609 |           |         | -  Reorganized the Word document to group the data    |
5610 |           |         |    structures in Section 4 into three broad categories|
5611 |           |         |    to better align with the VNF Guidelines            |
5612 |           |         |    documentation that has been prepared for vendors:  |
5613 |           |         |                                                       |
5614 |           |         |    -  Common Event Datatypes:                         |
5615 |           |         |                                                       |
5616 |           |         |       - Command List Processing Datatypes             |
5617 |           |         |                                                       |
5618 |           |         |       - Common Event Datatypes                        |
5619 |           |         |                                                       |
5620 |           |         |       - Common Event Header Datatypes                 |
5621 |           |         |                                                       |
5622 |           |         |    -  Technology Independent Datatypes:               |
5623 |           |         |                                                       |
5624 |           |         |       - ‘Fault Domain Datatypes                       |
5625 |           |         |                                                       |
5626 |           |         |       - ‘Heartbeat’ Domain Datatypes                  |
5627 |           |         |                                                       |
5628 |           |         |       - ‘Measurements For Vf Scaling’ Domain Datatypes|
5629 |           |         |                                                       |
5630 |           |         |       - ‘Other’ Domain Datatypes                      |
5631 |           |         |                                                       |
5632 |           |         |       - ‘State Change’ Domain Datatypes               |
5633 |           |         |                                                       |
5634 |           |         |       - ‘Syslog’ Domain Datatypes                     |
5635 |           |         |                                                       |
5636 |           |         |       - ‘Threshold Crossing Alert’ Domain Datatypes   |
5637 |           |         |                                                       |
5638 |           |         |    -  Technology Specify Datatypes:                   |
5639 |           |         |                                                       |
5640 |           |         |       - ‘Mobile Flow’ Domain Datatypes                |
5641 |           |         |                                                       |
5642 |           |         |       - ‘Sip Signaling’ Domain Datatypes              |
5643 |           |         |                                                       |
5644 |           |         |       - ‘Voice Quality’ Domain Datatypes              |
5645 |           |         |                                                       |
5646 |           |         | -  Section 6.1.3: Commands Toward Event Source        |
5647 |           |         |    Clients: Added a statement: "Note: Vendors are not |
5648 |           |         |    currently required to implement support for command|
5649 |           |         |    processing; in addition, command processing may be |
5650 |           |         |    supported by an App-C interface in future."        |
5651 +-----------+---------+-------------------------------------------------------+
5652 | 6/22/2017 | v5.3    | -  JSON Schema: created v28.3 by correcting an error  |
5653 |           |         |    in the sipSignalingFields: changed                 |
5654 |           |         |    vnfVendorNameFields to vendorVnfNameFields.        |
5655 |           |         |    Embedded the new schema at the top of section 4.   |
5656 +-----------+---------+-------------------------------------------------------+
5657 | 9/12/2017 | v5.4    | -  Note: There no changes to any data structures or   |
5658 |           |         |    operations in this version.                        |
5659 |           |         |                                                       |
5660 |           |         | -  JSON Schema: created v28.4 embedded at the top of  |
5661 |           |         |    section 4:                                         |
5662 |           |         |                                                       |
5663 |           |         |    -  Added a reference to eventList in the properties|
5664 |           |         |       defined under the schema title. This enables the|
5665 |           |         |       schema to correctly validate event batches in   |
5666 |           |         |       addition to just events.                        |
5667 |           |         |                                                       |
5668 |           |         |    -  Moved the schema title to the top of the schema |
5669 |           |         |       and changed the text from "Event Listener" to   |
5670 |           |         |       "VES Event Listener"                            |
5671 |           |         |                                                       |
5672 |           |         |    -  Added a schema header block under the title to  |
5673 |           |         |       clearly communicate the schema version,         |
5674 |           |         |       associated API and last-modified information    |
5675 |           |         |                                                       |
5676 |           |         | -  Changed the date in the copyright notice to 2017   |
5677 +-----------+---------+-------------------------------------------------------+
5678 | 9/19/2017 | v5.4.1  | -  Note: There no changes to any data structures or   |
5679 |           |         |    operations in this version.                        |
5680 |           |         |                                                       |
5681 |           |         | -  Back of Cover Page: updated the license and        |
5682 |           |         |    copyright notice to comply with ONAP guidelines    |
5683 |           |         |                                                       |
5684 |           |         | -  JSON Schema: updated the JSON schema to v28.4.1:   |
5685 |           |         |    updated the copyright notice and license to comply |
5686 |           |         |    with ONAP guidelines                               |
5687 +-----------+---------+-------------------------------------------------------+
5688 | 6/28/2018 | v6.0    | -  Added contributors to the title page.              |
5689 |           |         |                                                       |
5690 |           |         | -  Updated references to ‘vnf’ ‘vnfc’ to either ‘nf’  |
5691 |           |         |    and ‘nfc’ or ‘xNf’ and ‘xNfc’ to generalize support|
5692 |           |         |    across both vnfs and pnfs.                         |
5693 |           |         |                                                       |
5694 |           |         | -  Section 1:                                         |
5695 |           |         |                                                       |
5696 |           |         |    -  clarified the meaning of the VES acronym        |
5697 |           |         |                                                       |
5698 |           |         |    -  changed references from ASDC to SDC and from MSO|
5699 |           |         |       to SO                                           |
5700 |           |         |                                                       |
5701 |           |         |    -  clarified the requirements for eventNames.      |
5702 |           |         |                                                       |
5703 |           |         |    -  Added a section of EventId use case examples    |
5704 |           |         |                                                       |
5705 |           |         |    -  Added a new section on measurement expansion    |
5706 |           |         |       fields                                          |
5707 |           |         |                                                       |
5708 |           |         |    -  Added a new section of syslogs                  |
5709 |           |         |                                                       |
5710 |           |         |    -  clarified the versioning section and referenced |
5711 |           |         |       the new API Versioning section in section 6.    |
5712 |           |         |                                                       |
5713 |           |         |    -  Added a list of all the latest field block      |
5714 |           |         |       version numbers in this version of the API spec.|
5715 |           |         |                                                       |
5716 |           |         | -  Section 2: updated the sample to show use of new   |
5717 |           |         |    HTTP versioning headers. Added a note indicating   |
5718 |           |         |    that support for mutual SSL would be provided in   |
5719 |           |         |    future.                                            |
5720 |           |         |                                                       |
5721 |           |         | -  Section 3: updated the resource structure remove   |
5722 |           |         |    the clientThrottlingState resource.                |
5723 |           |         |                                                       |
5724 |           |         | -  Section 4: hashMaps. Changed all name-value pair   |
5725 |           |         |    structures to hashMaps causing the following data  |
5726 |           |         |    model and JSON schema (to v29.0) changes:          |
5727 |           |         |                                                       |
5728 |           |         |    -  4.1.1: Common Event Datatypes:                  |
5729 |           |         |                                                       |
5730 |           |         |       -  removed "field" and added "hashMap"          |
5731 |           |         |                                                       |
5732 |           |         |       -  removed "namedArrayOfFields" and added       |
5733 |           |         |          "namedHashMap"                               |
5734 |           |         |                                                       |
5735 |           |         |       -  added arrayOfNamedHashMap                    |
5736 |           |         |                                                       |
5737 |           |         |       -  added arrayOfJsonObject                      |
5738 |           |         |                                                       |
5739 |           |         |    -  4.2.1: Fault Domain Datatypes:                  |
5740 |           |         |                                                       |
5741 |           |         |       -  changed the faultFields version to 3.0 (major|
5742 |           |         |          change)                                      |
5743 |           |         |                                                       |
5744 |           |         |       -  changed faultFields.alarmAdditional\         |
5745 |           |         |          Information to reference a hashMap           |
5746 |           |         |                                                       |
5747 |           |         |    -  4.2.2: Heartbeat Domain Datatypes:              |
5748 |           |         |                                                       |
5749 |           |         |       -  changed the heartbeatFieldsVersion to 2.0    |
5750 |           |         |          (major change)                               |
5751 |           |         |                                                       |
5752 |           |         |       -  changed heartbeatFields.additionalFields to  |
5753 |           |         |          reference a hashMap                          |
5754 |           |         |                                                       |
5755 |           |         |    -  4.2.3: Measurement Domain Datatypes:            |
5756 |           |         |                                                       |
5757 |           |         |       -  changed the measurementFieldsVersion to 3.0  |
5758 |           |         |          (major change)                               |
5759 |           |         |                                                       |
5760 |           |         |       -  changed measurementFields.additionalFields to|
5761 |           |         |          reference a hashMap                          |
5762 |           |         |                                                       |
5763 |           |         |       -  changed measurement.additionalMesurements to |
5764 |           |         |          reference a namedHashMap [ ]                 |
5765 |           |         |                                                       |
5766 |           |         |       -  modified measurementFields.featureUsageArray |
5767 |           |         |          to reference a hashmap and removed           |
5768 |           |         |          ‘featuresInUse’                              |
5769 |           |         |                                                       |
5770 |           |         |       -  added the following datatypes which are now  |
5771 |           |         |          referenced as items in arrays within         |
5772 |           |         |          measurementFields: hugePages, load,          |
5773 |           |         |          machineCheckException, processStats          |
5774 |           |         |                                                       |
5775 |           |         |    -  4.2.5: Other Domain Datatypes:                  |
5776 |           |         |                                                       |
5777 |           |         |       -  Change the otherFieldsVersion to 2.0 (major  |
5778 |           |         |          change)                                      |
5779 |           |         |                                                       |
5780 |           |         |       -  changed otherFields.nameValuePairs to        |
5781 |           |         |          reference a hashMap and renamed it hashMap   |
5782 |           |         |                                                       |
5783 |           |         |       -  changed otherFields.hashOfNameValuePair\     |
5784 |           |         |          Arrrays to reference a namedHashMap and      |
5785 |           |         |          renamed it arrayOfNamedHashMap               |
5786 |           |         |                                                       |
5787 |           |         |    -  4.2.7: State Change Domain Datatypes:           |
5788 |           |         |                                                       |
5789 |           |         |       -  changed the stateChangeFiledsVersion to 3.0  |
5790 |           |         |          (major change)                               |
5791 |           |         |                                                       |
5792 |           |         |       -  changed stateChangeFields.additionalFields to|
5793 |           |         |          reference a hashMap                          |
5794 |           |         |                                                       |
5795 |           |         |    -  4.2.9: Threshold Crossing Alert Domain          |
5796 |           |         |       Datatypes:                                      |
5797 |           |         |                                                       |
5798 |           |         |       -  changed the thresholdCrossingAlertFields\    |
5799 |           |         |          Version to 3.0 (major change)                |
5800 |           |         |                                                       |
5801 |           |         |       -  changed thresholdCrossingAlert\              |
5802 |           |         |          Fields.additionalFields to reference a       |
5803 |           |         |          hashMap                                      |
5804 |           |         |                                                       |
5805 |           |         |       -  counter: removed name and value elements and |
5806 |           |         |          replaced with a hashMap                      |
5807 |           |         |                                                       |
5808 |           |         |    -  4.3.1: Mobile Flow Domain Datatypes:            |
5809 |           |         |                                                       |
5810 |           |         |       -  changed the mobileFlowFieldsVersion to 3.0   |
5811 |           |         |          (major change)                               |
5812 |           |         |                                                       |
5813 |           |         |       -  changed mobileFlowFields.additionalFields to |
5814 |           |         |          reference a hashMap                          |
5815 |           |         |                                                       |
5816 |           |         |       -  gtpPerFlowMetrics: modified ipTosCountList to|
5817 |           |         |          reference hashmap                            |
5818 |           |         |                                                       |
5819 |           |         |       -  gtpPerFlowMetrics: modified mobileQciCos\    |
5820 |           |         |          CountList to reference hashmap               |
5821 |           |         |                                                       |
5822 |           |         |       -  gtpPerFlowMetrics: modified tcpFlagCountList |
5823 |           |         |          to reference hashmap                         |
5824 |           |         |                                                       |
5825 |           |         |    -  4.3.2: Sip Signaling Domain Datatypes:          |
5826 |           |         |                                                       |
5827 |           |         |       -  changed the sigSignalingFieldsVersion to 2.0 |
5828 |           |         |          (major change)                               |
5829 |           |         |                                                       |
5830 |           |         |       -  changed sipSignalingFields.additional\       |
5831 |           |         |          Information to reference a hashMap           |
5832 |           |         |                                                       |
5833 |           |         |    -  4.3.3: Voice Quality Domain Datatypes:          |
5834 |           |         |                                                       |
5835 |           |         |       -  change the voiceQualityFieldsVersion to 2.0  |
5836 |           |         |          (major change)                               |
5837 |           |         |                                                       |
5838 |           |         |       -  changed voiceQualityFields.additional\       |
5839 |           |         |          Information to reference a hashMap           |
5840 |           |         |                                                       |
5841 |           |         | -  Section 4: added notes at the top of section 4     |
5842 |           |         |    clarifying expectations and requirements for       |
5843 |           |         |    optional fields, extensible fields and keys sent   |
5844 |           |         |    through extensible fields.                         |
5845 |           |         |                                                       |
5846 |           |         | -  Common Event Data Types: Section 4.1.1.9 Changed   |
5847 |           |         |    vendorVnfNameFields to vendorNfNameFields; updated |
5848 |           |         |    Section 4.3.2 SipSignaling and 4.3.3 Voice Quality |
5849 |           |         |    to refer to the renamed object                     |
5850 |           |         |                                                       |
5851 |           |         | -  Common Event Header Section 4.1.2:                 |
5852 |           |         |                                                       |
5853 |           |         |    -  clarified the descriptions of eventId,          |
5854 |           |         |       reportingEntityName, sourceName and             |
5855 |           |         |       startEpochMicroseconds.                         |
5856 |           |         |                                                       |
5857 |           |         |    -  Added ‘notification’ and ‘pngRegistration’ to   |
5858 |           |         |       the domain enumeration.                         |
5859 |           |         |                                                       |
5860 |           |         |    -  added a new timeZoneOffsest field               |
5861 |           |         |                                                       |
5862 |           |         | -  Fault Domain Section 4.2.1: clarified the          |
5863 |           |         |    definitions of alarmCondition, eventSeverity and   |
5864 |           |         |    specificProblem                                    |
5865 |           |         |                                                       |
5866 |           |         | -  Measurements Domain Section 4.2.3: changed the name|
5867 |           |         |    of this domain from ‘measurementsForVfScaling’ to  |
5868 |           |         |    ‘measurement’                                      |
5869 |           |         |                                                       |
5870 |           |         |    -  measurementsForVfScaling measurement            |
5871 |           |         |                                                       |
5872 |           |         |    -  measurementsForVfScalingFields measurementFields|
5873 |           |         |                                                       |
5874 |           |         |    -  measurementsForVfScalingVersion                 |
5875 |           |         |       measurementFieldsVersion                        |
5876 |           |         |                                                       |
5877 |           |         |    -  the ‘mfvs’ abbreviation measurement             |
5878 |           |         |                                                       |
5879 |           |         | -  Measurements Domain Section 4.2.3 cpuUsage: added  |
5880 |           |         |    seven optional fields to this structure:           |
5881 |           |         |    cpuCapacityContention, cpuDemandAvg, cpuDemandMhz, |
5882 |           |         |    cpuDemandPct, cpuLatencyAverage, cpuOverheadAvg,   |
5883 |           |         |    cpuSwapWaitTime                                    |
5884 |           |         |                                                       |
5885 |           |         | -  Measurements Domain Section 4.2.3 diskUsage: added |
5886 |           |         |    ten optional fields to this structure:             |
5887 |           |         |    diskBusResets, diskCommandsAborted, diskCommandsAvg|
5888 |           |         |    , diskFlushRequests, diskFlushTime,                |
5889 |           |         |    diskReadCommandsAvg, diskTime, diskTotalRead\      |
5890 |           |         |    LatencyAvg, diskTotalWriteLatencyAvg, diskWrite\   |
5891 |           |         |    CommandsAvg                                        |
5892 |           |         |                                                       |
5893 |           |         | -  Measurements Domain Section 4.2.3: added a new     |
5894 |           |         |    ‘ipmi’ datatype along with following ‘supporting’  |
5895 |           |         |    datatypes: ipmiBaseboardTemperature, ipmiBaseboard\|
5896 |           |         |    VoltageRegulator, ipmiBattery, ipmiFan, ipmiGlobal\|
5897 |           |         |    AggregateTemperatureMargin, ipmiHsbp, ipmiNic,     |
5898 |           |         |    ipmiPowerSupply, ipmiProcessor, processorDimm\     |
5899 |           |         |    AggregateThermalMargin                             |
5900 |           |         |                                                       |
5901 |           |         | -  Measurements Domain Section 4.2.3: added a new     |
5902 |           |         |    ‘load’ datatype                                    |
5903 |           |         |                                                       |
5904 |           |         | -  Measurements Domain Section 4.2.3 memoryUsage:     |
5905 |           |         |    added eight optional fields to this structure:     |
5906 |           |         |    memoryDemand, memoryLatencyAvg, memorySharedAvg,   |
5907 |           |         |    memorySwapInAvg, memorySwapInRateAvg, memorySwap\  |
5908 |           |         |    OutAvg, memorySwapOutRateAvg, memorySwapUsedAvg    |
5909 |           |         |                                                       |
5910 |           |         | -  Measurements Domain Section 4.2.3: modified        |
5911 |           |         |    measurementFields to include the following new     |
5912 |           |         |    fields: hugePagesArray, ipmi, loadArray, memory\   |
5913 |           |         |    Errors, processStatusArray, rdtArray               |
5914 |           |         |                                                       |
5915 |           |         | -  Measurements Domain Section 4.2.3 renamed vNic\    |
5916 |           |         |    Performance to nicPerformance and changed vNic\    |
5917 |           |         |    Identifer to nicIdentifier                         |
5918 |           |         |                                                       |
5919 |           |         | -  Notification Domain Section 4.2.4: added           |
5920 |           |         |    notificationFields to support a new notification   |
5921 |           |         |    domain.                                            |
5922 |           |         |                                                       |
5923 |           |         | -  pnfRegistration Domain Section 4.2.7: added        |
5924 |           |         |    pnfRegistrationFields to support a new registration|
5925 |           |         |    domain.                                            |
5926 |           |         |                                                       |
5927 |           |         | -  sysLog Domain Section 4.2.8: added two new fields: |
5928 |           |         |    syslogMsgHost and syslogTs. Clarified field        |
5929 |           |         |    descriptions. Clarified syslogSData example.       |
5930 |           |         |                                                       |
5931 |           |         | -  endOfCallVqmSummaries Section 4.3.3.1:             |
5932 |           |         |                                                       |
5933 |           |         |    -  converted endpointJitter into two fields:       |
5934 |           |         |       endpointAverageJitter and endpointMaxJitter     |
5935 |           |         |                                                       |
5936 |           |         |    -  converted localJitter into two fields:          |
5937 |           |         |       localAverageJitter and localMaxJitter           |
5938 |           |         |                                                       |
5939 |           |         |    -  added two fields: localAverageJitterBufferDelay |
5940 |           |         |       and localMaxJitterBufferDelay                   |
5941 |           |         |                                                       |
5942 |           |         |    -  added endpointRtpOctetsLost and                 |
5943 |           |         |       endpointRtpPacketsLost                          |
5944 |           |         |                                                       |
5945 |           |         |    -  added localRtpOctetsLost and localRtpPacketsLost|
5946 |           |         |                                                       |
5947 |           |         |    -  converted packetsLost into oneWayDelay          |
5948 |           |         |                                                       |
5949 |           |         | -  API Versioning:                                    |
5950 |           |         |                                                       |
5951 |           |         |    -  Section 1.4: clarified the versioning section   |
5952 |           |         |       and linked it to the following new section 6.1.2|
5953 |           |         |                                                       |
5954 |           |         |    -  Section 6.1.2: Added requirements for HTTP      |
5955 |           |         |       headers communicating minor, patch and latest   |
5956 |           |         |       version information.                            |
5957 |           |         |                                                       |
5958 |           |         |    -  Section 2 and 6 sample messages: clarified      |
5959 |           |         |       examples to use the new HTTP headers            |
5960 |           |         |                                                       |
5961 |           |         | -  Section 6.1.4: Added a section specifying message  |
5962 |           |         |    size limits.                                       |
5963 |           |         |                                                       |
5964 |           |         | -  Section2 6.2.6.1 and 6.3.6.1: corrected            |
5965 |           |         |    additionalInformation examples to use hashMap      |
5966 |           |         |    instead of name-value pair fields.                 |
5967 |           |         |                                                       |
5968 |           |         | -  Section 7: Added a section on Terminology.         |
5969 |           |         |                                                       |
5970 |           |         | -  Command List Processing: removed command list      |
5971 |           |         |    processing from the document and schema:           |
5972 |           |         |                                                       |
5973 |           |         |    -  Modified the Section 3 resource structure to    |
5974 |           |         |       align with these changes.                       |
5975 |           |         |                                                       |
5976 |           |         |    -  Removed Section 4 Datatypes: command,           |
5977 |           |         |       commandList, eventDomainThrottleSpecification,  |
5978 |           |         |       eventDomainThrottleSpecificationList,           |
5979 |           |         |       eventThrottlingState, suppressedNvPairs         |
5980 |           |         |                                                       |
5981 |           |         |    -  Removed Section 6.1 description of commands     |
5982 |           |         |       toward event source clients                     |
5983 |           |         |                                                       |
5984 |           |         | -  Removed Section 6.4 operation:                     |
5985 |           |         |    provideThrottlingState                             |
5986 +-----------+---------+-------------------------------------------------------+
5987 | 7/30/2018 | v7.0    | -  General:                                           |
5988 |           |         |                                                       |
5989 |           |         |    -  Fixed typos throughout                          |
5990 |           |         |                                                       |
5991 |           |         |    -  Changed example versions to v7                  |
5992 |           |         |                                                       |
5993 |           |         | -  Section1:                                          |
5994 |           |         |                                                       |
5995 |           |         |    -  Clarified casing and use of dashes versus colons|
5996 |           |         |       in eventName examples                           |
5997 |           |         |                                                       |
5998 |           |         |    -  Updated all field block versions                |
5999 |           |         |                                                       |
6000 |           |         | -  Section 2: added a note clarifying that TLS 1.2 or |
6001 |           |         |    higher must be used for HTTPS connections.         |
6002 |           |         |                                                       |
6003 |           |         | -  Section 4 embedded schema changed to v30:          |
6004 |           |         |                                                       |
6005 |           |         |    -  Added " ‘additionalProperties’: false " to      |
6006 |           |         |       objects to reject events that attempt to send   |
6007 |           |         |       properties that are not listed in the           |
6008 |           |         |       ‘properties’ keyword. Note: does not affect     |
6009 |           |         |       hashmap extensible fields.                      |
6010 |           |         |                                                       |
6011 |           |         |    -  Changed all versions in all field blocks from   |
6012 |           |         |       number to string enum with the version number   |
6013 |           |         |       fixed by the enum so the schema can validate    |
6014 |           |         |       events that attempt to send non-standard field  |
6015 |           |         |       blocks.                                         |
6016 |           |         |                                                       |
6017 |           |         |    -  Changed syslog additionalFields to a hashMap    |
6018 |           |         |                                                       |
6019 |           |         | -  Section 4:                                         |
6020 |           |         |                                                       |
6021 |           |         |    -  Fixed section heading numbers that were the same|
6022 |           |         |                                                       |
6023 |           |         |    -  4.1.1: jsonObjectInstance: added an optional    |
6024 |           |         |       recursive jsonObject and removed all required   |
6025 |           |         |       fields from this object                         |
6026 |           |         |                                                       |
6027 |           |         |    -  4.1.2: commonEventHeader:                       |
6028 |           |         |                                                       |
6029 |           |         |       -  nfVendorName: added this optional field      |
6030 |           |         |                                                       |
6031 |           |         |       -  timeZoneOffset: changed from number to string|
6032 |           |         |          with a particular format specified           |
6033 |           |         |                                                       |
6034 |           |         |       -  version was changed from number to string (as|
6035 |           |         |          were all the version fields of all the field |
6036 |           |         |          blocks)                                      |
6037 |           |         |                                                       |
6038 |           |         |       -  vesCommonEventListenerVersion: added this    |
6039 |           |         |          required field as a string enumeration       |
6040 |           |         |                                                       |
6041 |           |         |    -  4.2.3: Measurements Domain:                     |
6042 |           |         |                                                       |
6043 |           |         |       -  Added a note clarifying that NFs are required|
6044 |           |         |          to report exactly one Measurement event per  |
6045 |           |         |          period per sourceName                        |
6046 |           |         |                                                       |
6047 |           |         |       -  diskUsage: added four new optional fields:   |
6048 |           |         |          diskWeightedIoTimeAve, diskWeightedIoTimeLast|
6049 |           |         |          , diskWeightedIoTimeMax,                     |
6050 |           |         |          diskWeightedIoTimeMin                        |
6051 |           |         |                                                       |
6052 |           |         |       -  memoryUsage: add one new optional field:     |
6053 |           |         |          percentMemoryUsage                           |
6054 |           |         |                                                       |
6055 |           |         |       -  nicPerformance: added nine new optional      |
6056 |           |         |          fields: administrativeState, operationalState|
6057 |           |         |          , receivedPercentDiscard,                    |
6058 |           |         |          receivedPercentError, receivedUtilization,   |
6059 |           |         |          speed, transmittedPercentDiscard,            |
6060 |           |         |          transmittedPercentError,                     |
6061 |           |         |          transmittedUtilization                       |
6062 |           |         |                                                       |
6063 |           |         |       -  processorDimmAggregateThermalMargin: make the|
6064 |           |         |          thermalMargin field required                 |
6065 |           |         |                                                       |
6066 |           |         |    -  4.2.8: Syslog Domain:                           |
6067 |           |         |                                                       |
6068 |           |         | -  Corrected the example at the end of the section    |
6069 +-----------+---------+-------------------------------------------------------+
6070 | 7/31/2018 | v7.0.1  | -  Section 4: The schema embedded at the top of       |
6071 |           |         |    section 4 was patched to correct a header field    |
6072 |           |         |    name error—the schema version moves from 30 to     |
6073 |           |         |    30.0.1:                                            |
6074 |           |         |                                                       |
6075 |           |         |    -  Changed commonEventHeader field: ‘vesCommon\    |
6076 |           |         |       EventFormatVersion’ field to ‘vesEventListener\ |
6077 |           |         |       Version’ and set the enum to 7.0.1              |
6078 |           |         |                                                       |
6079 |           |         |    -  Also changed the commonEventHeader ‘required’   |
6080 |           |         |       array to reflect use the corrected field name:  |
6081 |           |         |       ‘vesEventListenerVersion’                       |
6082 |           |         |                                                       |
6083 |           |         |    -  Changed the commonEventHeader ‘version’ field   |
6084 |           |         |       enumeration to 4.0.1                            |
6085 |           |         |                                                       |
6086 |           |         | -  Section1:                                          |
6087 |           |         |                                                       |
6088 |           |         |    -  Changed the field block versions for the common |
6089 |           |         |       header for ‘vesEventListenerVersion’ (to 7.0.1) |
6090 |           |         |       and ‘version’ (to 4.0.1).                       |
6091 |           |         |                                                       |
6092 |           |         | -  Sections 2 and 6:                                  |
6093 |           |         |                                                       |
6094 |           |         |    -  Changed the commonEventHeader version fields    |
6095 |           |         |       above, in the sample message requests and       |
6096 |           |         |       responses; also updated the faultFieldsVersion  |
6097 |           |         |       to 4.0                                          |
6098 |           |         |                                                       |
6099 |           |         | -  Section 6.1.2: Changed the X-LatestVersion to 7.0.1|
6100 |           |         |    and the X-PatchVersion to 1                        |
6101 +-----------+---------+-------------------------------------------------------+
6102 | 12/10/2018| v7.1    | -  Section 1.2: Added Notification domain Perf3gpp    |
6103 |           |         |    domain and changed a reference from ‘measurements  |
6104 |           |         |    domain’ to ‘measurement domain’.                   |
6105 |           |         |                                                       |
6106 |           |         | -  Section 1.7.1: Field Block Versions: added         |
6107 |           |         |    ‘perf3gppFields’ version at 1.0 and changed the    |
6108 |           |         |    following version enumerations so that existing    |
6109 |           |         |    clients of major version 7 would not be broken by  |
6110 |           |         |    this VES minor version change, in accordance with  |
6111 |           |         |    semantic versioning definitions:                   |
6112 |           |         |                                                       |
6113 |           |         |    -  commonEventHeader: changed to                   |
6114 |           |         |       ‘vesEventListenerVersion’ enum to accept either |
6115 |           |         |       7.0 or 7.0.1 or 7.1.                            |
6116 |           |         |                                                       |
6117 |           |         |    -  commonEventHeader: changed ‘version’ enum to    |
6118 |           |         |       accept either 4.0 or 4.0.1 or 4.1               |
6119 |           |         |                                                       |
6120 |           |         | -  Section 2:                                         |
6121 |           |         |                                                       |
6122 |           |         |    -  changed sample request and responses to         |
6123 |           |         |       reference 7.1 instead of 7.0.1 (and version 4.1 |
6124 |           |         |       of the commonEventHeader version, instead of    |
6125 |           |         |       v4.0.1)                                         |
6126 |           |         |                                                       |
6127 |           |         |    -  added a sub section on service provider support |
6128 |           |         |       for mutual ssl certificate authentication       |
6129 |           |         |                                                       |
6130 |           |         | -  Section 4.1.2.1:                                   |
6131 |           |         |                                                       |
6132 |           |         |    -  CommonEventHeader timeZoneOffset changed        |
6133 |           |         |       description from ‘UTC+/-hh.mm’ to ‘UTC+/-hh:mm’ |
6134 |           |         |                                                       |
6135 |           |         |    -  Added ‘perf3gpp’ to the domain enumeration      |
6136 |           |         |                                                       |
6137 |           |         | -  Section 4.2.3: Measurement Domain Datatypes:       |
6138 |           |         |                                                       |
6139 |           |         |    -  In ‘MeasurementFields’: Changed ‘ipmiArray’ to  |
6140 |           |         |       ‘ipmi’ and made the type ‘object’               |
6141 |           |         |                                                       |
6142 |           |         |    -  ‘ipmiProcessor’: changed                        |
6143 |           |         |       ‘pprocessorThermalControl’ to                   |
6144 |           |         |       ‘processorThermalControl’                       |
6145 |           |         |                                                       |
6146 |           |         |    -  ‘machineCheckException’: changed                |
6147 |           |         |       ‘processIdentifier’ to ‘vmIdentifier’           |
6148 |           |         |                                                       |
6149 |           |         | -  Section 4.2.6: added the perf3gpp domain           |
6150 |           |         |                                                       |
6151 |           |         | -  Section 4 embedded schema:                         |
6152 |           |         |                                                       |
6153 |           |         |    -  Changed the schema version from 30.0.1 to 30.1  |
6154 |           |         |       as a result of the changes below:               |
6155 |           |         |                                                       |
6156 |           |         |    -  commonEventHeader: changed to                   |
6157 |           |         |       ‘vesEventListenerVersion’ enum to accept either |
6158 |           |         |       7.0, 7.0.1 or 7.1                               |
6159 |           |         |                                                       |
6160 |           |         |    -  commonEventHeader: changed the ‘version’ field  |
6161 |           |         |       enumeration to accept either 4.0, 4.0.1 or 4.1  |
6162 |           |         |                                                       |
6163 |           |         |    -  commonEventHeader: changed the ‘domain’         |
6164 |           |         |       enumeration to add support for the perf3gpp     |
6165 |           |         |       domain.                                         |
6166 |           |         |                                                       |
6167 |           |         |    -  ‘event’: added a reference to ‘perf3gppFields’  |
6168 |           |         |                                                       |
6169 |           |         |    -  ‘hugePages’: changed the type of                |
6170 |           |         |       hugePagesIdentifier from number to string       |
6171 |           |         |                                                       |
6172 |           |         |    -  ‘ipmiGlobalAggregateTemperatureMargin’: changed |
6173 |           |         |       ‘pmiGlobalAggregateTemperatureMarginIdentifier’ |
6174 |           |         |       to ‘globalAggregateTemperatureMarginIdentifier’ |
6175 |           |         |                                                       |
6176 |           |         |    -  ‘perf3gppFields’: added this object             |
6177 |           |         |                                                       |
6178 |           |         | -  Section 6: changed references throughout from      |
6179 |           |         |    v7.0.1 to v7.1 and v4.0.1 (of the commonEventHeader|
6180 |           |         |    version) to v4.1                                   |
6181 |           |         |                                                       |
6182 |           |         | -  Changed the location of the doc to VNF             |
6183 |           |         |    Requirements and changed the formatting            |
6184 +-----------+---------+-------------------------------------------------------+
6185 | 1/28/202  | v7.1.1  | -  Changed event sizes from 2Mb to 1Mb                |
6186 |           |         | -  Configuration Requirement comments addressed       |
6187 |           |         | -  Changed DCAE Collector to VES Event Listener       |
6188 |           |         | -  Replaced VNF with NF where appropriate             |
6189 |           |         | -  Updated publishAnyEvent and publishBatchEvent to   |
6190 |           |         |    clarify both one way and mutual TLS are supported  |
6191 |           |         | -  Changed authorization for publishEventBatch        |
6192 |           |         |    because certification authorization is also        |
6193 |           |         |    supported                                          |
6194 |           |         | -  Updated fault use case in EventId Use Case         |
6195 |           |         |    Examples based on Ericsson feedback                |
6196 |           |         | -  Added new Configuration Requirements section       |
6197 |           |         | -  Added new Event Domain Requirements section        |
6198 |           |         | -  Updated security requirements based on agreements  |
6199 |           |         |    in ONAP  Security Committee with details on 2-way  |
6200 |           |         |    certificate support                                |
6201 |           |         | -  Provided clarifications on event buffering         |
6202 |           |         | -  Added Event Handling Requirements for              |
6203 |           |         |    publishEventFlow                                   |
6204 |           |         | -  Updated Field Block Versions to support existing   |
6205 |           |         |    clients of major version 7                         |
6206 |           |         | -  Updated sample request and response schemas        |
6207 |           |         | -  Updated embedded schema as follows:                |
6208 |           |         |                                                       |
6209 |           |         |    * Changed schema version to 30.1.1                 |
6210 |           |         |    * Changed measValues to measValuesList and similar |
6211 |           |         |      changes throughout                               |
6212 |           |         |    * Changed iMeasTypesList to sMeasTypesList         |
6213 |           |         | - Corrected publishEventBatch call flow diagram       |
6214 |           |         | - Changed AuthorizationHeader to Required? = NO for   |
6215 |           |         |   publishAnyEvent operation                           |
6216 |           |         | - Relaxed various requirements related to camel       |
6217 |           |         |   casing of values from 'must' to 'should'            |
6218 +-----------+---------+-------------------------------------------------------+
6219
6220 .. _time_zone_abbreviations: https://en.wikipedia.org/wiki/List_of_time_zone_abbreviations
6221 .. _Common_definitions: http://technical.openmobilealliance.org/Technical/release_program/docs/REST_NetAPI_Common/V1_0-20120417-C/OMA-TS-REST_NetAPI_Common-V1_0-20120417-C.pdf