[VES spec] publishEventBatch support for stndDefined
[vnfrqts/requirements.git] / docs / Chapter8 / ves_7_2 / ves_event_listener_7_2.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 .. Copyright 2020 Nokia Solutions and Networks
6
7 .. _ves_event_listener_7_2:
8
9 Service: VES Event Listener 7.2
10 -------------------------------
11
12 +-----------------------------------------------------------------------------+
13 | **Legal Disclaimer**                                                        |
14 |                                                                             |
15 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
16 | use this file except in compliance with the License. You may obtain a copy  |
17 | of the License at                                                           |
18 |                                                                             |
19 | http://www.apache.org/licenses/LICENSE-2.0                                  |
20 |                                                                             |
21 | Unless required by applicable law or agreed to in writing, software         |
22 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT   |
23 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the    |
24 | License for the specific language governing permissions and limitations     |
25 | under the License.                                                          |
26 +-----------------------------------------------------------------------------+
27
28
29 :Document: VES Event Listener
30 :Revision: 7.2
31 :Revision Date: May 6th, 2020
32 :Author: Trevor Lovett
33
34 +-----------------+-----------------------------+
35 | Contributors:   | **Min Chen – AT&T**         |
36 |                 |                             |
37 |                 | **Fred Delaplace - AT&T**   |
38 |                 |                             |
39 |                 | **Andrew Egan – AT&T**      |
40 |                 |                             |
41 |                 | **Alok Gupta – AT&T**       |
42 |                 |                             |
43 |                 | **Marge Hillis – Nokia**    |
44 |                 |                             |
45 |                 | **Gerard Hynes – AT&T**     |
46 |                 |                             |
47 |                 | **Ken Kelly – AT&T**        |
48 |                 |                             |
49 |                 | **Damian Nowak - Nokia**    |
50 |                 |                             |
51 |                 | **Mark Scott – Ericsson**   |
52 |                 |                             |
53 |                 | **Tim Verall – Intel**      |
54 |                 |                             |
55 |                 | **Sumit Verdi – VMWare**    |
56 |                 |                             |
57 |                 | **Trevor Lovett – AT&T**    |
58 |                 |                             |
59 |                 | **Rich Erickson – AT&T**    |
60 +-----------------+-----------------------------+
61
62 .. contents:: Table of Contents
63
64 Introduction
65 ^^^^^^^^^^^^
66
67 This document describes the RESTful interface for the VES Event
68 Listener. The VES acronym originally stood for Virtual-function Event
69 Streaming, but VES has been generalized to support network-function
70 event streaming, whether virtualized or not. The VES Event Listener is
71 capable of receiving any event sent in the VES
72 :ref:`ves_common_event_format_7_2`. In the VES Common Event Format, an event
73 consists of a required
74 :ref:`Common Event Header <ves_common_event_header_7_2>` (i.e., object)
75 accompanied by zero or more event domain blocks.
76
77 It should be understood that events are well structured packages of
78 information, identified by an ``eventName``, which are asynchronously
79 communicated to subscribers who are interested in the ``eventName``. Events
80 can convey measurements, faults, syslogs, threshold crossing alerts and
81 other types of information. Events are simply a way of communicating
82 well-structured packages of information to one or more instances of an
83 VES Event Listener service.
84
85 This document describes a RESTful, connectionless, push event listener
86 that can receive single events or batches of events in the
87 :ref:`ves_common_event_format_7_2`.
88
89 Versioning
90 ^^^^^^^^^^
91
92 Three types of version numbers supported by this specification:
93
94 - The API specification itself is versioned. Going forward, the major
95   number of the specification version will be incremented whenever any
96   change could break an existing client (e.g., a field name is deleted
97   or changed). All other changes to the spec (e.g., a field name is
98   added, or text changes are made to the specification itself) will
99   increment only the minor number or patch number. Note that the major
100   number appears in REST resource URLs as v# (where ‘#’ is the major
101   number). Minor and patch numbers are communicated in HTTP headers.
102   For more information, see the API Versioning writeup in section 6.1.
103
104 - The JSON schema is versioned. Going forward, the major number of the
105   JSON schema will be incremented whenever any change could break an
106   existing client (e.g., a field name is deleted or changed). All other
107   changes to the schema (e.g., a field name is added or text changes
108   are made to the field descriptions) will increment only the minor
109   number or patch number.
110
111 - The field blocks are versioned. Field blocks include the
112   commonEventHeader and the domain blocks (e.g., the faultFields
113   block). Going forward, the major number of each field block will be
114   incremented whenever any change to that block could break an existing
115   client (e.g., a field name is deleted or changed). All other changes
116   to that block (e.g., a field name is added or text changes are made
117   to the field descriptions) will increment only the minor number.
118
119 Client Requirements
120 ^^^^^^^^^^^^^^^^^^^
121
122 Any NF or client library that is responsible for delivering VES events
123 to a VES Event Listener must comply with this specification to ensure events are
124 received, accepted, and processed properly.
125
126 Because the VES specification relies on clients to push events to the
127 VES Event Listener, the client assumes certain responsibilities such as:
128
129 - Providing configuration options supporting integration into a
130   Service Provider environment
131 - Ensuring reliable delivery of events
132 - Customization of default behaviors based on Service Provider needs
133
134 While the documentation of these expectations are beyond the Event Listener
135 specification, these requirements are documented in the ONAP VNF Requirements
136 for :ref:`VES Monitoring Requirements <ves_monitoring_requirements>`.
137
138
139 Compatibility with ONAP
140 ^^^^^^^^^^^^^^^^^^^^^^^
141
142 Unless otherwise stated, this version of the Event Listener specification is
143 compatible with the release of ONAP the specification is released under.  In
144 other words, if the specification is released under the Guilin ONAP release,
145 then the VES Event Listeners provided by DCAE will also be compatible with
146 this specification.
147
148 Support for Protocols Other Than HTTPS
149 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
150
151 This API specification describes an HTTPS RESTful interface using the
152 JSON content-type.
153
154 Alternative API specifications may be provided in future using Google
155 Protocol Buffers, WebSockets, or Apache Avro.
156
157 Field Block Versions
158 ^^^^^^^^^^^^^^^^^^^^
159
160 A summary of the latest field block version enums as of this version of
161 the API spec is provided below:
162
163 - commonEventHeader version 4.1 (note: the enum with support 4.0,
164   4.0.1, 4.1 to avoid breaking clients of earlier versions of major
165   version 4)
166
167 - commonEventHeader vesEventListenerVersion enum: 7.2 (note: the enum
168   will support 7.0, 7.0.1, 7.1, 7.1.1, 7.2 to avoid breaking clients of earlier
169   versions of major version 7)
170
171 - faultFieldsVersion:4.0
172
173 - heartbeatFieldsVersion: 3.0
174
175 - measurementFieldsVersion: 4.0
176
177 - mobileFlowFieldsVersion: 4.0
178
179 - notificationFieldsVersion: 2.0
180
181 - otherFieldsVersion: 3.0
182
183 - perf3gppFieldsVersion: 1.0
184
185 - pnfRegistrationFieldsVersion: 2.0
186
187 - sigSignalingFieldsVersion: 3.0
188
189 - stateChangeFieldsVersion: 4.0
190
191 - stndDefinedFieldsVersion: 1.0
192
193 - syslogFieldsVersion: 4.0
194
195 - thresholdCrossingFieldsVersion: 4.0
196
197 - voiceQualityFieldsVersion: 4.0
198
199 .. _ves_common_event_format_7_2:
200
201 Common Event Format
202 ^^^^^^^^^^^^^^^^^^^
203
204 A JSON schema describing the Common Event Format is provided below and
205 is reproduced in the tables that follow.
206
207 :download:`JSON <CommonEventFormat_30.2_ONAP.json>`
208
209
210 Note on optional fields:
211
212     If the event publisher collects a field that is identified as
213     optional in the data structures below, then the event publisher
214     *must* send that field.
215
216 Note on extensible fields:
217
218     VES contains various extensible structures (e.g., hashMap) that
219     enable event publishers to send information that has not been
220     explicitly defined in VES data structures.
221
222 -  Event publishers *must not* send information through extensible
223    structures where VES has explicitly defined fields for that
224    information. For example, event publishers *must not* send
225    information like cpuIdle, through an extensible structure, because
226    VES has explicitly defined a cpuUsage.cpuIdle field for the
227    communication of that information.
228
229 -  Keys sent through extensible fields should use camel casing to separate
230    words and acronyms; only the first letter of each acronym shall be
231    capitalized.
232
233 Common Event Datatypes
234 ~~~~~~~~~~~~~~~~~~~~~~
235
236 Datatype: arrayOfJsonObject
237 +++++++++++++++++++++++++++
238
239 The arrayOfJsonObject datatype provides an array of json objects, each
240 of which is describ ed by name, schema and other meta-information. It
241 consists of the following fields:
242
243 +---------------------+------------------+----------+----------------------+
244 | Field               | Type             | Required?| Description          |
245 +=====================+==================+==========+======================+
246 | arrayOfJsonObject   | jsonObject [ ]   | Yes      | Array of jsonObject  |
247 +---------------------+------------------+----------+----------------------+
248
249 Datatype: arrayOfNamedHashMap
250 +++++++++++++++++++++++++++++
251
252 The arrayOfNamedHashMap datatype provides an array of hashMaps, each of
253 which is associated with a descriptive name. It consists of the
254 following fields:
255
256 +---------------------+------------------+-----------+-----------------------+
257 | Field               | Type             | Required? | Description           |
258 +=====================+==================+===========+=======================+
259 | arrayOfNamedHashMap | namedHashMap [ ] | Yes       | Array of namedHashMap |
260 +---------------------+------------------+-----------+-----------------------+
261
262 Datatype: event
263 +++++++++++++++
264
265 The event datatype consists of the following fields which constitute the
266 ‘root level’ of the common event format:
267
268 +--------------+--------------+-----------+-----------------------------------+
269 | Field        | Type         | Required? | Description                       |
270 +==============+==============+===========+===================================+
271 | commonEvent\ | commonEvent\ | Yes       | Fields common to all events       |
272 | Header       | Header       |           |                                   |
273 +--------------+--------------+-----------+-----------------------------------+
274 | faultFields  | faultFields  | No        | Fields specific to fault events   |
275 +--------------+--------------+-----------+-----------------------------------+
276 | heartbeat\   | heartbeat\   | No        | Fields specific to heartbeat      |
277 | Fields       | Fields       |           | events                            |
278 +--------------+--------------+-----------+-----------------------------------+
279 | measurement\ | measurement\ | No        | Fields specific to measurement    |
280 | Fields       | Fields       |           | events                            |
281 +--------------+--------------+-----------+-----------------------------------+
282 | mobileFlow\  | mobileFlow\  | No        | Fields specific to mobility flow  |
283 | Fields       | Fields       |           | events                            |
284 +--------------+--------------+-----------+-----------------------------------+
285 | notification\| notification\| No        | Fields specific to notification   |
286 | Fields       | Fields       |           | events                            |
287 +--------------+--------------+-----------+-----------------------------------+
288 | otherFields  | otherFields  | No        | Fields specific to other types of |
289 |              |              |           | events                            |
290 +--------------+--------------+-----------+-----------------------------------+
291 | perf3gpp\    | perf3gpp\    | No        | Fields specific to perf3gpp       |
292 | Fields       | Fields       |           | events                            |
293 +--------------+--------------+-----------+-----------------------------------+
294 | pnf\         | pnf\         | No        | Fields specific to pnfRegistration|
295 | Registration\| Registration\|           | events                            |
296 | Fields       | Fields       |           |                                   |
297 +--------------+--------------+-----------+-----------------------------------+
298 | sipSignaling\| sipSignaling\| No        | Fields specific to sipSignaling   |
299 | Fields       | Fields       |           | events                            |
300 +--------------+--------------+-----------+-----------------------------------+
301 | stateChange\ | stateChange\ | No        | Fields specific to state change   |
302 | Fields       | Fields       |           | events                            |
303 +--------------+--------------+-----------+-----------------------------------+
304 | stndDefined\ | stndDefined\ | No        | Fields specific to standards      |
305 | Fields       | Fields       |           | defined events                    |
306 +--------------+--------------+-----------+-----------------------------------+
307 | syslogFields | syslogFields | No        | Fields specific to syslog events  |
308 +--------------+--------------+-----------+-----------------------------------+
309 | threshold\   | threshold\   | No        | Fields specific to threshold      |
310 | Crossing\    | Crossing\    |           | crossing alert events             |
311 | AlertFields  | AlertFields  |           |                                   |
312 +--------------+--------------+-----------+-----------------------------------+
313 | voiceQuality\| voiceQuality\| No        | Fields specific to voiceQuality   |
314 | Fields       | Fields       |           | events                            |
315 +--------------+--------------+-----------+-----------------------------------+
316
317 Datatype: eventList
318 +++++++++++++++++++
319
320 The eventList datatype consists of the following fields:
321
322 +-------------+-------------+----------+-------------------+
323 | Field       | Type        | Required?| Description       |
324 +=============+=============+==========+===================+
325 | eventList   | event [ ]   | Yes      | Array of events   |
326 +-------------+-------------+----------+-------------------+
327
328 Datatype: hashMap
329 +++++++++++++++++
330
331 The hashMap datatype is an ‘associative array’, which is an unordered
332 collection of key-value pairs of the form "key": "value", where each key
333 and value are strings. Keys should use camel casing to separate words and
334 acronyms; only the first letter of each acronym should be capitalized.
335
336 Datatype: jsonObject
337 ++++++++++++++++++++
338
339 The jsonObject datatype provides a json object schema, name and other
340 meta-information along with one or more object instances that conform to
341 the schema:
342
343 +--------------+--------------+-----------+----------------------------------+
344 | Field        | Type         | Required? | Description                      |
345 +==============+==============+===========+==================================+
346 | object\      | JsonObject\  | Yes       | Contains one or more instances of|
347 | Instances    | Instance [ ] |           | the json object                  |
348 +--------------+--------------+-----------+----------------------------------+
349 | objectName   | string       | Yes       | Name of the json object          |
350 +--------------+--------------+-----------+----------------------------------+
351 | objectSchema | string       | No        | json schema for the object       |
352 +--------------+--------------+-----------+----------------------------------+
353 | objectSchema\| string       | No        | URL to the json schema for the   |
354 | Url          |              |           | object                           |
355 +--------------+--------------+-----------+----------------------------------+
356 | nfSubscribed\| string       | No        | Name of the object associated    |
357 | ObjectName   |              |           | with the nfSubscriptionId        |
358 +--------------+--------------+-----------+----------------------------------+
359 | nf\          | string       | No        | Identifies an openConfig         |
360 | Subscription\|              |           | telemetry subscription on a      |
361 | Id           |              |           | network function, which          |
362 |              |              |           | configures the network function  |
363 |              |              |           | to send complex object data      |
364 |              |              |           | associated with the jsonObject   |
365 +--------------+--------------+-----------+----------------------------------+
366
367 Datatype: jsonObjectInstance
368 ++++++++++++++++++++++++++++
369
370 The jsonObjectInstance datatype provides meta-information about an
371 instance of a jsonObject along with the actual object instance:
372
373 +----------------+------------+----------+-----------------------------------+
374 | Field          | Type       | Required?| Description                       |
375 +================+============+==========+===================================+
376 | jsonObject     | jsonObject | No       | Optional recursive specification  |
377 |                |            |          | of jsonObject                     |
378 +----------------+------------+----------+-----------------------------------+
379 | objectInstance | object     | No       | Contains an instance conforming to|
380 |                |            |          | the jsonObject schema             |
381 +----------------+------------+----------+-----------------------------------+
382 | objectInstance\| number     | No       | the unix time, aka epoch time,    |
383 | EpochMicrosec  |            |          | associated with this              |
384 |                |            |          | objectInstance--as microseconds   |
385 |                |            |          | elapsed since 1 Jan 1970 not      |
386 |                |            |          | including leap seconds            |
387 +----------------+------------+----------+-----------------------------------+
388 | objectKeys     | key [ ]    | No       | An ordered set of keys that       |
389 |                |            |          | identifies this particular        |
390 |                |            |          | instance of jsonObject (e.g., that|
391 |                |            |          | places it in a hierarchy)         |
392 +----------------+------------+----------+-----------------------------------+
393
394 Datatype: key
395 +++++++++++++
396
397 The key datatype is a tuple which provides the name of a key along with
398 its value and relative order; it consists of the following fields:
399
400 +----------+---------+-----------+-------------------------------------------+
401 | Field    | Type    | Required? | Description                               |
402 +==========+=========+===========+===========================================+
403 | keyName  | string  | Yes       | Name of the key                           |
404 +----------+---------+-----------+-------------------------------------------+
405 | keyOrder | Integer | No        | Relative sequence or order of the key     |
406 |          |         |           | (with respect to other keys)              |
407 +----------+---------+-----------+-------------------------------------------+
408 | keyValue | string  | No        | Value of the key                          |
409 +----------+---------+-----------+-------------------------------------------+
410
411 Datatype: namedHashMap
412 ++++++++++++++++++++++
413
414 The namedHashMap datatype is a hashMap which is associated with and
415 described by a name; it consists of the following fields:
416
417 +---------+---------+-----------+--------------------------------------------+
418 | Field   | Type    | Required? | Description                                |
419 +=========+=========+===========+============================================+
420 | name    | string  | Yes       | Name associated with or describing the     |
421 |         |         |           | hashmap                                    |
422 +---------+---------+-----------+--------------------------------------------+
423 | hashMap | hashMap | Yes       | One or more key:value pairs                |
424 +---------+---------+-----------+--------------------------------------------+
425
426 Datatype: requestError
427 ++++++++++++++++++++++
428
429 The requestError datatype defines the standard request error data
430 structure:
431
432 +-----------+--------+-----------+-------------------------------------------+
433 | Field     | Type   | Required? | Description                               |
434 +===========+========+===========+===========================================+
435 | messageId | string | Yes       | Unique message identifier of the format   |
436 |           |        |           | ‘ABCnnnn’ where ‘ABC’ is either ‘SVC’ for |
437 |           |        |           | Service Exceptions or ‘POL’ for Policy    |
438 |           |        |           | Exception. Exception numbers may be in the|
439 |           |        |           | range of 0001 to 9999 where 0001 to 2999  |
440 |           |        |           | are defined by OMA (see section 5.1) and  |
441 |           |        |           | 3000-9999 are available and undefined.    |
442 +-----------+--------+-----------+-------------------------------------------+
443 | text      | string | Yes       | Message text, with replacement variables  |
444 |           |        |           | marked with %n, where n is an index into  |
445 |           |        |           | the list of <variables> elements, starting|
446 |           |        |           | at 1                                      |
447 +-----------+--------+-----------+-------------------------------------------+
448 | url       | string | No        | Hyperlink to a detailed error resource    |
449 |           |        |           | e.g., an HTML page for browser user agents|
450 +-----------+--------+-----------+-------------------------------------------+
451 | variables | string | No        | List of zero or more strings that         |
452 |           |        |           | represent the contents of the variables   |
453 |           |        |           | used by the message text                  |
454 +-----------+--------+-----------+-------------------------------------------+
455
456 Datatype: vendorNfNameFields
457 ++++++++++++++++++++++++++++
458
459 The vendorNfNameFields provides vendor, nf and nfModule identifying
460 information:
461
462 +--------------+--------+-----------+----------------------------------------+
463 | Field        | Type   | Required? | Description                            |
464 +==============+========+===========+========================================+
465 | vendorName   | string | Yes       | Network function vendor name           |
466 +--------------+--------+-----------+----------------------------------------+
467 | nfModuleName | string | No        | Name of the nfModule generating the    |
468 |              |        |           | event                                  |
469 +--------------+--------+-----------+----------------------------------------+
470 | nfName       | string | No        | Name of the network function generating|
471 |              |        |           | the event                              |
472 +--------------+--------+-----------+----------------------------------------+
473
474 Common Event Header Data Types
475 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
476
477 .. _ves_common_event_header_7_2:
478
479 Datatype: commonEventHeader
480 +++++++++++++++++++++++++++
481
482 The commonEventHeader datatype consists of the following fields common
483 to all events:
484
485 +-----------+----------+-----------+-----------------------------------------+
486 | Field     | Type     | Required? |  Description                            |
487 +===========+==========+===========+=========================================+
488 | domain    | string   | Yes       | Event domain enumeration: ‘fault’,      |
489 |           |          |           | ‘heartbeat’, ‘measurement’, ‘mobileFlow’|
490 |           |          |           | , ‘notification’, ‘other’, ‘perf3gpp’,  |
491 |           |          |           | ‘pnfRegistration’, ‘sipSignaling’,      |
492 |           |          |           | ‘stateChange’,‘stndDefined’, ‘syslog’,  |
493 |           |          |           | ‘thresholdCrossingAlert’, ‘voiceQuality’|
494 +-----------+----------+-----------+-----------------------------------------+
495 | eventId   | string   | Yes       | Event key that is unique to the event   |
496 |           |          |           | source. The key must be unique within   |
497 |           |          |           | notification life cycle similar to      |
498 |           |          |           | EventID from 3GPP. It could be a        |
499 |           |          |           | sequential number, or a composite key   |
500 |           |          |           | formed from the event fields, such as   |
501 |           |          |           | domain\_sequence. The eventId should not|
502 |           |          |           | include whitespace. For fault events,   |
503 |           |          |           | eventId is the eventId of the initial   |
504 |           |          |           | alarm; if the same alarm is raised again|
505 |           |          |           | for changed, acknowledged or cleared    |
506 |           |          |           | cases, eventId must be the same as the  |
507 |           |          |           | initial alarm (along with the same      |
508 |           |          |           | startEpochMicrosec but with a different |
509 |           |          |           | sequence number).                       |
510 |           |          |           | See :ref:`ves_eventid_usecases_7_2` for |
511 |           |          |           | additional guidance on eventId usage.   |
512 +-----------+----------+-----------+-----------------------------------------+
513 | eventName | string   | Yes       |  See :ref:`ves_eventname_guidelines_7_2`|
514 |           |          |           |  for additional information on naming   |
515 |           |          |           |  events                                 |
516 +-----------+----------+-----------+-----------------------------------------+
517 | eventType | string   | No        |                                         |
518 +-----------+----------+-----------+-----------------------------------------+
519 | internal\ | internal\| No        | Fields (not supplied by event sources)  |
520 | Header    | Header   |           | that the VES Event Listener service can |
521 | Fields    | Fields   |           | use to enrich the event if needed for   |
522 |           |          |           | efficient internal processing. This is  |
523 |           |          |           | an empty object which is intended to be |
524 |           |          |           | defined separately by each service      |
525 |           |          |           | provider (e.g., AT&T) implementing the  |
526 |           |          |           | VES Event Listener.                     |
527 +-----------+----------+-----------+-----------------------------------------+
528 | lastEpoch\| number   | Yes       | the latest unix time aka epoch time     |
529 | Microsec  |          |           | associated with the event from any      |
530 |           |          |           | component--as microseconds elapsed since|
531 |           |          |           | 1 Jan 1970 not including leap seconds   |
532 +-----------+----------+-----------+-----------------------------------------+
533 | nfcNaming\| string   | No        | Network function component type: 3      |
534 | Code      |          |           | characters (aligned with vfc naming     |
535 |           |          |           | standards)                              |
536 +-----------+----------+-----------+-----------------------------------------+
537 | nfNaming\ | string   | No        | Network function type: 4 characters     |
538 | Code      |          |           | (aligned with vnf and pnf naming        |
539 |           |          |           | standards)                              |
540 +-----------+----------+-----------+-----------------------------------------+
541 | nfVendor\ | string   | No        |                                         |
542 | Name      |          |           |                                         |
543 +-----------+----------+-----------+-----------------------------------------+
544 | priority  | string   | Yes       |                                         |
545 +-----------+----------+-----------+-----------------------------------------+
546 | reporting\| string   | No        | UUID identifying the entity reporting   |
547 | EntityId  |          |           | the event or detecting a problem in     |
548 |           |          |           | another vnf/vm or pnf which is          |
549 |           |          |           | experiencing the problem. (Note: the    |
550 |           |          |           | AT&T internal enrichment process shall  |
551 |           |          |           | ensure that this field is populated).   |
552 |           |          |           | The reportingEntityId is an id for the  |
553 |           |          |           | reportingEntityName. See                |
554 |           |          |           | ‘reportingEntityName’ for more          |
555 |           |          |           | information.                            |
556 +-----------+----------+-----------+-----------------------------------------+
557 | reporting\| string   | Yes       | Name of the entity reporting the event  |
558 | EntityName|          |           | or detecting a problem in another vnf/vm|
559 |           |          |           | or pnf which is experiencing the        |
560 |           |          |           | problem. May be the same as the         |
561 |           |          |           | sourceName. For synthetic events        |
562 |           |          |           | generated by DCAE, it is the name of the|
563 |           |          |           | app generating the event.               |
564 +-----------+----------+-----------+-----------------------------------------+
565 | sequence  | integer  | Yes       | Ordering of events communicated by an   |
566 |           |          |           | event source instance (or 0 if not      |
567 |           |          |           | needed)                                 |
568 +-----------+----------+-----------+-----------------------------------------+
569 | sourceId  | string   | No        | UUID identifying the entity experiencing|
570 |           |          |           | the event issue, which may be detected  |
571 |           |          |           | and reported by a separate reporting    |
572 |           |          |           | entity (note: the AT&T internal         |
573 |           |          |           | enrichment process shall ensure that    |
574 |           |          |           | this field is populated). The sourceId  |
575 |           |          |           | is an id for the sourceName. See        |
576 |           |          |           | ‘sourceName’ for more information.      |
577 +-----------+----------+-----------+-----------------------------------------+
578 | sourceName| string   | Yes       | Name of the entity experiencing the     |
579 |           |          |           | event issue, which may be detected and  |
580 |           |          |           | reported by a separate reporting entity.|
581 |           |          |           | The sourceName identifies the device for|
582 |           |          |           | which data is collected. A valid        |
583 |           |          |           | sourceName must be inventoried in A&AI. |
584 |           |          |           | If sourceName is a xNF (vnf or pnf),    |
585 |           |          |           | xNFC or VM, then the event must be      |
586 |           |          |           | reporting data for that particular xNF, |
587 |           |          |           | xNFC or VM. If the sourceName is a xNF, |
588 |           |          |           | comprised of multiple xNFCs, the data   |
589 |           |          |           | must be reported/aggregated at the xNF  |
590 |           |          |           | level. Data for individual xNFC must not|
591 |           |          |           | be included in the xNF sourceName event.|
592 +-----------+----------+-----------+-----------------------------------------+
593 | start\    | number   | Yes       | the earliest unix time aka epoch time   |
594 | Epoch\    |          |           | associated with the event from any      |
595 | Microsec  |          |           | component--as microseconds elapsed since|
596 |           |          |           | 1 Jan 1970 not including leap seconds.  |
597 |           |          |           | For measurements and heartbeats, where  |
598 |           |          |           | events are collected over predefined    |
599 |           |          |           | intervals, startEpochMicrosec shall be  |
600 |           |          |           | rounded to the nearest interval boundary|
601 |           |          |           | (e.g., the epoch equivalent of 3:00PM,  |
602 |           |          |           | 3:10PM, 3:20PM, etc…). For fault events,|
603 |           |          |           | startEpochMicrosec is the timestamp of  |
604 |           |          |           | the initial alarm; if the same alarm is |
605 |           |          |           | raised again for changed, acknowledged  |
606 |           |          |           | or cleared cases, startEpoch Microsec   |
607 |           |          |           | must be the same as the initial alarm   |
608 |           |          |           | (along with the same eventId and an     |
609 |           |          |           | incremental sequence number). For       |
610 |           |          |           | devices with no timing source (clock),  |
611 |           |          |           | the default value will be 0 and the VES |
612 |           |          |           | collector will replace it with Collector|
613 |           |          |           | time stamp (when the event is received) |
614 +-----------+----------+-----------+-----------------------------------------+
615 | stnd\     | string   | No        | Standards-organization defined event    |
616 | Defined\  |          |           | namespace; expected usage includes event|
617 | Namespace |          |           | routing by the event listener           |
618 +-----------+----------+-----------+-----------------------------------------+
619 | timeZone\ | string   | No        | Offset to GMT to indicate local time    |
620 | Offset    |          |           | zone for device formatted as            |
621 |           |          |           | ‘UTC+/-hh:mm’; see                      |
622 |           |          |           | time_zone_abbreviations_ for UTC offset |
623 |           |          |           | examples                                |
624 +-----------+----------+-----------+-----------------------------------------+
625 | version   | string   | Yes       | Version of the event header as "#.#"    |
626 |           |          |           | where # is a digit; see section 1 for   |
627 |           |          |           | the correct digits to use.              |
628 +-----------+----------+-----------+-----------------------------------------+
629 | vesEvent\ | string   | Yes       | Version of the ves event listener api   |
630 | Listener\ |          |           | spec that this event is compliant with  |
631 | Version   |          |           | (as "#" or "#.#" or "#.#.#" where # is a|
632 |           |          |           | digit; see section 1 for the correct    |
633 |           |          |           | digits to use).                         |
634 +-----------+----------+-----------+-----------------------------------------+
635
636 Datatype: internalHeaderFields
637 ++++++++++++++++++++++++++++++
638
639 The internalHeaderFields datatype is an undefined object which can
640 contain arbitrarily complex JSON structures. It is intended to be
641 defined separately by each service provider (e.g., AT&T) implementing
642 the VES Event Listener. The fields in internalHeaderFields are not
643 provided by any event source but instead are added by the VES Event
644 Listener service itself as part of an event enrichment process necessary
645 for efficient internal processing of events received by the VES Event
646 Listener.
647
648
649 .. _ves_eventname_guidelines_7_2:
650
651 Best Practices for eventName
652 ++++++++++++++++++++++++++++
653
654 To prevent naming collisions, eventNames sent as part of the
655 commonEventHeader, should conform to the following naming convention
656 designed to summarize the purpose and type of the event, and to ensure
657 the uniqueness of the eventName:
658
659     ``{DomainAbbreviation}_{PublisherName}_{Description}``
660
661 Each underscore-separated subfield above should start with a capital
662 letter and use camel-casing to separate words and acronyms. Acronyms
663 should capitalize only the first letter of the acronym. Spaces and
664 underscores should not appear within any subfield.
665
666 The DomainAbbreviation subfield derives from the ‘domain’ field in the
667 commonEventHeader, as specified below:
668
669 -  ‘Fault’ for the fault domain
670
671 -  ‘Heartbeat’ for the heartbeat domain
672
673 -  ‘Measurement’ for the measurement domain
674
675 -  ‘MobileFlow’ for the mobileFlow domain
676
677 -  ‘Notification’ for the notification domain
678
679 -  ‘Other’ for the other domain
680
681 -  ‘Perf3gpp’ for the perf3gpp domain
682
683 -  ‘PnfReg’ for the pnfRegistration domain
684
685 -  ‘SipSignaling’ for the sipSignaling domain
686
687 -  ‘StateChange’ for the stateChange domain
688
689 -  ‘StndDefined’ for the stndDefined domain
690
691 -  ‘Syslog’ for the syslog domain
692
693 -  ‘Tca’ for the thresholdCrossingAlert domain
694
695 -  ‘VoiceQuality’ for the voiceQuality domain
696
697 The PublisherName subfield describes the vendor product or application
698 publishing the event. This subfield conforms to the following
699 conventions:
700
701 -   Vendor products are specified as: ``{productName}-{vendorName}``
702
703     For example: ``Visbc-Metaswitch`` or ``Vdbe-Juniper``, where a hyphen is
704     used to separate the ``productName`` and ``vendorName`` subfields. Note that
705     the ``productName`` and ``vendorName`` subfields must not include hyphens
706     themselves.
707
708     Organizing the information in this way will cause an alphabetical
709     listing of eventNames to sort similar network functions together,
710     rather than to sort them by vendor.
711
712     The ``productName`` subfield may describe a NF or a NFC. Where NFC names
713     may be reused across different NF’s, they should be specified as:
714
715     ``{NfName}:{NfcName}``
716
717     where a colon is used to separate the ``NfName`` and ``NfcName`` subfields.
718     Note that the ``NfName`` and ``NfcName`` subfields must not include colons
719     themselves.
720
721     The ``productName`` may also describe other types of vendor modules or
722     components such as a VM, application or hostname. As with NFs and
723     NFCs, parent:child relationships may be communicated using colon as
724     a subfield delimiter.
725
726 -   Service providers who adopt the VES Common Event Format for internal
727     use, may provide PublisherName without the vendorName subfield. They
728     would typically identify an application, system, service or
729     microservice publishing the event (e.g., ‘Policy’, ‘So’,
730     ‘MobileCallRecording’ or ‘Dkat’). As with NFs and NFCs, parent:child
731     relationships may be communicated using colon as a subfield delimiter
732     (e.g., ApplicationName:ApplicationComponent).
733
734 The final subfield of the eventName name should describe, in a compact
735 camel case format the specific information being conveyed by the event.
736 In some cases, this final subfield may not be required (e.g., in the
737 case of certain heartbeats).
738
739 Examples of event names following the naming standards are provided
740 below:
741
742 - ``Tca_Vdbe-Ericsson_CpuThresholdExceeded``
743
744 - ``Heartbeat_Visbc:Mmc-Metaswitch``
745
746 - ``Syslog_Vdbe-Ericsson``
747
748 - ``Fault_MobileCallRecording_PilotNumberPoolExhaustion``
749
750 - ``Other_So:WanBonding_InstantiationPart1Complete``
751
752 .. _ves_eventid_usecases_7_2:
753
754 EventId Use Cases Examples
755 ++++++++++++++++++++++++++
756
757 ``eventId`` Examples:
758
759 **NOTE**: Please note, the following are only *examples*, and other formats
760 can be used provided they meet the requirement that the ``eventId`` is unique
761 for all events or unique fault occurrence.
762
763 **Example 1**: assumes a unique key for each domain consisting of domain
764 followed by an integer domain<n> or domainId<n>, where <n> is a positive integer,
765 e.g. fault000001, heartbeat000001, measurement000005,
766 notification3gppPerfFileReady0005
767
768 **Example 2**: assumes a unique integer key for all events across all domains
769 <n>: 000000001, 00000002, 000000003
770
771 Rules:
772
773 1. All domains except Fault: each time a subsequent event is sent the
774    integer part of eventId will increment by 1. Repeat of eventId
775    assumes duplicate event. Sequence number is set to 0 for all domains
776    except fault.
777
778 2. eventId construction for Fault Events:
779
780    a. Most likely scenario
781
782       *    The sourceName on each Fault event is the NF Instance Name
783            (pnf-name or vnf-name or vm-name) as entered in A&AI uniquely
784            identifying this instance of the NF.
785
786       *    The eventId on Fault events is the same every time a given
787            fault is raised (including onset and re-raise)
788
789             1. The startEpochMicrosec value for the Fault event is the
790                timestamp for when the fault onset occurs. Subsequent
791                events for the same fault will keep the same startEpochMicrosec
792                value.
793
794             2. lastEpochMicrosec indicates the current event time. This value
795                will be updated for each subsequent event for a given fault.
796
797             3. The sequence number for each Fault event is set to 1 when the
798                fault is raised and increments each time the same
799                fault event is raised, until a clear is sent.
800
801       *    After the fault is cleared, a new eventId is used.
802
803    .. image:: Use-Case-1.png
804
805    b. **Alternative Scenario**: Network Function When Fault Event Status is Not
806       Maintained.
807
808       *    The sourceName on each Fault event is the NF Instance Name
809            (pnf-name or vnf-name or vm-name) as entered in A&AI uniquely
810            identifying this instance of the NF.
811
812       *    The eventId on Fault events is the same every time a given
813            fault is raised or cleared, even if it is re-raised after it
814            had previously cleared.  So, for example, if EMS loses
815            contact with a particular device then a Fault event might be
816            sent for a raise, re-raise (because EMS has re-tried and
817            still can’t contact the device), clear (because EMS has
818            re-tried and it can contact the device) and then raise again
819            (because EMS has lost contact with the device again).  The
820            same eventId is used for all 4 of those Fault events.
821
822       *    The startEpochMicrosec value for each Fault event is the
823            timestamp for when that event is generated, not when the
824            fault first occurred.  So all 4 of the Fault events in the
825            previous bullet point would have a different timestamp.
826
827       *    lastEpochMicrosec indicates the current event time.
828
829       *    The sequence number for each Fault event is currently set to
830            0 on a raise and 1 on a clear.  We could change that so that
831            each Fault event is given a new monotonically increasing
832            sequence number whether it is a raise or a clear if that is
833            helpful (which is reset to 0 if the VM restarts) but they
834            won’t be consecutive.
835
836       *    Normally, a clear is expected for each fault to be sent from a
837            network function. However a few fault notification types will never
838            be re-raised or cleared. In this case, general rules for VES events
839            shall be followed with a new eventId for each event and sequence
840            number set to 0.
841
842    .. image:: Use-Case-2.png
843
844
845 Technology Independent Datatypes
846 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
847
848 ‘Fault’ Domain Datatypes
849 ++++++++++++++++++++++++
850
851 Datatype: faultFields
852 *********************
853
854 The faultFields datatype consists of the following fields:
855
856 +-----------------+---------+-----------+-------------------------------------+
857 | Field           | Type    | Required? | Description                         |
858 +=================+=========+===========+=====================================+
859 | alarmAdditional | hashMap | No        | Additional alarm information.       |
860 | Information     |         |           |                                     |
861 |                 |         |           |                                     |
862 |                 |         |           | - Note1: for SNMP mapping to VES,   |
863 |                 |         |           |   for hash key use OID of varbind,  |
864 |                 |         |           |   for value use incoming data for   |
865 |                 |         |           |   that varbind).                    |
866 |                 |         |           |                                     |
867 |                 |         |           | - Note2: Alarm ID for 3GPP should be|
868 |                 |         |           |   included (if applicable) in       |
869 |                 |         |           |   alarmAdditonalInformation as      |
870 |                 |         |           |   ‘alarmId’:’alarmIdValue’.         |
871 |                 |         |           |                                     |
872 |                 |         |           | Could contain managed object        |
873 |                 |         |           | instance as separate key:value;     |
874 |                 |         |           | could add probable cause as separate|
875 |                 |         |           | key:value.                          |
876 +-----------------+---------+-----------+-------------------------------------+
877 | alarmCondition  | string  | Yes       | Short name of the alarm             |
878 |                 |         |           | condition/problem, such as a trap   |
879 |                 |         |           | name. Should not have white space   |
880 |                 |         |           | (e.g., tpLgCgiNotInConfig,          |
881 |                 |         |           | BfdSessionDown, linkDown, etc…)     |
882 +-----------------+---------+-----------+-------------------------------------+
883 | alarmInterfaceA | string  | No        | Card, port, channel or interface    |
884 |                 |         |           | name of the device generating the   |
885 |                 |         |           | alarm. This could reflect managed   |
886 |                 |         |           | object.                             |
887 +-----------------+---------+-----------+-------------------------------------+
888 | eventCategory   | string  | No        | Event category, for example:        |
889 |                 |         |           | ‘license’, ‘link’, ‘routing’,       |
890 |                 |         |           | ‘security’, ‘signaling’             |
891 +-----------------+---------+-----------+-------------------------------------+
892 | eventSeverity   | string  | Yes       | Event severity enumeration:         |
893 |                 |         |           | ‘CRITICAL’, ‘MAJOR’, ‘MINOR’,       |
894 |                 |         |           | ‘WARNING’, ‘NORMAL’. NORMAL is used |
895 |                 |         |           | to represent clear.                 |
896 +-----------------+---------+-----------+-------------------------------------+
897 | eventSourceType | string  | Yes       | Examples: ‘card’, ‘host’, ‘other’,  |
898 |                 |         |           | ‘port’, ‘portThreshold’, ‘router’,  |
899 |                 |         |           | ‘slotThreshold’, ‘switch’,          |
900 |                 |         |           | ‘virtualMachine’,                   |
901 |                 |         |           | ‘virtualNetworkFunction’. This could|
902 |                 |         |           | be managed object class.            |
903 +-----------------+---------+-----------+-------------------------------------+
904 | faultFields\    | string  | Yes       | Version of the faultFields block as |
905 | Version         |         |           | "#.#" where # is a digit; see       |
906 |                 |         |           | section 1 for the correct digits to |
907 |                 |         |           | use.                                |
908 +-----------------+---------+-----------+-------------------------------------+
909 | specificProblem | string  | Yes       | Description of the alarm or problem |
910 |                 |         |           | (e.g., ‘eNodeB 155197 in PLMN       |
911 |                 |         |           | 310-410 with eNodeB name KYL05197 is|
912 |                 |         |           | lost’). 3GPP probable cause would be|
913 |                 |         |           | included in this field.             |
914 +-----------------+---------+-----------+-------------------------------------+
915 | vfStatus        | string  | Yes       | Virtual function status enumeration:|
916 |                 |         |           | ‘Active’, ‘Idle’, ‘Preparing to     |
917 |                 |         |           | terminate’, ‘Ready to terminate’,   |
918 |                 |         |           | ‘Requesting Termination’            |
919 +-----------------+---------+-----------+-------------------------------------+
920
921 Heartbeat’ Domain Datatypes
922 +++++++++++++++++++++++++++
923
924 Datatype: heartbeatFields
925 *************************
926
927 The heartbeatFields datatype is an optional field block for fields
928 specific to heartbeat events; it consists of the following fields:
929
930 +---------------+---------+-----------+---------------------------------------+
931 | Field         | Type    | Required? | Description                           |
932 +===============+=========+===========+=======================================+
933 | additional\   | hashMap | No        | Additional expansion fields if needed |
934 | Fields        |         |           |                                       |
935 +---------------+---------+-----------+---------------------------------------+
936 | heartbeat\    | string  | Yes       | Version of the heartbeatFields block  |
937 | FieldsVersion |         |           | as "#.#" where # is a digit; see      |
938 |               |         |           | section 1 for the correct digits to   |
939 |               |         |           | use.                                  |
940 +---------------+---------+-----------+---------------------------------------+
941 | heartbeat\    | Integer | Yes       | Current heartbeatInterval in seconds  |
942 | Interval      |         |           |                                       |
943 +---------------+---------+-----------+---------------------------------------+
944
945 ‘Measurements’ Domain Datatypes
946 +++++++++++++++++++++++++++++++
947
948 Note: NFs are required to report exactly one Measurement event per
949 period per sourceName.
950
951 Datatype: codecsInUse
952 *********************
953
954 The codecsInUse datatype consists of the following fields describing the
955 number of times an identified codec was used over the
956 measurementInterval:
957
958 +------------------+-----------+----------+--------------------------------+
959 | Field            | Type      | Required?| Description                    |
960 +==================+===========+==========+================================+
961 | codecIdentifer   | string    | Yes      | Description of the codec       |
962 +------------------+-----------+----------+--------------------------------+
963 | numberInUse      | integer   | Yes      | Number of such codecs in use   |
964 +------------------+-----------+----------+--------------------------------+
965
966 Datatype: cpuUsage
967 ******************
968
969 The cpuUsage datatype defines the usage of an identifier CPU and
970 consists of the following fields:
971
972 +------------+--------+-----------+-------------------------------------------+
973 | Field      | Type   | Required? | Description                               |
974 +============+========+===========+===========================================+
975 | cpu\       | number | No        | The amount of time the CPU cannot run due |
976 | Capacity\  |        |           | to contention, in milliseconds over the   |
977 | Contention |        |           | measurementInterval                       |
978 +------------+--------+-----------+-------------------------------------------+
979 | cpu\       | number | No        | The total CPU time that the NF/NFC/VM     |
980 | Demand\    |        |           | could use if there was no contention, in  |
981 | Avg        |        |           | milliseconds over the measurementInterval |
982 +------------+--------+-----------+-------------------------------------------+
983 | cpu\       | number | No        | CPU demand in MHz                         |
984 | Demand\    |        |           |                                           |
985 | Mhz        |        |           |                                           |
986 +------------+--------+-----------+-------------------------------------------+
987 | cpu\       | number | No        | CPU demand as a percentage of the         |
988 | Demand\    |        |           | provisioned capacity                      |
989 | Pct        |        |           |                                           |
990 +------------+--------+-----------+-------------------------------------------+
991 | cpu\       | string | Yes       | CPU Identifier                            |
992 | Identifier |        |           |                                           |
993 +------------+--------+-----------+-------------------------------------------+
994 | cpu\       | number | No        | Percentage of CPU time spent in the idle  |
995 | Idle       |        |           | task                                      |
996 +------------+--------+-----------+-------------------------------------------+
997 | cpu\       | number | No        | Percentage of time the VM is unable to run|
998 | Latency\   |        |           | because it is contending for access to the|
999 | Avg        |        |           | physical CPUs                             |
1000 +------------+--------+-----------+-------------------------------------------+
1001 | cpu\       | number | No        | The overhead demand above available       |
1002 | Overhead\  |        |           | allocations and reservations, in          |
1003 | Avg        |        |           | milliseconds over the measurementInterval |
1004 +------------+--------+-----------+-------------------------------------------+
1005 | cpuSwap\   | number | No        | Swap wait time, in milliseconds over the  |
1006 | WaitTime   |        |           | measurementInterval                       |
1007 +------------+--------+-----------+-------------------------------------------+
1008 | cpuUsage\  | number | No        | Percentage of time spent servicing        |
1009 | Interrupt  |        |           | interrupts                                |
1010 +------------+--------+-----------+-------------------------------------------+
1011 | cpuUsage\  | number | No        | Percentage of time spent running user     |
1012 | Nice       |        |           | space processes that have been niced      |
1013 +------------+--------+-----------+-------------------------------------------+
1014 | cpuUsage\  | number | No        | Percentage of time spent handling soft irq|
1015 | SoftIrq    |        |           | interrupts                                |
1016 +------------+--------+-----------+-------------------------------------------+
1017 | cpuUsage\  | number | No        | Percentage of time spent in involuntary   |
1018 | Steal      |        |           | wait which is neither user, system or idle|
1019 |            |        |           | time and is effectively time that went    |
1020 |            |        |           | missing                                   |
1021 +------------+--------+-----------+-------------------------------------------+
1022 | cpuUsage\  | number | No        | Percentage of time spent on system tasks  |
1023 | System     |        |           | running the kernel                        |
1024 +------------+--------+-----------+-------------------------------------------+
1025 | cpuUsage\  | number | No        | Percentage of time spent running un-niced |
1026 | User       |        |           | user space processes                      |
1027 +------------+--------+-----------+-------------------------------------------+
1028 | cpuWait    | number | No        | Percentage of CPU time spent waiting for  |
1029 |            |        |           | I/O operations to complete                |
1030 +------------+--------+-----------+-------------------------------------------+
1031 | percent\   | number | Yes       | Aggregate cpu usage of the virtual machine|
1032 | Usage      |        |           | on which the xNFC reporting the event is  |
1033 |            |        |           | running                                   |
1034 +------------+--------+-----------+-------------------------------------------+
1035
1036 Datatype: diskUsage
1037 *******************
1038
1039 The diskUsage datatype defines the usage of a disk and consists of the
1040 following fields:
1041
1042 +-------------+-------+----------+--------------------------------------------+
1043 | Field       | Type  | Required?| Description                                |
1044 +=============+=======+==========+============================================+
1045 | diskBus\    | number| No       | Number of bus resets over the              |
1046 | Resets      |       |          | measurementInterval                        |
1047 +-------------+-------+----------+--------------------------------------------+
1048 | disk\       | number| No       | Number of disk commands aborted over the   |
1049 | Commands\   |       |          | measurementInterval                        |
1050 | Aborted     |       |          |                                            |
1051 +-------------+-------+----------+--------------------------------------------+
1052 | disk\       | number| No       | Average number of commands per second over |
1053 | CommandsAvg |       |          | the measurementInterval                    |
1054 +-------------+-------+----------+--------------------------------------------+
1055 | diskFlush\  | number| No       | Total flush requests of the disk cache over|
1056 | Requests    |       |          | the measurementInterval                    |
1057 +-------------+-------+----------+--------------------------------------------+
1058 | diskFlush\  | number| No       | Milliseconds spent on disk cache flushing  |
1059 | Time        |       |          | over the measurementInterval               |
1060 +-------------+-------+----------+--------------------------------------------+
1061 | disk\       | string| Yes      | Disk Identifier                            |
1062 | Identifier  |       |          |                                            |
1063 +-------------+-------+----------+--------------------------------------------+
1064 | diskIo\     | number| No       | Milliseconds spent doing input/output      |
1065 | TimeAvg     |       |          | operations over 1 sec; treat this metric as|
1066 |             |       |          | a device load percentage where 1000ms      |
1067 |             |       |          | matches 100% load; provide the average over|
1068 |             |       |          | the measurement interval                   |
1069 +-------------+-------+----------+--------------------------------------------+
1070 | diskIoTime\ | number| No       | Milliseconds spent doing input/output      |
1071 | Last        |       |          | operations over 1 sec; treat this metric as|
1072 |             |       |          | a device load percentage where 1000ms      |
1073 |             |       |          | matches 100% load; provide the last value  |
1074 |             |       |          | measurement within the measurement interval|
1075 +-------------+-------+----------+--------------------------------------------+
1076 | diskIo\     | number| No       | Milliseconds spent doing input/output      |
1077 | TimeMax     |       |          | operations over 1 sec; treat this metric as|
1078 |             |       |          | a device load percentage where 1000ms      |
1079 |             |       |          | matches 100% load; provide the maximum     |
1080 |             |       |          | value measurement within the measurement   |
1081 |             |       |          | interval                                   |
1082 +-------------+-------+----------+--------------------------------------------+
1083 | diskIo\     | number| No       | Milliseconds spent doing input/output      |
1084 | TimeMin     |       |          | operations over 1 sec; treat this metric as|
1085 |             |       |          | a device load percentage where 1000ms      |
1086 |             |       |          | matches 100% load; provide the minimum     |
1087 |             |       |          | value measurement within the measurement   |
1088 |             |       |          | interval                                   |
1089 +-------------+-------+----------+--------------------------------------------+
1090 | diskMerged\ | number| No       | Number of logical read operations that were|
1091 | ReadAvg     |       |          | merged into physical read operations, e.g.,|
1092 |             |       |          | two logical reads were served by one       |
1093 |             |       |          | physical disk access; provide the average  |
1094 |             |       |          | measurement within the measurement interval|
1095 +-------------+-------+----------+--------------------------------------------+
1096 | diskMerged\ | number| No       | Number of logical read operations that were|
1097 | ReadLast    |       |          | merged into physical read operations, e.g.,|
1098 |             |       |          | two logical reads were served by one       |
1099 |             |       |          | physical disk access; provide the last     |
1100 |             |       |          | value measurement within the measurement   |
1101 |             |       |          | interval                                   |
1102 +-------------+-------+----------+--------------------------------------------+
1103 | diskMerged\ | number| No       | Number of logical read operations that were|
1104 | ReadMax     |       |          | merged into physical read operations, e.g.,|
1105 |             |       |          | two logical reads were served by one       |
1106 |             |       |          | physical disk access; provide the maximum  |
1107 |             |       |          | value measurement within the measurement   |
1108 |             |       |          | interval                                   |
1109 +-------------+-------+----------+--------------------------------------------+
1110 | diskMerged\ | number| No       | Number of logical read operations that were|
1111 | ReadMin     |       |          | merged into physical read operations, e.g.,|
1112 |             |       |          | two logical reads were served by one       |
1113 |             |       |          | physical disk access; provide the minimum  |
1114 |             |       |          | value measurement within the measurement   |
1115 |             |       |          | interval                                   |
1116 +-------------+-------+----------+--------------------------------------------+
1117 | diskMerged\ | number| No       | Number of logical write operations that    |
1118 | WriteAvg    |       |          | were merged into physical write operations,|
1119 |             |       |          | e.g., two logical writes were served by one|
1120 |             |       |          | physical disk access; provide the average  |
1121 |             |       |          | measurement within the measurement interval|
1122 +-------------+-------+----------+--------------------------------------------+
1123 | diskMerged\ | number| No       | Number of logical write operations that    |
1124 | WriteLast   |       |          | were merged into physical write operations,|
1125 |             |       |          | e.g., two logical writes were served by one|
1126 |             |       |          | physical disk access; provide the last     |
1127 |             |       |          | value measurement within the measurement   |
1128 |             |       |          | interval                                   |
1129 +-------------+-------+----------+--------------------------------------------+
1130 | diskMerged\ | number| No       | Number of logical write operations that    |
1131 | WriteMax    |       |          | were merged into physical write operations,|
1132 |             |       |          | e.g., two logical writes were served by one|
1133 |             |       |          | physical disk access; provide the maximum  |
1134 |             |       |          | value measurement within the measurement   |
1135 |             |       |          | interval                                   |
1136 +-------------+-------+----------+--------------------------------------------+
1137 | diskMerged\ | number| No       | Number of logical write operations that    |
1138 | WriteMin    |       |          | were merged into physical write operations,|
1139 |             |       |          | e.g., two logical writes were served by one|
1140 |             |       |          | physical disk access; provide the minimum  |
1141 |             |       |          | value measurement within the measurement   |
1142 |             |       |          | interval                                   |
1143 +-------------+-------+----------+--------------------------------------------+
1144 | diskOctets\ | number| No       | Number of octets per second read from a    |
1145 | Read Avg    |       |          | disk or partition; provide the average     |
1146 |             |       |          | measurement within the measurement interval|
1147 +-------------+-------+----------+--------------------------------------------+
1148 | diskOctets\ | number| No       | Number of octets per second read from a    |
1149 | Read        |       |          | disk or partition; provide the last        |
1150 |             |       |          | measurement within the measurement interval|
1151 | Last        |       |          |                                            |
1152 +-------------+-------+----------+--------------------------------------------+
1153 | diskOctets\ | number| No       | Number of octets per second read from a    |
1154 | Read Max    |       |          | disk or partition; provide the maximum     |
1155 |             |       |          | measurement within the measurement interval|
1156 +-------------+-------+----------+--------------------------------------------+
1157 | diskOctets\ | number| No       | Number of octets per second read from a    |
1158 | Read Min    |       |          | disk or partition; provide the minimum     |
1159 |             |       |          | measurement within the measurement interval|
1160 +-------------+-------+----------+--------------------------------------------+
1161 | diskOctets\ | number| No       | Number of octets per second written to a   |
1162 | Write Avg   |       |          | disk or partition; provide the average     |
1163 |             |       |          | measurement within the measurement interval|
1164 +-------------+-------+----------+--------------------------------------------+
1165 | diskOctets\ | number| No       | Number of octets per second written to a   |
1166 | Write Last  |       |          | disk or partition; provide the last        |
1167 |             |       |          | measurement within the measurement interval|
1168 +-------------+-------+----------+--------------------------------------------+
1169 | diskOctets\ | number| No       | Number of octets per second written to a   |
1170 | WriteMax    |       |          | disk or partition; provide the maximum     |
1171 |             |       |          | measurement within the measurement interval|
1172 +-------------+-------+----------+--------------------------------------------+
1173 | diskOctets\ | number| No       | Number of octets per second written to a   |
1174 | WriteMin    |       |          | disk or partition; provide the minimum     |
1175 |             |       |          | measurement within the measurement interval|
1176 +-------------+-------+----------+--------------------------------------------+
1177 | diskOps\    | number| No       | Number of read operations per second issued|
1178 | ReadAvg     |       |          | to the disk; provide the average           |
1179 |             |       |          | measurement within the measurement interval|
1180 +-------------+-------+----------+--------------------------------------------+
1181 | diskOps\    | number| No       | Number of read operations per second issued|
1182 | ReadLast    |       |          | to the disk; provide the last measurement  |
1183 |             |       |          | within the measurement interval            |
1184 +-------------+-------+----------+--------------------------------------------+
1185 | diskOps\    | number| No       | Number of read operations per second issued|
1186 | ReadMax     |       |          | to the disk; provide the maximum           |
1187 |             |       |          | measurement within the measurement interval|
1188 +-------------+-------+----------+--------------------------------------------+
1189 | diskOps\    | number| No       | Number of read operations per second issued|
1190 | ReadMin     |       |          | to the disk; provide the minimum           |
1191 |             |       |          | measurement within the measurement interval|
1192 +-------------+-------+----------+--------------------------------------------+
1193 | diskOps\    | number| No       | Number of write operations per second      |
1194 | WriteAvg    |       |          | issued to the disk; provide the average    |
1195 |             |       |          | measurement within the measurement interval|
1196 +-------------+-------+----------+--------------------------------------------+
1197 | diskOps\    | number| No       | Number of write operations per second      |
1198 | WriteLast   |       |          | issued to the disk; provide the last       |
1199 |             |       |          | measurement within the measurement interval|
1200 +-------------+-------+----------+--------------------------------------------+
1201 | diskOps\    | number| No       | Number of write operations per second      |
1202 | Write Max   |       |          | issued to the disk; provide the maximum    |
1203 |             |       |          | measurement within the measurement interval|
1204 +-------------+-------+----------+--------------------------------------------+
1205 | diskOps\    | number| No       | Number of write operations per second      |
1206 | WriteMin    |       |          | issued to the disk; provide the minimum    |
1207 |             |       |          | measurement within the measurement interval|
1208 +-------------+-------+----------+--------------------------------------------+
1209 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1210 | Operations\ |       |          | second; provide the average measurement    |
1211 | Avg         |       |          | within the measurement interval            |
1212 +-------------+-------+----------+--------------------------------------------+
1213 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1214 | Operations\ |       |          | second; provide the last measurement within|
1215 | Last        |       |          | the measurement interval                   |
1216 +-------------+-------+----------+--------------------------------------------+
1217 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1218 | Operations\ |       |          | second; provide the maximum measurement    |
1219 | Max         |       |          | within the measurement interval            |
1220 +-------------+-------+----------+--------------------------------------------+
1221 | diskPending\| number| No       | Queue size of pending I/O operations per   |
1222 | Operations\ |       |          | second; provide the minimum measurement    |
1223 | Min         |       |          | within the measurement interval            |
1224 +-------------+-------+----------+--------------------------------------------+
1225 | diskRead\   | number| No       | Average number of read commands issued per |
1226 | CommandsAvg |       |          | second to the disk over the                |
1227 |             |       |          | measurementInterval                        |
1228 +-------------+-------+----------+--------------------------------------------+
1229 | diskTime    | number| No       | Nanoseconds spent on disk cache            |
1230 |             |       |          | reads/writes within the measurement        |
1231 |             |       |          | interval                                   |
1232 +-------------+-------+----------+--------------------------------------------+
1233 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1234 | ReadAvg     |       |          | complete; provide the average measurement  |
1235 |             |       |          | within the measurement interval            |
1236 +-------------+-------+----------+--------------------------------------------+
1237 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1238 | Read Last   |       |          | complete; provide the last measurement     |
1239 |             |       |          | within the measurement interval            |
1240 +-------------+-------+----------+--------------------------------------------+
1241 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1242 | Read Max    |       |          | complete; provide the maximum measurement  |
1243 |             |       |          | within the measurement interval            |
1244 +-------------+-------+----------+--------------------------------------------+
1245 | diskTime\   | number| No       | Milliseconds a read operation took to      |
1246 | Read Min    |       |          | complete; provide the minimum measurement  |
1247 |             |       |          | within the measurement interval            |
1248 +-------------+-------+----------+--------------------------------------------+
1249 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1250 | Write Avg   |       |          | complete; provide the average measurement  |
1251 |             |       |          | within the measurement interval            |
1252 +-------------+-------+----------+--------------------------------------------+
1253 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1254 | Write Last  |       |          | complete; provide the last measurement     |
1255 |             |       |          | within the measurement interval            |
1256 +-------------+-------+----------+--------------------------------------------+
1257 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1258 | Write Max   |       |          | complete; provide the maximum measurement  |
1259 |             |       |          | within the measurement interval            |
1260 +-------------+-------+----------+--------------------------------------------+
1261 | diskTime\   | number| No       | Milliseconds a write operation took to     |
1262 | Write Min   |       |          | complete; provide the minimum measurement  |
1263 |             |       |          | within the measurement interval            |
1264 +-------------+-------+----------+--------------------------------------------+
1265 | diskTotal\  | number| No       | Average read time from the perspective of a|
1266 | ReadLatency\|       |          | Guest OS: sum of the Kernel Read Latency   |
1267 | Avg         |       |          | and Physical Device Read Latency in        |
1268 |             |       |          | milliseconds over the measurement interval |
1269 +-------------+-------+----------+--------------------------------------------+
1270 | diskTotal\  | number| No       | Average write time from the perspective of |
1271 | Write\      |       |          | a Guest OS: sum of the Kernel Write Latency|
1272 | LatencyAvg  |       |          | and Physical Device Write Latency in       |
1273 |             |       |          | milliseconds over the measurement interval |
1274 +-------------+-------+----------+--------------------------------------------+
1275 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1276 | WeightedIo\ |       |          | completion time and the backlog that may be|
1277 | TimeAvg     |       |          | accumulating. Value is the average within  |
1278 |             |       |          | the collection interval.                   |
1279 +-------------+-------+----------+--------------------------------------------+
1280 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1281 | WeightedIo\ |       |          | completion time and the backlog that may be|
1282 | TimeLast    |       |          | accumulating. Value is the last within the |
1283 |             |       |          | collection interval.                       |
1284 +-------------+-------+----------+--------------------------------------------+
1285 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1286 | WeightedIo\ |       |          | completion time and the backlog that may be|
1287 | TimeMax     |       |          | accumulating. Value is the maximum within  |
1288 |             |       |          | the collection interval.                   |
1289 +-------------+-------+----------+--------------------------------------------+
1290 | disk\       | number| No       | Measure in ms over 1 sec of both I/O       |
1291 | WeightedIo\ |       |          | completion time and the backlog that may be|
1292 | TimeMin     |       |          | accumulating. Value is the minimum within  |
1293 |             |       |          | the collection interval.                   |
1294 +-------------+-------+----------+--------------------------------------------+
1295 | diskWrite\  | number| No       | Average number of write commands issued per|
1296 | CommandsAvg |       |          | second to the disk over the                |
1297 |             |       |          | measurementInterval                        |
1298 +-------------+-------+----------+--------------------------------------------+
1299
1300 Datatype: filesystemUsage
1301 *************************
1302
1303 The filesystemUsage datatype consists of the following fields:
1304
1305 +-------------+--------+-----------+------------------------------------------+
1306 | Field       | Type   | Required? | Description                              |
1307 +=============+========+===========+==========================================+
1308 | filesystem\ | string | Yes       | File system name                         |
1309 | Name        |        |           |                                          |
1310 +-------------+--------+-----------+------------------------------------------+
1311 | block\      | number | Yes       | Configured block storage capacity in GB  |
1312 | Configured  |        |           |                                          |
1313 +-------------+--------+-----------+------------------------------------------+
1314 | blockIops   | number | Yes       | Block storage input-output operations per|
1315 |             |        |           | second                                   |
1316 +-------------+--------+-----------+------------------------------------------+
1317 | blockUsed   | number | Yes       | Used block storage capacity in GB        |
1318 +-------------+--------+-----------+------------------------------------------+
1319 | ephemeral\  | number | Yes       | Configured ephemeral storage capacity in |
1320 | Configured  |        |           | GB                                       |
1321 +-------------+--------+-----------+------------------------------------------+
1322 | ephemeral\  | number | Yes       | Ephemeral storage input-output operations|
1323 | Iops        |        |           | per second                               |
1324 +-------------+--------+-----------+------------------------------------------+
1325 | ephemeral\  | number | Yes       | Used ephemeral storage capacity in GB    |
1326 | Used        |        |           |                                          |
1327 +-------------+--------+-----------+------------------------------------------+
1328
1329 Datatype: hugePages
1330 *******************
1331
1332 The hugePages datatype provides metrics on system hugePages; it consists
1333 of the following fields:
1334
1335 +--------------------+--------+----------+------------------------------------+
1336 | Field              | Type   | Required?| Description                        |
1337 +====================+========+==========+====================================+
1338 | bytesFree          | number | No       | Number of free hugePages in bytes  |
1339 +--------------------+--------+----------+------------------------------------+
1340 | bytesUsed          | number | No       | Number of used hugePages in bytes  |
1341 +--------------------+--------+----------+------------------------------------+
1342 | hugePagesIdentifier| string | Yes      | HugePages identifier               |
1343 +--------------------+--------+----------+------------------------------------+
1344 | percentFree        | number | No       | Number of free hugePages in percent|
1345 +--------------------+--------+----------+------------------------------------+
1346 | percentUsed        | number | No       | Number of used hugePages in percent|
1347 +--------------------+--------+----------+------------------------------------+
1348 | vmPageNumberFree   | number | No       | Number of free vmPages in numbers  |
1349 +--------------------+--------+----------+------------------------------------+
1350 | vmPageNumberUsed   | number | No       | Number of used vmPages in numbers  |
1351 +--------------------+--------+----------+------------------------------------+
1352
1353 Datatype: ipmi (Intelligent Platform Management Interface)
1354 **********************************************************
1355
1356 The ipmi datatype provides intelligent platform management interface
1357 metrics; it consists of the following fields:
1358
1359 +-------------+---------------------+-----------+-----------------------------+
1360 | Field       | Type                | Required? | Description                 |
1361 +=============+=====================+===========+=============================+
1362 | exitAir\    | number              | No        | System fan exit air flow    |
1363 | Temperature |                     |           | temperature in Celsius      |
1364 +-------------+---------------------+-----------+-----------------------------+
1365 | frontPanel\ | number              | No        | Front panel temp in Celsius |
1366 | Temperature |                     |           |                             |
1367 +-------------+---------------------+-----------+-----------------------------+
1368 | ioModule\   | number              | No        | Io module temp in Celsius   |
1369 | Temperature |                     |           |                             |
1370 +-------------+---------------------+-----------+-----------------------------+
1371 | ipmi\       | ipmiBaseboard       | No        | Array of ipmiBaseboard      |
1372 | Baseboard\  | Temperature [ ]     |           | Temperature objects         |
1373 | Temperature\|                     |           |                             |
1374 | Array       |                     |           |                             |
1375 +-------------+---------------------+-----------+-----------------------------+
1376 | ipmi\       | ipmiBaseboard       | No        | Array of ipmiBaseboard      |
1377 | Baseboard\  | VoltageRegulator [ ]|           | VoltageRegulator objects    |
1378 | Voltage\    |                     |           |                             |
1379 | Regulator   |                     |           |                             |
1380 | Array       |                     |           |                             |
1381 +-------------+---------------------+-----------+-----------------------------+
1382 | ipmiBattery\| ipmiBattery [ ]     | No        | Array of ipmiBattery objects|
1383 | Array       |                     |           |                             |
1384 +-------------+---------------------+-----------+-----------------------------+
1385 | ipmiFanArray| ipmiFan [ ]         | No        | Array of ipmiFan objects    |
1386 +-------------+---------------------+-----------+-----------------------------+
1387 | ipmiGlobal\ | ipmiGlobalAggregate\| No        | ipmi global aggregate       |
1388 | Aggregate\  | TemperatureMargin []|           | temperature margin          |
1389 | Temperature\|                     |           |                             |
1390 | MarginArray |                     |           |                             |
1391 +-------------+---------------------+-----------+-----------------------------+
1392 | ipmiHsbp\   | ipmiHsbp [ ]        | No        | Array of ipmiHsbp objects   |
1393 | Array       |                     |           |                             |
1394 +-------------+---------------------+-----------+-----------------------------+
1395 | ipmiNicArray| ipmiNic [ ]         | No        | Array of ipmiNic objects    |
1396 +-------------+---------------------+-----------+-----------------------------+
1397 | ipmiPower\  | ipmiPowerSupply [ ] | No        | Array of ipmiPowerSupply    |
1398 | SupplyArray |                     |           | objects                     |
1399 +-------------+---------------------+-----------+-----------------------------+
1400 | ipmi\       | ipmiProcessor [ ]   | No        | Array of ipmiProcessor      |
1401 | Processor\  |                     |           | objects                     |
1402 | Array       |                     |           |                             |
1403 +-------------+---------------------+-----------+-----------------------------+
1404 | system\     | number              | No        | Airflow in cubic feet per   |
1405 | Airflow     |                     |           | minute (cfm)                |
1406 +-------------+---------------------+-----------+-----------------------------+
1407
1408 Datatype: ipmiBaseboardTemperature
1409 **********************************
1410
1411 The ipmiBaseboardTemperature datatype consists of the following fields
1412 which describe ipmi baseboard temperature metrics:
1413
1414 +-------------+--------+-----------+------------------------------------------+
1415 | Field       | Type   | Required? | Description                              |
1416 +=============+========+===========+==========================================+
1417 | baseboard\  | number | No        | Baseboard temperature in celsius         |
1418 | Temperature |        |           |                                          |
1419 +-------------+--------+-----------+------------------------------------------+
1420 | baseboard\  | string | Yes       | Identifier for the location where the    |
1421 | Temperature\|        |           | temperature is taken                     |
1422 | Identifier  |        |           |                                          |
1423 +-------------+--------+-----------+------------------------------------------+
1424
1425 Datatype: ipmiBaseboardVoltageRegulator
1426 ***************************************
1427
1428 The ipmiBaseboardVoltageRegulator datatype consists of the following
1429 fields which describe ipmi baseboard voltage regulator metrics:
1430
1431 +--------------------+-------+----------+-------------------------------------+
1432 | Field              | Type  | Required?| Description                         |
1433 +====================+=======+==========+=====================================+
1434 | baseboardVoltage\  | string| Yes      | Identifier for the baseboard voltage|
1435 | RegulatorIdentifier|       |          | regulator                           |
1436 +--------------------+-------+----------+-------------------------------------+
1437 | voltageRegulator\  | number| No       | Voltage regulator temperature in    |
1438 | Temperature        |       |          | celsius                             |
1439 +--------------------+-------+----------+-------------------------------------+
1440
1441 Datatype: ipmiBattery
1442 *********************
1443
1444 The ipmiBattery datatype consists of the following fields which describe
1445 ipmi battery metrics:
1446
1447 +---------------------+--------+----------+------------------------------+
1448 | Field               | Type   | Required?| Description                  |
1449 +=====================+========+==========+==============================+
1450 | batteryIdentifier   | string | Yes      | Identifier for the battery   |
1451 +---------------------+--------+----------+------------------------------+
1452 | batteryType         | string | No       | Type of battery              |
1453 +---------------------+--------+----------+------------------------------+
1454 | batteryVoltageLevel | number | No       | Battery voltage level        |
1455 +---------------------+--------+----------+------------------------------+
1456
1457 Datatype: ipmiFan
1458 *****************
1459
1460 The ipmiFan datatype consists of the following fields which describe
1461 ipmi fan metrics:
1462
1463 +--------------+-------+----------+-------------------------------------------+
1464 | Field        | Type  | Required?| Description                               |
1465 +==============+=======+==========+===========================================+
1466 | fanIdentifier| string| Yes      | Identifier for the fan                    |
1467 +--------------+-------+----------+-------------------------------------------+
1468 | fanSpeed     | number| No       | Fan speed in revolutions per minute (rpm) |
1469 +--------------+-------+----------+-------------------------------------------+
1470
1471 Datatype: ipmiGlobalAggregateTemperatureMargin
1472 **********************************************
1473
1474 The ipmiGlobalAggregateTemperatureMargin datatype consists of the
1475 following fields:
1476
1477 +-------------+-------+----------+--------------------------------------------+
1478 | Field       | Type  | Required?| Description                                |
1479 +=============+=======+==========+============================================+
1480 | global\     | number| No       | Temperature margin in Celsius relative to a|
1481 | Aggregate\  |       |          | throttling thermal trip point              |
1482 | Temperature\|       |          |                                            |
1483 | Margin      |       |          |                                            |
1484 +-------------+-------+----------+--------------------------------------------+
1485 | global\     | string| Yes      | Identifier for the ipmi global aggregate   |
1486 | Aggregate\  |       |          | temperature margin metrics                 |
1487 | Temperature\|       |          |                                            |
1488 | Margin\     |       |          |                                            |
1489 | Identifier  |       |          |                                            |
1490 +-------------+-------+----------+--------------------------------------------+
1491
1492 Datatype: ipmiHsbp
1493 ******************
1494
1495 The ipmiHsbp datatype provides ipmi hot swap backplane power metrics; it
1496 consists of the following fields:
1497
1498 +------------+-------+----------+---------------------------------------------+
1499 | Field      | Type  | Required?| Description                                 |
1500 +============+=======+==========+=============================================+
1501 | hsbp\      | string| Yes      | Identifier for the hot swap backplane power |
1502 | Identifier |       |          | unit                                        |
1503 +------------+-------+----------+---------------------------------------------+
1504 | hsbp\      | number| No       | Hot swap backplane power temperature in     |
1505 | Temperature|       |          | celsius                                     |
1506 +------------+-------+----------+---------------------------------------------+
1507
1508 Datatype: ipmiNic
1509 *****************
1510
1511 The ipmiNic datatype provides network interface control care metrics; it
1512 consists of the following fields:
1513
1514 +------------+-------+----------+---------------------------------------------+
1515 | Field      | Type  | Required?| Description                                 |
1516 +============+=======+==========+=============================================+
1517 | nic\       | string| Yes      | Identifier for the network interface control|
1518 | Identifier |       |          | card                                        |
1519 +------------+-------+----------+---------------------------------------------+
1520 | nic\       | number| No       | nic temperature in Celsius                  |
1521 | Temperature|       |          |                                             |
1522 +------------+-------+----------+---------------------------------------------+
1523
1524 Datatype: ipmiPowerSupply
1525 *************************
1526
1527 The ipmiPowerSupply datatype provides ipmi power supply metrics; it
1528 consists of the following fields:
1529
1530 +-----------+-------+----------+----------------------------------------------+
1531 |Field      | Type  | Required?| Description                                  |
1532 +===========+=======+==========+==============================================+
1533 |power\     | number| No       | Current output voltage as a percentage of the|
1534 |Supply\    |       |          | design specified level                       |
1535 |Current\   |       |          |                                              |
1536 |Output\    |       |          |                                              |
1537 |Percent    |       |          |                                              |
1538 +-----------+-------+----------+----------------------------------------------+
1539 |power\     | string| Yes      | Identifier for the power supply              |
1540 |Supply\    |       |          |                                              |
1541 |Identifier |       |          |                                              |
1542 +-----------+-------+----------+----------------------------------------------+
1543 |power\     | number| No       | Input power in watts                         |
1544 |Supply\    |       |          |                                              |
1545 |Input\     |       |          |                                              |
1546 |Power      |       |          |                                              |
1547 +-----------+-------+----------+----------------------------------------------+
1548 |power\     | number| No       | Power supply temperature in Celsius          |
1549 |Supply\    |       |          |                                              |
1550 |Temperature|       |          |                                              |
1551 +-----------+-------+----------+----------------------------------------------+
1552
1553 Datatype: ipmiProcessor
1554 ***********************
1555
1556 The ipmiProcessor datatype provides ipmi processor metrics; it consists
1557 of the following fields:
1558
1559 +------------+------------------+-----------+---------------------------------+
1560 | Field      | Type             | Required? | Description                     |
1561 +============+==================+===========+=================================+
1562 | processor\ | processorDimm    | No        | Array of processorDimmAggregate |
1563 | Dimm\      | AggregateThermal |           | ThermalMargin objects           |
1564 | Aggregate\ | Margin [ ]       |           |                                 |
1565 | Thermal\   |                  |           |                                 |
1566 | MarginArray|                  |           |                                 |
1567 +------------+------------------+-----------+---------------------------------+
1568 | processor\ | number           | No        | Front panel temperature in      |
1569 | DtsThermal\|                  |           | celsius                         |
1570 | Margin     |                  |           |                                 |
1571 +------------+------------------+-----------+---------------------------------+
1572 | processor\ | string           | Yes       | Identifier for the power supply |
1573 | Identifier |                  |           |                                 |
1574 +------------+------------------+-----------+---------------------------------+
1575 | processor\ | number           | No        | Io module temperatue in celsius |
1576 | Thermal\   |                  |           |                                 |
1577 | Control\   |                  |           |                                 |
1578 | Percent    |                  |           |                                 |
1579 +------------+------------------+-----------+---------------------------------+
1580
1581 Datatype: latencyBucketMeasure
1582 ******************************
1583
1584 The latencyBucketMeasure datatype consists of the following fields which
1585 describe the number of counts falling within a defined latency bucket:
1586
1587 +-----------+-------+----------+----------------------------------------------+
1588 | Field     | Type  | Required?| Description                                  |
1589 +===========+=======+==========+==============================================+
1590 | counts\   | number| Yes      | Number of counts falling within a defined    |
1591 | InThe\    |       |          | latency bucket                               |
1592 | Bucket    |       |          |                                              |
1593 +-----------+-------+----------+----------------------------------------------+
1594 | highEnd\  | number| No       | High end of bucket range (typically in ms)   |
1595 | OfLatency\|       |          |                                              |
1596 | Bucket    |       |          |                                              |
1597 +-----------+-------+----------+----------------------------------------------+
1598 | lowEndOf\ | number| No       | Low end of bucket range (typically in ms)    |
1599 | Latency\  |       |          |                                              |
1600 | Bucket    |       |          |                                              |
1601 +-----------+-------+----------+----------------------------------------------+
1602
1603 Datatype: load
1604 **************
1605
1606 The load datatype provides metrics on system cpu and io utilization
1607 obtained using /proc/loadavg; it consists of the following fields:
1608
1609 +----------+-------+----------+-----------------------------------------------+
1610 | Field    | Type  | Required?| Description                                   |
1611 +==========+=======+==========+===============================================+
1612 | longTerm | number| No       | number of jobs in the run queue (state R, cpu |
1613 |          |       |          | utilization) or waiting for disk I/O (state D,|
1614 |          |       |          | io utilization) averaged over 15 minutes using|
1615 |          |       |          | /proc/loadavg                                 |
1616 +----------+-------+----------+-----------------------------------------------+
1617 | midTerm  | number| No       | number of jobs in the run queue (state R, cpu |
1618 |          |       |          | utilization) or waiting for disk I/O (state D,|
1619 |          |       |          | io utilization) averaged over 5 minutes using |
1620 |          |       |          | /proc/loadavg                                 |
1621 +----------+-------+----------+-----------------------------------------------+
1622 | shortTerm| number| No       | number of jobs in the run queue (state R, cpu |
1623 |          |       |          | utilization) or waiting for disk I/O (state D,|
1624 |          |       |          | io utilization) averaged over 1 minute using  |
1625 |          |       |          | /proc/loadavg                                 |
1626 +----------+-------+----------+-----------------------------------------------+
1627
1628 Datatype: machineCheckException
1629 *******************************
1630
1631 The machineCheckException datatype describes machine check exceptions;
1632 it consists of the following fields:
1633
1634 +-------------+-------+----------+--------------------------------------------+
1635 | Field       | Type  | Required?| Description                                |
1636 +=============+=======+==========+============================================+
1637 | corrected\  | number| No       | Total hardware errors that were corrected  |
1638 | Memory\     |       |          | by the hardware (e.g. data corruption      |
1639 | Errors      |       |          | corrected via  ECC) over the               |
1640 |             |       |          | measurementInterval. These errors do not   |
1641 |             |       |          | require immediate software actions, but are|
1642 |             |       |          | still reported for accounting and          |
1643 |             |       |          | predictive failure analysis                |
1644 +-------------+-------+----------+--------------------------------------------+
1645 | corrected\  | number| No       | Total hardware errors that were corrected  |
1646 | Memory\     |       |          | by the hardware over the last one hour     |
1647 | Errors      |       |          |                                            |
1648 | In1Hr       |       |          |                                            |
1649 +-------------+-------+----------+--------------------------------------------+
1650 | uncorrected\| number| No       | Total uncorrected hardware errors that were|
1651 | Memory\     |       |          | detected by the hardware (e.g., causing    |
1652 | Errors      |       |          | data corruption) over the                  |
1653 |             |       |          | measurementInterval. These errors require a|
1654 |             |       |          | software response.                         |
1655 +-------------+-------+----------+--------------------------------------------+
1656 | uncorrected\| number| No       | Total uncorrected hardware errors that were|
1657 | Memory\     |       |          | detected by the hardware over the last one |
1658 | Errors      |       |          | hour                                       |
1659 | In1Hr       |       |          |                                            |
1660 +-------------+-------+----------+--------------------------------------------+
1661 | vm\         | string| Yes      | Virtual machine identifier associated with |
1662 | Identifier  |       |          | the machine check exception                |
1663 +-------------+-------+----------+--------------------------------------------+
1664
1665 Datatype: measurementFields
1666 ***************************
1667
1668 The ``measurementFields`` datatype consists of the following fields:
1669
1670 +-------------+--------------+----------+-------------------------------------+
1671 | Field       | Type         | Required?| Description                         |
1672 +=============+==============+==========+=====================================+
1673 | additional\ | hashMap      | No       | Additional measurement fields if    |
1674 | Fields      |              |          | needed                              |
1675 +-------------+--------------+----------+-------------------------------------+
1676 | additional\ | arrayOfNamed\| No       | Array of named hashMap if needed    |
1677 | Measurements| HashMap      |          |                                     |
1678 +-------------+--------------+----------+-------------------------------------+
1679 | additional\ | arrayOf\     | No       | Array of JSON objects described by  |
1680 | Objects     | JsonObject   |          | name, schema and other              |
1681 |             |              |          | meta-information, if needed         |
1682 +-------------+--------------+----------+-------------------------------------+
1683 | codec\      | codecs\      | No       | Array of codecs in use              |
1684 | Usage\      | InUse []     |          |                                     |
1685 | Array       |              |          |                                     |
1686 +-------------+--------------+----------+-------------------------------------+
1687 | concurrent\ | integer      | No       | Peak concurrent sessions for the VM |
1688 | Sessions    |              |          | or xNF (depending on the context)   |
1689 |             |              |          | over the measurementInterval        |
1690 +-------------+--------------+----------+-------------------------------------+
1691 | configured\ | integer      | No       | Depending on the context over the   |
1692 | Entities    |              |          | measurementInterval: peak total     |
1693 |             |              |          | number of users, subscribers,       |
1694 |             |              |          | devices, adjacencies, etc., for the |
1695 |             |              |          | VM, or peak total number of         |
1696 |             |              |          | subscribers, devices, etc., for the |
1697 |             |              |          | xNF                                 |
1698 +-------------+--------------+----------+-------------------------------------+
1699 | cpuUsage\   | cpuUsage []  | No       | Usage of an array of CPUs           |
1700 | Array       |              |          |                                     |
1701 +-------------+--------------+----------+-------------------------------------+
1702 | diskUsage\  | diskUsage [] | No       | Usage of an array of disks          |
1703 | Array       |              |          |                                     |
1704 +-------------+--------------+----------+-------------------------------------+
1705 | feature\    | hashMap      | No       | The hashMap key should identify the |
1706 | UsageArray  |              |          | feature, while the value defines the|
1707 |             |              |          | number of times the identified      |
1708 |             |              |          | feature was used                    |
1709 +-------------+--------------+----------+-------------------------------------+
1710 | filesystem\ | filesystem\  | No       | Filesystem usage of the VM on which |
1711 | UsageArray  | Usage [ ]    |          | the xNFC reporting the event is     |
1712 |             |              |          | running                             |
1713 +-------------+--------------+----------+-------------------------------------+
1714 | hugePages\  | hugePages [ ]| No       | Array of metrics on hugePages       |
1715 | Array       |              |          |                                     |
1716 +-------------+--------------+----------+-------------------------------------+
1717 | ipmi        | ipmi         | No       | Intelligent platform management     |
1718 |             |              |          | interface metrics                   |
1719 +-------------+--------------+----------+-------------------------------------+
1720 | latency\    | latency\     | No       | Array of integers representing      |
1721 | Distribution| Bucket\      |          | counts of requests whose latency in |
1722 |             | Measure [ ]  |          | milliseconds falls within per-xNF   |
1723 |             |              |          | configured ranges; where latency is |
1724 |             |              |          | the duration between a service      |
1725 |             |              |          | request and its fulfillment.        |
1726 +-------------+--------------+----------+-------------------------------------+
1727 | loadArray   | load [ ]     | No       | Array of system load metrics        |
1728 +-------------+--------------+----------+-------------------------------------+
1729 | machine\    | machine\     | No       | Array of machine check exceptions   |
1730 | Check\      | Check\       |          |                                     |
1731 | Exception\  | Exception [ ]|          |                                     |
1732 | Array       |              |          |                                     |
1733 +-------------+--------------+----------+-------------------------------------+
1734 | mean\       | number       | No       | Mean seconds required to respond to |
1735 | Request\    |              |          | each request for the VM on which the|
1736 | Latency     |              |          | xNFC reporting the event is running |
1737 +-------------+--------------+----------+-------------------------------------+
1738 | measurement\| string       | Yes      | Version of the measurementFields    |
1739 | Fields\     |              |          | block as "#.#" where # is a digit;  |
1740 | Version     |              |          | see section 1 for the correct digits|
1741 |             |              |          | to use.                             |
1742 +-------------+--------------+----------+-------------------------------------+
1743 | measurement\| number       | Yes      | Interval over which measurements are|
1744 | Interval    |              |          | being reported in seconds           |
1745 +-------------+--------------+----------+-------------------------------------+
1746 | memoryUsage\| memory\      | No       | Memory usage of an array of VMs     |
1747 | Array       | Usage []     |          |                                     |
1748 +-------------+--------------+----------+-------------------------------------+
1749 | nfcScaling\ | integer      | No       | Represents busy-ness of the network |
1750 | Metric      |              |          | function from 0 to 100 as reported  |
1751 |             |              |          | by the nfc                          |
1752 +-------------+--------------+----------+-------------------------------------+
1753 | nic\        | nic\         | No       | Performance metrics of an array of  |
1754 | Performance\| Performance  |          | network interface cards             |
1755 | Array       | [ ]          |          |                                     |
1756 +-------------+--------------+----------+-------------------------------------+
1757 | numberOf\   | integer      | No       | Number of media ports in use        |
1758 | MediaPorts\ |              |          |                                     |
1759 | InUse       |              |          |                                     |
1760 +-------------+--------------+----------+-------------------------------------+
1761 | process\    | process\     | No       | Array of metrics on system processes|
1762 | StatsArray  | Stats [ ]    |          |                                     |
1763 +-------------+--------------+----------+-------------------------------------+
1764 | request\    | number       | No       | Peak rate of service requests per   |
1765 | Rate        |              |          | second to the xNF over the          |
1766 |             |              |          | measurementInterval                 |
1767 +-------------+--------------+----------+-------------------------------------+
1768
1769
1770 Note on Measurement Expansion Fields
1771 """"""""""""""""""""""""""""""""""""
1772
1773 The ``measurementFields`` data type provides fields that can be used to
1774 pass additional data with the event. These fields are listed below and
1775 referred to as expansion fields:
1776
1777 * ``additionalFields``
1778 * ``additionalObjects``
1779 * ``additionalMeasurements``
1780
1781 When expansion fields are used, the goal is to avoid custom development
1782 by the service provider collecting the fields, since custom development
1783 adds obvious cost, delay and resource overhead. In the domain of
1784 measurements, it is expected that a high percentage of use cases for
1785 extensible fields can be satisfied by using the ``additionalMeasurements``
1786 ``arrayOfNamedHashMap`` data structure in combination with a YAML registration
1787 file (provided at design time). The YAML registration file conveys
1788 metadata about the processing of ``additionalMeasurements``. For more
1789 information, please see the VES Event Registration specification and in
1790 particular the ``aggregationRole``, ``castTo``, and ``isHomogeneous`` keywords.
1791
1792 Datatype: memoryUsage
1793 *********************
1794
1795 The memoryUsage datatype defines the memory usage of a virtual machine
1796 and consists of the following fields:
1797
1798 +-----------+-------+----------+----------------------------------------------+
1799 | Field     | Type  | Required?| Description                                  |
1800 +===========+=======+==========+==============================================+
1801 | memory\   | number| No       | Kibibytes of temporary storage for raw disk  |
1802 | Buffered  |       |          | blocks                                       |
1803 +-----------+-------+----------+----------------------------------------------+
1804 | memory\   | number| No       | Kibibytes of memory used for cache           |
1805 | Cached    |       |          |                                              |
1806 +-----------+-------+----------+----------------------------------------------+
1807 | memory\   | number| No       | Kibibytes of memory configured in the virtual|
1808 | Configured|       |          | machine on which the xNFC reporting the event|
1809 |           |       |          | is running                                   |
1810 +-----------+-------+----------+----------------------------------------------+
1811 | memory\   | number| No       | Host demand in kibibytes                     |
1812 | Demand    |       |          |                                              |
1813 +-----------+-------+----------+----------------------------------------------+
1814 | memory\   | number| Yes      | Kibibytes of physical RAM left unused by the |
1815 | Free      |       |          | system                                       |
1816 +-----------+-------+----------+----------------------------------------------+
1817 | memory\   | number| No       | Percentage of time the VM is waiting to      |
1818 | Latency\  |       |          | access swapped or compressed memory          |
1819 | Avg       |       |          |                                              |
1820 +-----------+-------+----------+----------------------------------------------+
1821 | memory\   | number| No       | Shared memory in kilobytes                   |
1822 | Shared\   |       |          |                                              |
1823 | Avg       |       |          |                                              |
1824 +-----------+-------+----------+----------------------------------------------+
1825 | memory\   | number| No       | The part of the slab that can be reclaimed   |
1826 | SlabRecl  |       |          | such as caches measured in kibibytes         |
1827 +-----------+-------+----------+----------------------------------------------+
1828 | memory\   | number| No       | The part of the slab that cannot be reclaimed|
1829 | Slab\     |       |          | even when lacking memory measure in kibibytes|
1830 | Unrecl    |       |          |                                              |
1831 +-----------+-------+----------+----------------------------------------------+
1832 | memory\   | number| No       | Amount of memory swapped-in from host cache  |
1833 | SwapIn\   |       |          | in kibibytes                                 |
1834 | Avg       |       |          |                                              |
1835 +-----------+-------+----------+----------------------------------------------+
1836 | memory\   | number| No       | Rate at which memory is swapped from disk    |
1837 | SwapIn\   |       |          | into active memory during the interval in    |
1838 | RateAvg   |       |          | kilobytes per second                         |
1839 +-----------+-------+----------+----------------------------------------------+
1840 | memory\   | number| No       | Amount of memory swapped-out to host cache in|
1841 | SwapOut\  |       |          | kibibytes                                    |
1842 | Avg       |       |          |                                              |
1843 +-----------+-------+----------+----------------------------------------------+
1844 | memory\   | number| No       | Rate at which memory is being swapped from   |
1845 | SwapOut\  |       |          | active memory to disk during the current     |
1846 | RateAvg   |       |          | interval in kilobytes per second             |
1847 +-----------+-------+----------+----------------------------------------------+
1848 | memory\   | number| No       | Space used for caching swapped pages in the  |
1849 | Swap\     |       |          | host cache in kibibytes                      |
1850 | UsedAvg   |       |          |                                              |
1851 +-----------+-------+----------+----------------------------------------------+
1852 | memory\   | number| Yes      | Total memory minus the sum of free, buffered,|
1853 | Used      |       |          | cached and slab memory measured in kibibytes |
1854 +-----------+-------+----------+----------------------------------------------+
1855 | percent\  | number| No       | Percentage of memory usage; value =          |
1856 | Memory\   |       |          | (memoryUsed / (memoryUsed + memoryFree) x 100|
1857 | Usage     |       |          | if denomintor is nonzero, or 0, if otherwise.|
1858 +-----------+-------+----------+----------------------------------------------+
1859 | vm\       | string| Yes      | Virtual Machine identifier associated with   |
1860 | Identifier|       |          | the memory metrics                           |
1861 +-----------+-------+----------+----------------------------------------------+
1862
1863 Datatype: nicPerformance
1864 ************************
1865
1866 The nicPerformance datatype consists of the following fields which
1867 describe the performance and errors of an of an identified virtual
1868 network interface card:
1869
1870 +----------------+-------+----------+-----------------------------------------+
1871 | Field          | Type  | Required?| Description                             |
1872 +================+=======+==========+=========================================+
1873 | administrative\| string| No       | Administrative state: enum: ‘inService’,|
1874 | State          |       |          | ‘outOfService’                          |
1875 +----------------+-------+----------+-----------------------------------------+
1876 | nicIdentifier  | string| Yes      | Network interface card identifier       |
1877 +----------------+-------+----------+-----------------------------------------+
1878 | operational\   | string| No       | Operational state: enum: ‘inService’,   |
1879 | State          |       |          | ‘outOfService’                          |
1880 +----------------+-------+----------+-----------------------------------------+
1881 | received\      | number| No       | Cumulative count of broadcast packets   |
1882 | Broadcast\     |       |          | received as read at the end of the      |
1883 | Packets\       |       |          | measurement interval                    |
1884 | Accumulated    |       |          |                                         |
1885 +----------------+-------+----------+-----------------------------------------+
1886 | received\      | number| No       | Count of broadcast packets received     |
1887 | Broadcast\     |       |          | within the measurement interval         |
1888 | PacketsDelta   |       |          |                                         |
1889 +----------------+-------+----------+-----------------------------------------+
1890 | received\      | number| No       | Cumulative count of discarded packets   |
1891 | Discarded\     |       |          | received as read at the end of the      |
1892 | Packets\       |       |          | measurement interval                    |
1893 | Accumulated    |       |          |                                         |
1894 +----------------+-------+----------+-----------------------------------------+
1895 | received\      | number| No       | Count of discarded packets received     |
1896 | Discarded\     |       |          | within the measurement interval         |
1897 | PacketsDelta   |       |          |                                         |
1898 +----------------+-------+----------+-----------------------------------------+
1899 | received\      | number| No       | Cumulative count of error packets       |
1900 | ErrorPackets\  |       |          | received as read at the end of the      |
1901 | Accumulated    |       |          | measurement interval                    |
1902 +----------------+-------+----------+-----------------------------------------+
1903 | receivedError\ | number| No       | Count of error packets received within  |
1904 | PacketsDelta   |       |          | the measurement interval                |
1905 +----------------+-------+----------+-----------------------------------------+
1906 | received\      | number| No       | Cumulative count of multicast packets   |
1907 | Multicast\     |       |          | received as read at the end of the      |
1908 | Packets\       |       |          | measurement interval                    |
1909 | Accumulated    |       |          |                                         |
1910 +----------------+-------+----------+-----------------------------------------+
1911 | received\      | number| No       | Count of multicast packets received     |
1912 | Multicast\     |       |          | within the measurement interval         |
1913 | PacketsDelta   |       |          |                                         |
1914 +----------------+-------+----------+-----------------------------------------+
1915 | received\      | number| No       | Cumulative count of octets received as  |
1916 | Octets\        |       |          | read at the end of the measurement      |
1917 | Accumulated    |       |          | interval                                |
1918 +----------------+-------+----------+-----------------------------------------+
1919 | received\      | number| No       | Count of octets received within the     |
1920 | OctetsDelta    |       |          | measurement interval                    |
1921 +----------------+-------+----------+-----------------------------------------+
1922 | received\      | number| No       | Percentage of discarded packets         |
1923 | Percent\       |       |          | received; value =                       |
1924 | Discard        |       |          | (receivedDiscardedPacketsDelta /        |
1925 |                |       |          | receivedTotalPacketsDelta) x 100, if    |
1926 |                |       |          | denominator is nonzero, or 0, if        |
1927 |                |       |          | otherwise.                              |
1928 +----------------+-------+----------+-----------------------------------------+
1929 | received\      | number| No       | Percentage of error packets received;   |
1930 | PercentError   |       |          | value = (receivedErrorPacketsDelta /    |
1931 |                |       |          | receivedTotalPacketsDelta) x 100, if    |
1932 |                |       |          | denominator is nonzero, or 0, if        |
1933 |                |       |          | otherwise.                              |
1934 +----------------+-------+----------+-----------------------------------------+
1935 | receivedTotal\ | number| No       | Cumulative count of all packets received|
1936 | Packets\       |       |          | as read at the end of the measurement   |
1937 | Accumulated    |       |          | interval                                |
1938 +----------------+-------+----------+-----------------------------------------+
1939 | receivedTotal\ | number| No       | Count of all packets received within the|
1940 | PacketsDelta   |       |          | measurement interval                    |
1941 +----------------+-------+----------+-----------------------------------------+
1942 | received\      | number| No       | Cumulative count of unicast packets     |
1943 | Unicast\       |       |          | received as read at the end of the      |
1944 | Packets\       |       |          | measurement interval                    |
1945 | Accumulated    |       |          |                                         |
1946 +----------------+-------+----------+-----------------------------------------+
1947 | received\      | number| No       | Count of unicast packets received within|
1948 | Unicast\       |       |          | the measurement interval                |
1949 | PacketsDelta   |       |          |                                         |
1950 +----------------+-------+----------+-----------------------------------------+
1951 | received\      | number| No       | Percentage of utilization received;     |
1952 | Utilization    |       |          | value = (receivedOctetsDelta / (speed x |
1953 |                |       |          | (lastEpochMicrosec - startEpochMicrosec)|
1954 |                |       |          | )) x 100, if denominator is nonzero, or |
1955 |                |       |          | 0, if otherwise.                        |
1956 +----------------+-------+----------+-----------------------------------------+
1957 | speed          | number| No       | Speed configured in mbps.               |
1958 +----------------+-------+----------+-----------------------------------------+
1959 | transmitted\   | number| No       | Cumulative count of broadcast packets   |
1960 | Broadcast\     |       |          | transmitted as read at the end of the   |
1961 | Packets\       |       |          | measurement interval                    |
1962 | Accumulated    |       |          |                                         |
1963 +----------------+-------+----------+-----------------------------------------+
1964 | transmitted\   | number| No       | Count of broadcast packets transmitted  |
1965 | Broadcast\     |       |          | within the measurement interval         |
1966 | PacketsDelta   |       |          |                                         |
1967 +----------------+-------+----------+-----------------------------------------+
1968 | transmitted\   | number| No       | Cumulative count of discarded packets   |
1969 | Discarded\     |       |          | transmitted as read at the end of the   |
1970 | Packets\       |       |          | measurement interval                    |
1971 | Accumulated    |       |          |                                         |
1972 +----------------+-------+----------+-----------------------------------------+
1973 | transmitted\   | number| No       | Count of discarded packets transmitted  |
1974 | Discarded\     |       |          | within the measurement interval         |
1975 | PacketsDelta   |       |          |                                         |
1976 +----------------+-------+----------+-----------------------------------------+
1977 | transmitted\   | number| No       | Cumulative count of error packets       |
1978 | ErrorPackets\  |       |          | transmitted as read at the end of the   |
1979 | Accumulated    |       |          | measurement interval                    |
1980 +----------------+-------+----------+-----------------------------------------+
1981 | transmitted\   | number| No       | Count of error packets transmitted      |
1982 | ErrorPackets\  |       |          | within the measurement interval         |
1983 | Delta          |       |          |                                         |
1984 +----------------+-------+----------+-----------------------------------------+
1985 | transmitted\   | number| No       | Cumulative count of multicast packets   |
1986 | Multicast\     |       |          | transmitted as read at the end of the   |
1987 | Packets\       |       |          | measurement interval                    |
1988 | Accumulated    |       |          |                                         |
1989 +----------------+-------+----------+-----------------------------------------+
1990 | transmitted\   | number| No       | Count of multicast packets transmitted  |
1991 | Multicast\     |       |          | within the measurement interval         |
1992 | PacketsDelta   |       |          |                                         |
1993 +----------------+-------+----------+-----------------------------------------+
1994 | transmitted\   | number| No       | Cumulative count of octets transmitted  |
1995 | Octets\        |       |          | as read at the end of the measurement   |
1996 | Accumulated    |       |          | interval                                |
1997 +----------------+-------+----------+-----------------------------------------+
1998 | transmitted\   | number| No       | Count of octets transmitted within the  |
1999 | OctetsDelta    |       |          | measurement interval                    |
2000 +----------------+-------+----------+-----------------------------------------+
2001 | transmitted\   | number| No       | Percentage of discarded packets         |
2002 | PercentDiscard |       |          | transmitted; value =                    |
2003 |                |       |          | (transmittedDiscardedPacketsDelta /     |
2004 |                |       |          | transmittedTotalPacketsDelta) x 100, if |
2005 |                |       |          | denominator is nonzero, or 0, if        |
2006 |                |       |          | otherwise.                              |
2007 +----------------+-------+----------+-----------------------------------------+
2008 | transmitted\   | number| No       | Percentage of error packets received;   |
2009 | PercentError   |       |          | value = (transmittedErrorPacketsDelta / |
2010 |                |       |          | transmittedTotalPacketsDelta) x 100, if |
2011 |                |       |          | denominator is nonzero, or 0, if        |
2012 |                |       |          | otherwise.                              |
2013 +----------------+-------+----------+-----------------------------------------+
2014 | transmitted\   | number| No       | Cumulative count of all packets         |
2015 | TotalPackets\  |       |          | transmitted as read at the end of the   |
2016 | Accumulated    |       |          | measurement interval                    |
2017 +----------------+-------+----------+-----------------------------------------+
2018 | transmitted\   | number| No       | Count of all packets transmitted within |
2019 | TotalPackets\  |       |          | the measurement interval                |
2020 | Delta          |       |          |                                         |
2021 +----------------+-------+----------+-----------------------------------------+
2022 | transmitted\   | number| No       | Cumulative count of unicast packets     |
2023 | Unicast\       |       |          | transmitted as read at the end of the   |
2024 | Packets\       |       |          | measurement interval                    |
2025 | Accumulated    |       |          |                                         |
2026 +----------------+-------+----------+-----------------------------------------+
2027 | transmitted\   | number| No       | Count of unicast packets transmitted    |
2028 | Unicast\       |       |          | within the measurement interval         |
2029 | PacketsDelta   |       |          |                                         |
2030 +----------------+-------+----------+-----------------------------------------+
2031 | transmitted\   | number| No       | Percentage of utilization transmitted;  |
2032 | Utilization    |       |          | value = (transmittedOctetsDelta / (speed|
2033 |                |       |          | x (lastEpochMicrosec -                  |
2034 |                |       |          | startEpochMicrosec))) x 100, if         |
2035 |                |       |          | denominator is nonzero, or 0, if        |
2036 |                |       |          | otherwise.                              |
2037 +----------------+-------+----------+-----------------------------------------+
2038 | values\        | string| Yes      | Enumeration: ‘true’ or ‘false’. If      |
2039 | AreSuspect     |       |          | ‘true’ then the vNicPerformance values  |
2040 |                |       |          | are likely inaccurate due to counter    |
2041 |                |       |          | overflow or other conditions.           |
2042 +----------------+-------+----------+-----------------------------------------+
2043
2044 Datatype: processorDimmAggregateThermalMargin
2045 *********************************************
2046
2047 The processorDimmAggregateThermalMargin datatype provides intelligent
2048 platform management interface (ipmi) processor dual inline memory module
2049 aggregate thermal margin metrics; it consists of the following fields:
2050
2051 +-----------------+-------+----------+----------------------------------------+
2052 | Field           | Type  | Required?| Description                            |
2053 +=================+=======+==========+========================================+
2054 | processor\      | string| Yes      | identifier for the aggregate thermal   |
2055 | DimmAggregate\  |       |          | margin metrics from the processor dual |
2056 | Thermal         |       |          | inline memory module                   |
2057 | MarginIdentifier|       |          |                                        |
2058 +-----------------+-------+----------+----------------------------------------+
2059 | thermalMargin   | number| Yes      | the difference between the DIMM's      |
2060 |                 |       |          | current temperature, in celsius, and   |
2061 |                 |       |          | the DIMM's throttling thermal trip     |
2062 +-----------------+-------+----------+----------------------------------------+
2063
2064 Datatype: processStats
2065 **********************
2066
2067 The processStats datatype provides metrics on system processes; it
2068 consists of the following fields:
2069
2070
2071 +-----------+-------+----------+----------------------------------------------+
2072 | Field     | Type  | Required?| Description                                  |
2073 +===========+=======+==========+==============================================+
2074 | forkRate  | number| No       | The number of threads created since the last |
2075 |           |       |          | reboot                                       |
2076 +-----------+-------+----------+----------------------------------------------+
2077 | process\  | string| Yes      | processIdentifier                            |
2078 | Identifier|       |          |                                              |
2079 +-----------+-------+----------+----------------------------------------------+
2080 | psState\  | number| No       | The number of processes in a blocked state   |
2081 | Blocked   |       |          |                                              |
2082 +-----------+-------+----------+----------------------------------------------+
2083 | psState\  | number| No       | The number of processes in a paging state    |
2084 | Paging    |       |          |                                              |
2085 +-----------+-------+----------+----------------------------------------------+
2086 | psState\  | number| No       | The number of processes in a running state   |
2087 | Running   |       |          |                                              |
2088 +-----------+-------+----------+----------------------------------------------+
2089 | psState\  | number| No       | The number of processes in a sleeping state  |
2090 | Sleeping  |       |          |                                              |
2091 +-----------+-------+----------+----------------------------------------------+
2092 | psState\  | number| No       | The number of processes in a stopped state   |
2093 | Stopped   |       |          |                                              |
2094 +-----------+-------+----------+----------------------------------------------+
2095 | psState\  | number| No       | The number of processes in a zombie state    |
2096 | Zombie    |       |          |                                              |
2097 +-----------+-------+----------+----------------------------------------------+
2098
2099 ‘Notification’ Domain Datatypes
2100 +++++++++++++++++++++++++++++++
2101
2102 Datatype: notificationFields
2103 ****************************
2104
2105 The notificationFields datatype consists of the following fields:
2106
2107 +--------------+-----------+----------+---------------------------------------+
2108 | Field        | Type      | Required?| Description                           |
2109 +==============+===========+==========+=======================================+
2110 | additional\  | hashMap   | No       | Additional notification fields if     |
2111 | Fields       |           |          | needed                                |
2112 +--------------+-----------+----------+---------------------------------------+
2113 | arrayOfNamed\| namedHash\| No       | Array of named hashMaps               |
2114 | HashMap      | Map [ ]   |          |                                       |
2115 +--------------+-----------+----------+---------------------------------------+
2116 | change\      | string    | No       | Identifier for a contact related to   |
2117 | Contact      |           |          | the change                            |
2118 +--------------+-----------+----------+---------------------------------------+
2119 | change\      | string    | Yes      | System or session identifier          |
2120 | Identifier   |           |          | associated with the change            |
2121 +--------------+-----------+----------+---------------------------------------+
2122 | changeType   | string    | Yes      | Describes what has changed for the    |
2123 |              |           |          | entity, for example: configuration    |
2124 |              |           |          | changed, capability added, capability |
2125 |              |           |          | removed…                              |
2126 +--------------+-----------+----------+---------------------------------------+
2127 | newState     | string    | No       | New state of the entity, for example: |
2128 |              |           |          | ‘inService’, ‘maintenance’,           |
2129 |              |           |          | ‘outOfService’                        |
2130 +--------------+-----------+----------+---------------------------------------+
2131 | notification\| string    | Yes      | Version of the notificationFields     |
2132 | FieldsVersion|           |          | block as "#.#" where # is a digit; see|
2133 |              |           |          | section 1 for the correct digits to   |
2134 |              |           |          | use.                                  |
2135 +--------------+-----------+----------+---------------------------------------+
2136 | oldState     | string    | No       | Previous state of the entity, for     |
2137 |              |           |          | example: ‘inService’, ‘maintenance’,  |
2138 |              |           |          | ‘outOfService’                        |
2139 +--------------+-----------+----------+---------------------------------------+
2140 | state\       | string    | No       | Card or port name of the entity that  |
2141 | Interface    |           |          | changed state                         |
2142 +--------------+-----------+----------+---------------------------------------+
2143
2144 The fileReady notification event is used by 3GPP-compliant NFs to notify
2145 ONAP that a PM file is available for upload. The notificationFields are
2146 populated as follows:
2147
2148 **arrayOfNamedHashMap:** The array is named for the PM file as defined
2149 in 3GPP TS 28.550. The array contains the following key value pairs:
2150
2151 -  **location** in the form protocol://ipAddress:port/path/filename;
2152    e.g. "location" :
2153    "ftpes://135.3.1.44:21/pmfiles/A20180531.1030+0600-1045+0600\A20000626.2315+0200-2330+0200_NodeBId.gz"
2154
2155 -  **compression** containing the compression type used for the PM file;
2156    e.g. "compression" : "gzip"
2157
2158 -  **fileFormatType** containing the format type of the PM file; e.g.
2159    "fileFormatType" : "org.3GPP.32.435#measCollec"
2160
2161 -  **fileFormatVersion** containing the format version of the PM file;
2162    e.g. "fileFormatVersion" : "V10"
2163
2164 -  other vendor-defined key-value pairs as needed
2165
2166 **changeIdentifier:** set to PM\_MEAS\_FILES
2167
2168 **changeType:** set to fileReady
2169
2170 Other notificationFields are not used for fileReady.
2171
2172 ‘Other’ Domain Datatypes
2173 ++++++++++++++++++++++++
2174
2175 Datatype: otherFields
2176 *********************
2177
2178 The otherFields datatype defines fields for events belonging to the
2179 'other' domain of the commonEventHeader domain enumeration; it consists
2180 of the following fields:
2181
2182 +-------------+-------------+----------+--------------------------------------+
2183 | Field       | Type        | Required?| Description                          |
2184 +=============+=============+==========+======================================+
2185 | arrayOf\    | arrayOf\    | No       | Array of named hashMaps              |
2186 | NamedHashMap| NamedHashMap|          |                                      |
2187 +-------------+-------------+----------+--------------------------------------+
2188 | hashMap     | hashMap     | No       | Array of name-value pairs            |
2189 +-------------+-------------+----------+--------------------------------------+
2190 | jsonObjects | arrayOf\    | No       | Array of JSON objects described by   |
2191 |             | JsonObject  |          | name, schema and other               |
2192 |             |             |          | meta-information                     |
2193 +-------------+-------------+----------+--------------------------------------+
2194 | otherFields\| string      | Yes      | Version of the otherFields block as  |
2195 | Version     |             |          | "#.#" where # is a digit; see section|
2196 |             |             |          | 1 for the correct digits to use.     |
2197 +-------------+-------------+----------+--------------------------------------+
2198
2199 ‘perf3gpp’ Domain Datatypes
2200 +++++++++++++++++++++++++++
2201
2202 Datatype: measDataCollection
2203 ****************************
2204
2205 The measDataCollection datatype defines a 3GPP measurement collection
2206 structure aligned with the 3GPP PM format; it consists of the following
2207 fields:
2208
2209 +----------------+---------+----------+---------------------------------------+
2210 | Field          | Type    | Required?| Description                           |
2211 +================+=========+==========+=======================================+
2212 | format\        | string  | No       | 3GPP PM reporting file format version |
2213 | Version        |         |          | from pre-standard TS 28.550 v2.0.0    |
2214 +----------------+---------+----------+---------------------------------------+
2215 | granularity\   | string  | Yes      | Granularity period for the PM report  |
2216 | Period         |         |          | in seconds                            |
2217 +----------------+---------+----------+---------------------------------------+
2218 | measInfoList   | measInfo| Yes      | Array of measInfo measurements        |
2219 |                | [ ]     |          |                                       |
2220 +----------------+---------+----------+---------------------------------------+
2221 | measObjInst\   | string  | No       | Array of monitored object local       |
2222 | IdList         | [ ]     |          | distinguished name ids per 3GPP TS    |
2223 |                |         |          | 32.300                                |
2224 +----------------+---------+----------+---------------------------------------+
2225 | measured\      | string  | Yes      | Distinguished name per 3GPP TS 28.532 |
2226 | EntityDn       |         |          |                                       |
2227 +----------------+---------+----------+---------------------------------------+
2228 | measuredEntity\| string  | No       | Software version for the NF providing |
2229 | SoftwareVersion|         |          | the PM data as specified in 3GPP TS   |
2230 |                |         |          | 28.532                                |
2231 +----------------+---------+----------+---------------------------------------+
2232 | measuredEntity\| string  | No       | User Definable name for the measured  |
2233 | UserName       |         |          | object per 3GPP TS 28.532             |
2234 +----------------+---------+----------+---------------------------------------+
2235
2236 Datatype: measInfo
2237 ******************
2238
2239 The measInfo datatype provides measurement information; it consists of
2240 the following fields:
2241
2242 +-------+--------------------------+----------+-------------------------------+
2243 | Field | Type                     | Required?| Description                   |
2244 +=======+==========================+==========+===============================+
2245 | jobId | string                   | No       | Name of the measurement job   |
2246 +-------+--------------------------+----------+-------------------------------+
2247 | meas\ | oneOf [ measInfoIdInteger| No       | Measurement group Identifier  |
2248 | InfoId| , measInfoIdString ]     |          |                               |
2249 +-------+--------------------------+----------+-------------------------------+
2250 | meas\ | oneOf [ measTypesInteger | Yes      | Array of measurement          |
2251 | Types | , measTypesString ]      |          | identifiers associated with   |
2252 |       |                          |          | the measurement results       |
2253 |       |                          |          | expressed as integers for     |
2254 |       |                          |          | efficiency rather than strings|
2255 +-------+--------------------------+----------+-------------------------------+
2256 | meas\ | measValues [ ]           | Yes      | Array of measValues           |
2257 | Values|                          |          |                               |
2258 +-------+--------------------------+----------+-------------------------------+
2259
2260 Datatype: measInfoIdInteger
2261 ***************************
2262
2263 The measInfoIdInteger datatype provides an integer measurement group
2264 identifier; it consists of the following fields:
2265
2266 +---------------+---------+----------+--------------------------------------+
2267 | Field         | Type    | Required?| Description                          |
2268 +===============+=========+==========+======================================+
2269 | iMeasInfoId   | integer | Yes      | Integer measurement group Identifier |
2270 +---------------+---------+----------+--------------------------------------+
2271
2272 Datatype: measInfoIdString
2273 **************************
2274
2275 The measInfoIdString datatype provides a string measurement group
2276 identifier; it consists of the following fields:
2277
2278 +---------------+-----------+----------+--------------------------------------+
2279 | Field         | Type      | Required?| Description                          |
2280 +===============+===========+==========+======================================+
2281 | sMeasInfoId   | integer   | Yes      | String measurement group Identifier  |
2282 +---------------+-----------+----------+--------------------------------------+
2283
2284 Datatype: measResultInteger
2285 ***************************
2286
2287 The measResultInteger datatype provides an integer 3GPP PM measurement
2288 result; it consists of the following fields:
2289
2290 +----------+-----------+-------------+------------------------------------+
2291 | Field    | Type      | Required?   | Description                        |
2292 +==========+===========+=============+====================================+
2293 | p        | integer   | Yes         | Integer reference to the counter   |
2294 +----------+-----------+-------------+------------------------------------+
2295 | iValue   | integer   | Yes         | Integer counter value              |
2296 +----------+-----------+-------------+------------------------------------+
2297
2298 Datatype: measResultNull
2299 ************************
2300
2301 The measResultNull datatype provides a null 3GPP PM measurement result;
2302 it consists of the following fields:
2303
2304 +----------+-----------+-------------+------------------------------------+
2305 | Field    | Type      | Required?   | Description                        |
2306 +==========+===========+=============+====================================+
2307 | p        | integer   | Yes         | Integer reference to the counter   |
2308 +----------+-----------+-------------+------------------------------------+
2309 | isNull   | string    | Yes         | Enumeration: ‘true’ or ‘false’     |
2310 +----------+-----------+-------------+------------------------------------+
2311
2312 Datatype: measResultNumber
2313 **************************
2314
2315 The measResultNumber datatype provides a number 3GPP PM measurement
2316 result; it consists of the following fields:
2317
2318 +----------+-----------+-------------+------------------------------------+
2319 | Field    | Type      | Required?   | Description                        |
2320 +==========+===========+=============+====================================+
2321 | p        | integer   | Yes         | Integer reference to the counter   |
2322 +----------+-----------+-------------+------------------------------------+
2323 | rValue   | number    | Yes         | Number counter value               |
2324 +----------+-----------+-------------+------------------------------------+
2325
2326 Datatype: measResultString
2327 **************************
2328
2329 The measResultString datatype provides a string 3GPP PM measurement
2330 result; it consists of the following fields:
2331
2332 +----------+-----------+-------------+------------------------------------+
2333 | Field    | Type      | Required?   | Description                        |
2334 +==========+===========+=============+====================================+
2335 | p        | integer   | Yes         | Integer reference to the counter   |
2336 +----------+-----------+-------------+------------------------------------+
2337 | sValue   | string    | Yes         | String counter value               |
2338 +----------+-----------+-------------+------------------------------------+
2339
2340 Datatype: measTypesInteger
2341 **************************
2342
2343 The measTypesInteger datatype provides an array of integer measurement
2344 identifiers associated with the measurement results; it consists of the
2345 following fields:
2346
2347 +----------+--------+----------+----------------------------------------------+
2348 | Field    | Type   | Required?| Description                                  |
2349 +==========+========+==========+==============================================+
2350 | iMeas\   | integer| Yes      | Array of integer measurement identifiers     |
2351 | TypesList| [ ]    |          | associated with the measurement results      |
2352 +----------+--------+----------+----------------------------------------------+
2353
2354 Datatype: measTypesString
2355 *************************
2356
2357 The measTypesString datatype provides an array of string measurement
2358 identifiers associated with the measurement results; it consists of the
2359 following fields:
2360
2361 +----------+-------+----------+-----------------------------------------------+
2362 | Field    | Type  | Required?| Description                                   |
2363 +==========+=======+==========+===============================================+
2364 | sMeas\   | string| Yes      | Array of string measurement identifiers       |
2365 | TypesList| [ ]   |          | associated with the measurement results       |
2366 +----------+-------+----------+-----------------------------------------------+
2367
2368 Datatype: measValues
2369 ********************
2370
2371 The measValues datatype provides 3GPP measurement values; it consists of
2372 the following fields:
2373
2374 +---------+----------------------------------+----------+---------------------+
2375 | Field   | Type                             | Required?| Description         |
2376 +=========+==================================+==========+=====================+
2377 | measObj\| hashMap                          | No       | Additional key-value|
2378 | AddlFlds|                                  |          | pairs if needed     |
2379 +---------+----------------------------------+----------+---------------------+
2380 | measObj\| measDataCollection               | Yes      | Monitored object    |
2381 | InstId  |                                  |          | local distinguished |
2382 |         |                                  |          | name per 3GPP TS    |
2383 |         |                                  |          | 32.300 and 3GPP TS  |
2384 |         |                                  |          | 32.432              |
2385 +---------+----------------------------------+----------+---------------------+
2386 | meas\   | Array of items where each item is| Yes      | Array of results    |
2387 | Results | oneOf [ measResultInteger,       |          |                     |
2388 |         | measResultNull, measResultNumber,|          |                     |
2389 |         | measResultString ]               |          |                     |
2390 +---------+----------------------------------+----------+---------------------+
2391 | suspect\| string                           | No       | Enumeration: ‘true’,|
2392 | Flag    |                                  |          | ‘false’. Indicates  |
2393 |         |                                  |          | if the values are   |
2394 |         |                                  |          | suspect             |
2395 +---------+----------------------------------+----------+---------------------+
2396
2397 Datatype: perf3gppFields
2398 ************************
2399
2400 The perf3gppFields datatype defines fields for 3GPP PM format events,
2401 based on 3GPP TS 28.550, belonging to the 'perf3gpp' domain of the
2402 commonEventHeader domain enumeration; it consists of the following
2403 fields:
2404
2405 +--------------+-----------+----------+---------------------------------------+
2406 | Field        | Type      | Required?| Description                           |
2407 +==============+===========+==========+=======================================+
2408 | eventAddl\   | hashMap   | No       | Additional key-value pairs if needed  |
2409 | Fields       |           |          |                                       |
2410 +--------------+-----------+----------+---------------------------------------+
2411 | measData\    | measData  | Yes      | 3GPP measurement collection structure |
2412 | Collection   | Collection|          |                                       |
2413 +--------------+-----------+----------+---------------------------------------+
2414 | perf3gpp\    | string    | Yes      | Version of the perf3gpp event         |
2415 | FieldsVersion|           |          |                                       |
2416 +--------------+-----------+----------+---------------------------------------+
2417
2418 ‘pnfRegistration’ Domain Datatypes
2419 ++++++++++++++++++++++++++++++++++
2420
2421 Datatype: pnfRegistrationFields
2422 *******************************
2423
2424 The pnfRegistrationFields datatype defines fields for events belonging
2425 to the 'pnfRegistration' domain of the commonEventHeader domain
2426 enumeration; it consists of the following fields:
2427
2428 +-----------------+--------+----------+---------------------------------------+
2429 | Field           | Type   | Required?| Description                           |
2430 +=================+========+==========+=======================================+
2431 | additional\     | hashMap| No       | Additional pnfRegistration fields if  |
2432 | Fields          |        |          | needed                                |
2433 +-----------------+--------+----------+---------------------------------------+
2434 | last\           | string | No       | TS 32.692 dateOfLastService = date of |
2435 | ServiceDate     |        |          | last service; e.g. 15022017           |
2436 +-----------------+--------+----------+---------------------------------------+
2437 | macAddress      | string | No       | MAC address of OAM interface of the   |
2438 |                 |        |          | unit                                  |
2439 +-----------------+--------+----------+---------------------------------------+
2440 | manufacture\    | string | No       | TS 32.692 dateOfManufacture =         |
2441 | Date            |        |          | manufacture date of the unit; 24032016|
2442 +-----------------+--------+----------+---------------------------------------+
2443 | modelNumber     | string | No       | TS 32.692 versionNumber = version of  |
2444 |                 |        |          | the unit from vendor; e.g. AJ02. Maps |
2445 |                 |        |          | to AAI equip-model                    |
2446 +-----------------+--------+----------+---------------------------------------+
2447 | oamV4\          | string | No       | IPv4 m-plane IP address to be used by |
2448 | IpAddress       |        |          | the manager to contact the PNF        |
2449 +-----------------+--------+----------+---------------------------------------+
2450 | oamV6\          | string | No       | IPv6 m-plane IP address to be used by |
2451 | IpAddress       |        |          | the manager to contact the PNF        |
2452 +-----------------+--------+----------+---------------------------------------+
2453 | pnfRegistration\| string | Yes      | Version of the pnfRegistrationFields  |
2454 | FieldsVersion   |        |          | block as "#.#" where # is a digit; see|
2455 |                 |        |          | section 1 for the correct digits to   |
2456 |                 |        |          | use.                                  |
2457 +-----------------+--------+----------+---------------------------------------+
2458 | serialNumber    | string | No       | TS 32.692 serialNumber = serial number|
2459 |                 |        |          | of the unit; e.g. 6061ZW3             |
2460 +-----------------+--------+----------+---------------------------------------+
2461 | software\       | string | No       | TS 32.692 swName = active SW running  |
2462 | Version         |        |          | on the unit; e.g. 5gDUv18.05.201      |
2463 +-----------------+--------+----------+---------------------------------------+
2464 | unitFamily      | string | No       | TS 32.692 vendorUnitFamilyType =      |
2465 |                 |        |          | general type of HW unit; e.g. BBU     |
2466 +-----------------+--------+----------+---------------------------------------+
2467 | unitType        | string | No       | TS 32.692 vendorUnitTypeNumber =      |
2468 |                 |        |          | vendor name for the unit; e.g.        |
2469 |                 |        |          | Airscale                              |
2470 +-----------------+--------+----------+---------------------------------------+
2471 | vendorName      | string | No       | TS 32.692 vendorName = name of        |
2472 |                 |        |          | manufacturer; e.g. Nokia. Maps to AAI |
2473 |                 |        |          | equip-vendor                          |
2474 +-----------------+--------+----------+---------------------------------------+
2475
2476 ‘State Change’ Domain Datatypes
2477 +++++++++++++++++++++++++++++++
2478
2479 Datatype: stateChangeFields
2480 ***************************
2481
2482 The stateChangeFields datatype consists of the following fields:
2483
2484 +--------------+--------+----------+------------------------------------------+
2485 | Field        | Type   | Required?| Description                              |
2486 +==============+========+==========+==========================================+
2487 | additional\  | hashMap| No       | Additional stateChange fields if needed  |
2488 | Fields       |        |          |                                          |
2489 +--------------+--------+----------+------------------------------------------+
2490 | newState     | string | Yes      | New state of the entity: ‘inService’,    |
2491 |              |        |          | ‘maintenance’, ‘outOfService’            |
2492 +--------------+--------+----------+------------------------------------------+
2493 | oldState     | string | Yes      | Previous state of the entity: ‘inService’|
2494 |              |        |          | , ‘maintenance’, ‘outOfService’          |
2495 +--------------+--------+----------+------------------------------------------+
2496 | stateChange\ | string | Yes      | Version of the stateChangeFields block as|
2497 | FieldsVersion|        |          | "#.#" where # is a digit; see section 1  |
2498 |              |        |          | for the correct digits to use.           |
2499 +--------------+--------+----------+------------------------------------------+
2500 | state\       | string | Yes      | Card or port name of the entity that     |
2501 | Interface    |        |          | changed state                            |
2502 +--------------+--------+----------+------------------------------------------+
2503
2504 ‘StndDefined’ Domain Datatypes
2505 ++++++++++++++++++++++++++++++
2506
2507 Datatype: stndDefinedFields
2508 ***************************
2509
2510 The stndDefinedFields datatype consists of the following fields:
2511
2512 +--------------+--------+----------+------------------------------------------+
2513 | Field        | Type   | Required?| Description                              |
2514 +==============+========+==========+==========================================+
2515 | data         | object | Yes      | Expected to contain a notification       |
2516 |              |        |          | defined by relevant standards group/body |
2517 |              |        |          | Must be a JSON object.                   |
2518 +--------------+--------+----------+------------------------------------------+
2519 | schema\      | string | No       | A reference to standards defined schema, |
2520 | Reference    |        |          | against which the contents of data       |
2521 |              |        |          | property will be validated               |
2522 +--------------+--------+----------+------------------------------------------+
2523 | stndDefined\ | string | Yes      | Version of the stndDefinedFields block as|
2524 | FieldsVersion|        |          | "#.#" where # is a digit; see section 1  |
2525 |              |        |          | for the correct digits to use.           |
2526 +--------------+--------+----------+------------------------------------------+
2527
2528 Additional rules, when using stndDefined domain
2529 ***********************************************
2530
2531 Following rules shall be followed, when using the StndDefined domain:
2532
2533 If the VNF or PNF is using VES StndDefined domain, then the VNF or PNF MUST
2534 fill the VES.commonEventHeader.stndDefinedNamespace with a value defined by
2535 relevant standards organization.
2536
2537 If the VNF or PNF is using VES StndDefined domain, then the VNF or PNF MAY
2538 fill the VES.stndDefinedFields.schemaReference property with a URI
2539 corresponding to the specific JSON schema object, against which validation
2540 of VES.stndDefinedFields.data will be executed.
2541
2542 If the VNF or PNF is using VES StndDefined domain and eventBatch is sent,
2543 then each and every event within eventBatch must have exactly the same
2544 VES.commonEventHeader.stndDefinedNamespace set.
2545
2546 ‘Syslog’ Domain Datatypes
2547 +++++++++++++++++++++++++
2548
2549 Datatype: syslogFields
2550 **********************
2551
2552 The syslogFields datatype consists of the following fields:
2553
2554 +------------+--------+----------+--------------------------------------------+
2555 | Field      | Type   | Required?| Description                                |
2556 +============+========+==========+============================================+
2557 | additional\| hashMap| No       | Additional syslog fields if needed Ex:     |
2558 | Fields     |        |          | {"name1": "value1", "name2: "value2" … }   |
2559 +------------+--------+----------+--------------------------------------------+
2560 | event\     | string | No       | Hostname of the device                     |
2561 | SourceHost |        |          |                                            |
2562 +------------+--------+----------+--------------------------------------------+
2563 | event\     | string | Yes      | Examples: ‘other’, ‘router’, ‘switch’,     |
2564 | SourceType |        |          | ‘host’, ‘card’, ‘port’, ‘slotThreshold’,   |
2565 |            |        |          | ‘portThreshold’, ‘virtualMachine’,         |
2566 |            |        |          | ‘virtualNetworkFunction’                   |
2567 +------------+--------+----------+--------------------------------------------+
2568 | syslog\    | integer| No       | Numeric code from 0 to 23 for facility:    |
2569 | Facility   |        |          |                                            |
2570 |            |        |          |                                            |
2571 |            |        |          | 0 kernel messages                          |
2572 |            |        |          |                                            |
2573 |            |        |          | 1 user-level messages                      |
2574 |            |        |          |                                            |
2575 |            |        |          | 2 mail system                              |
2576 |            |        |          |                                            |
2577 |            |        |          | 3 system daemons                           |
2578 |            |        |          |                                            |
2579 |            |        |          | 4 security/authorization messages          |
2580 |            |        |          |                                            |
2581 |            |        |          | 5 messages generated internally by syslogd |
2582 |            |        |          |                                            |
2583 |            |        |          | 6 line printer subsystem                   |
2584 |            |        |          |                                            |
2585 |            |        |          | 7 network news subsystem                   |
2586 |            |        |          |                                            |
2587 |            |        |          | 8 UUCP subsystem                           |
2588 |            |        |          |                                            |
2589 |            |        |          | 9 clock daemon                             |
2590 |            |        |          |                                            |
2591 |            |        |          | 10 security/authorization messages         |
2592 |            |        |          |                                            |
2593 |            |        |          | 11 FTP daemon                              |
2594 |            |        |          |                                            |
2595 |            |        |          | 12 NTP subsystem                           |
2596 |            |        |          |                                            |
2597 |            |        |          | 13 log audit                               |
2598 |            |        |          |                                            |
2599 |            |        |          | 14 log alert                               |
2600 |            |        |          |                                            |
2601 |            |        |          | 15 clock daemon (note 2)                   |
2602 |            |        |          |                                            |
2603 |            |        |          | 16 local use 0 (local0)                    |
2604 |            |        |          |                                            |
2605 |            |        |          | 17 local use 1 (local1)                    |
2606 |            |        |          |                                            |
2607 |            |        |          | 18 local use 2 (local2)                    |
2608 |            |        |          |                                            |
2609 |            |        |          | 19 local use 3 (local3)                    |
2610 |            |        |          |                                            |
2611 |            |        |          | 20 local use 4 (local4)                    |
2612 |            |        |          |                                            |
2613 |            |        |          | 21 local use 5 (local5)                    |
2614 |            |        |          |                                            |
2615 |            |        |          | 22 local use 6 (local6)                    |
2616 |            |        |          |                                            |
2617 |            |        |          | 23 local use 7 (local7 )                   |
2618 +------------+--------+----------+--------------------------------------------+
2619 | syslog\    | string | Yes      | Version of the syslogFields block as "#.#" |
2620 | Fields\    |        |          | where # is a digit; see section 1 for the  |
2621 | Version    |        |          | correct digits to use.                     |
2622 +------------+--------+----------+--------------------------------------------+
2623 | syslogMsg  | string | Yes      | Syslog message                             |
2624 +------------+--------+----------+--------------------------------------------+
2625 | syslog\    | string | No       | Hostname parsed from non-VES syslog message|
2626 | MsgHost    |        |          |                                            |
2627 +------------+--------+----------+--------------------------------------------+
2628 | syslogPri  | integer| No       | 0-192                                      |
2629 |            |        |          |                                            |
2630 |            |        |          | Combined Severity and Facility(see rfc5424)|
2631 +------------+--------+----------+--------------------------------------------+
2632 | syslogProc | string | No       | Identifies the application that originated |
2633 |            |        |          | the message                                |
2634 +------------+--------+----------+--------------------------------------------+
2635 | syslog\    | number | No       | The process number assigned by the OS when |
2636 | ProcId     |        |          | the application was started                |
2637 +------------+--------+----------+--------------------------------------------+
2638 | syslog\    | string | No       | A <space> separated list of key="value"    |
2639 | SData      |        |          | pairs following the rfc5424 standard for   |
2640 |            |        |          | SD-ELEMENT.                                |
2641 |            |        |          |                                            |
2642 |            |        |          | ***Deprecated ***                          |
2643 |            |        |          |                                            |
2644 |            |        |          | The entire rfc5424 syslogSData object,     |
2645 |            |        |          | including square brackets [ ], SD-ID and   |
2646 |            |        |          | list of SD-PARAMs                          |
2647 +------------+--------+----------+--------------------------------------------+
2648 | syslogSdId | string | No       | 0-32 char in format name@number,           |
2649 |            |        |          |                                            |
2650 |            |        |          | i.e., ourSDID@32473                        |
2651 +------------+--------+----------+--------------------------------------------+
2652 | syslogSev  | string | No       | Level-of-severity text enumeration defined |
2653 |            |        |          | below:                                     |
2654 |            |        |          |                                            |
2655 |            |        |          | *Text* *Sev* *Description*                 |
2656 |            |        |          |                                            |
2657 |            |        |          | Emergency 0 system is unusable             |
2658 |            |        |          |                                            |
2659 |            |        |          | Alert 1 action must be taken immediately   |
2660 |            |        |          |                                            |
2661 |            |        |          | Critical 2 critical conditions             |
2662 |            |        |          |                                            |
2663 |            |        |          | Error 3 error conditions                   |
2664 |            |        |          |                                            |
2665 |            |        |          | Warning 4 warning conditions               |
2666 |            |        |          |                                            |
2667 |            |        |          | Notice 5 normal but significant condition  |
2668 |            |        |          |                                            |
2669 |            |        |          | Info 6 Informational messages              |
2670 |            |        |          |                                            |
2671 |            |        |          | Debug 7 debug-level messages               |
2672 +------------+--------+----------+--------------------------------------------+
2673 | syslogTag  | string | Yes      | Also known as MsgId. Brief non-spaced text |
2674 |            |        |          | indicating the type of message such as     |
2675 |            |        |          | ‘TCPOUT’ or ‘BGP\_STATUS\_CHANGE’;         |
2676 |            |        |          | ‘NILVALUE’ should be used when no other    |
2677 |            |        |          | value can be provided                      |
2678 +------------+--------+----------+--------------------------------------------+
2679 | syslogTs   | string | No       | Timestamp parsed from non-VES syslog       |
2680 |            |        |          | message                                    |
2681 +------------+--------+----------+--------------------------------------------+
2682 | syslogVer  | number | No       | IANA assigned version of the syslog        |
2683 |            |        |          | protocol specification:                    |
2684 |            |        |          |                                            |
2685 |            |        |          | 0: VES                                     |
2686 |            |        |          |                                            |
2687 |            |        |          | 1: IANA RFC5424                            |
2688 +------------+--------+----------+--------------------------------------------+
2689
2690 Examples of syslogSData :
2691
2692 Preferred
2693
2694     ts="1985-04-12T23:20:50.52Z" tag="BGP\_NEIGHBOR\_DOWN" msg="The BGP
2695     session to neighbor 10.10.10.10 is down"
2696
2697 Deprecated
2698
2699     [attinc@1234 ts="1985-04-12T23:20:50.52Z" tag="BGP\_NEIGHBOR\_DOWN"
2700     msg="The BGP session to neighbor 10.10.10.10 is down"]
2701
2702 Syslog references:
2703
2704 https://tools.ietf.org/html/rfc5424#section-6
2705
2706     https://www.iana.org/assignments/syslog-parameters/syslog-parameters.xhtml
2707
2708 ‘Threshold Crossing Alert’ Domain Datatypes
2709 +++++++++++++++++++++++++++++++++++++++++++
2710
2711 Datatype: counter
2712 *****************
2713
2714 The counter datatype consists of the following fields:
2715
2716 +------------+--------+----------+--------------------------------------------+
2717 | Field      | Type   | Required?| Description                                |
2718 +============+========+==========+============================================+
2719 | criticality| string | Yes      | Enumeration: ‘CRIT’, ‘MAJ’                 |
2720 +------------+--------+----------+--------------------------------------------+
2721 | hashMap    | hashMap| Yes      | Key is the name of the counter and value is|
2722 |            |        |          | the current value of the counter           |
2723 +------------+--------+----------+--------------------------------------------+
2724 | threshhold\| string | Yes      | Last threshold that was crossed            |
2725 | Crossed    |        |          |                                            |
2726 +------------+--------+----------+--------------------------------------------+
2727
2728 Datatype: thresholdCrossingAlertFields
2729 **************************************
2730
2731 The thresholdCrossingAlertFields datatype consists of the following
2732 fields:
2733
2734 +------------+------------+----------+----------------------------------------+
2735 | Field      | Type       | Required?| Description                            |
2736 +============+============+==========+========================================+
2737 | additional\| hashMap    | No       | Additional threshold crossing alert    |
2738 | Fields     |            |          | fields if needed                       |
2739 +------------+------------+----------+----------------------------------------+
2740 | additional\| counter [ ]| Yes      | Array of performance counters          |
2741 | Parameters |            |          |                                        |
2742 +------------+------------+----------+----------------------------------------+
2743 | alert\     | string     | Yes      | Enumeration: ‘SET’, ‘CONT’, ‘CLEAR’    |
2744 | Action     |            |          |                                        |
2745 +------------+------------+----------+----------------------------------------+
2746 | alert\     | string     | Yes      | Unique short alert description (e.g.,  |
2747 | Description|            |          | NE-CPUMEM)                             |
2748 +------------+------------+----------+----------------------------------------+
2749 | alertType  | string     | Yes      | Enumeration: ‘CARD-ANOMALY’,           |
2750 |            |            |          | ‘INTERFACE-ANOMALY’, ELEMENT-ANOMALY’, |
2751 |            |            |          | ‘SERVICE-ANOMALY’                      |
2752 +------------+------------+----------+----------------------------------------+
2753 | alertValue | string     | No       | Calculated API value (if applicable)   |
2754 +------------+------------+----------+----------------------------------------+
2755 | associated\| string [ ] | No       | List of eventIds associated with the   |
2756 | AlertIdList|            |          | event being reported                   |
2757 +------------+------------+----------+----------------------------------------+
2758 | collection\| string     | Yes      | Time when the performance collector    |
2759 | Timestamp  |            |          | picked up the data; with RFC 2822      |
2760 |            |            |          | compliant format: ‘Sat, 13 Mar 2010    |
2761 |            |            |          | 11:29:05 -0800’                        |
2762 +------------+------------+----------+----------------------------------------+
2763 | data\      | string     | No       | Specific performance collector instance|
2764 | Collector  |            |          | used                                   |
2765 +------------+------------+----------+----------------------------------------+
2766 | elementType| string     | No       | Type of network element (internal AT&T |
2767 |            |            |          | field)                                 |
2768 +------------+------------+----------+----------------------------------------+
2769 | event\     | string     | Yes      | Event severity or priority enumeration:|
2770 | Severity   |            |          | ‘CRITICAL’, ‘MAJOR’, ‘MINOR’, ‘WARNING’|
2771 |            |            |          | , ‘NORMAL’                             |
2772 +------------+------------+----------+----------------------------------------+
2773 | eventStart\| string     | Yes      | Time closest to when the measurement   |
2774 | Timestamp  |            |          | was made; with RFC 2822 compliant      |
2775 |            |            |          | format: ‘Sat, 13 Mar 2010 11:29:05     |
2776 |            |            |          | -0800’                                 |
2777 +------------+------------+----------+----------------------------------------+
2778 | interface\ | string     | No       | Physical or logical port or card (if   |
2779 | Name       |            |          | applicable)                            |
2780 +------------+------------+----------+----------------------------------------+
2781 | network\   | string     | No       | Network name (internal AT&T field)     |
2782 | Service    |            |          |                                        |
2783 +------------+------------+----------+----------------------------------------+
2784 | possible\  | string     | No       | Reserved for future use                |
2785 | RootCause  |            |          |                                        |
2786 +------------+------------+----------+----------------------------------------+
2787 | threshold\ | string     | Yes      | Version of the                         |
2788 | Crossing   |            |          | thresholdCrossingAlertFields block as  |
2789 | Fields\    |            |          | "#.#" where # is a digit; see section 1|
2790 | Version    |            |          | for the correct digits to use.         |
2791 +------------+------------+----------+----------------------------------------+
2792
2793 Technology Specific Datatypes
2794 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2795
2796 Mobile Flow’ Domain Datatypes
2797 +++++++++++++++++++++++++++++
2798
2799 Datatype: gtpPerFlowMetrics
2800 ***************************
2801
2802 The gtpPerFlowMetrics datatype consists of the following fields:
2803
2804 +---------------+--------+----------+-----------------------------------------+
2805 | Field         | Type   | Required?| Description                             |
2806 +===============+========+==========+=========================================+
2807 | avgBit\       | number | Yes      | Average bit error rate                  |
2808 | ErrorRate     |        |          |                                         |
2809 +---------------+--------+----------+-----------------------------------------+
2810 | avgPacket\    | number | Yes      | Average packet delay variation or jitter|
2811 | Delay\        |        |          | in milliseconds for received packets:   |
2812 | Variation     |        |          | Average difference between the packet   |
2813 |               |        |          | timestamp and time received for all     |
2814 |               |        |          | pairs of consecutive packets            |
2815 +---------------+--------+----------+-----------------------------------------+
2816 | avgPacket\    | number | Yes      | Average delivery latency                |
2817 | Latency       |        |          |                                         |
2818 +---------------+--------+----------+-----------------------------------------+
2819 | avgReceive\   | number | Yes      | Average receive throughput              |
2820 | Throughput    |        |          |                                         |
2821 +---------------+--------+----------+-----------------------------------------+
2822 | avgTransmit\  | number | Yes      | Average transmit throughput             |
2823 | Throughput    |        |          |                                         |
2824 +---------------+--------+----------+-----------------------------------------+
2825 | dur\          | number | No       | Duration of failed state in milliseconds|
2826 | Connection\   |        |          | , computed as the cumulative time       |
2827 | FailedStatus  |        |          | between a failed echo request and the   |
2828 |               |        |          | next following successful error request,|
2829 |               |        |          | over this reporting interval            |
2830 +---------------+--------+----------+-----------------------------------------+
2831 | durTunnel\    | number | No       | Duration of errored state, computed as  |
2832 | FailedStatus  |        |          | the cumulative time between a tunnel    |
2833 |               |        |          | error indicator and the next following  |
2834 |               |        |          | non-errored indicator, over this        |
2835 |               |        |          | reporting interval                      |
2836 +---------------+--------+----------+-----------------------------------------+
2837 | flow\         | string | No       | Endpoint activating the flow            |
2838 | ActivatedBy   |        |          |                                         |
2839 +---------------+--------+----------+-----------------------------------------+
2840 | flow\         | number | Yes      | Time the connection is activated in the |
2841 | Activation\   |        |          | flow (connection) being reported on, or |
2842 | Epoch         |        |          | transmission time of the first packet if|
2843 |               |        |          | activation time is not available        |
2844 +---------------+--------+----------+-----------------------------------------+
2845 | flow\         | number | Yes      | Integer microseconds for the start of   |
2846 | Activation\   |        |          | the flow connection                     |
2847 | Microsec      |        |          |                                         |
2848 +---------------+--------+----------+-----------------------------------------+
2849 | flow\         | string | No       | Time the connection is activated in the |
2850 | Activation\   |        |          | flow being reported on, or transmission |
2851 | Time          |        |          | time of the first packet if activation  |
2852 |               |        |          | time is not available; with RFC 2822    |
2853 |               |        |          | compliant format: ‘Sat, 13 Mar 2010     |
2854 |               |        |          | 11:29:05 -0800’                         |
2855 +---------------+--------+----------+-----------------------------------------+
2856 | flow\         | string | No       | Endpoint deactivating the flow          |
2857 | Deactivated\  |        |          |                                         |
2858 | By            |        |          |                                         |
2859 +---------------+--------+----------+-----------------------------------------+
2860 | flow\         | number | Yes      | Time for the start of the flow          |
2861 | Deactivation\ |        |          | connection, in integer UTC epoch time   |
2862 | Epoch         |        |          | aka UNIX time                           |
2863 +---------------+--------+----------+-----------------------------------------+
2864 | flow\         | number | Yes      | Integer microseconds for the start of   |
2865 | Deactivation\ |        |          | the flow connection                     |
2866 | Microsec      |        |          |                                         |
2867 +---------------+--------+----------+-----------------------------------------+
2868 | flow\         | string | Yes      | Transmission time of the first packet in|
2869 | Deactivation\ |        |          | the flow connection being reported on;  |
2870 | Time          |        |          | with RFC 2822 compliant format: ‘Sat, 13|
2871 |               |        |          | Mar 2010 11:29:05 -0800’                |
2872 +---------------+--------+----------+-----------------------------------------+
2873 | flowStatus    | string | Yes      | Connection status at reporting time as a|
2874 |               |        |          | working / inactive / failed indicator   |
2875 |               |        |          | value                                   |
2876 +---------------+--------+----------+-----------------------------------------+
2877 | gtp\          | string | No       | Current connection state at reporting   |
2878 | Connection\   |        |          | time                                    |
2879 | Status        |        |          |                                         |
2880 +---------------+--------+----------+-----------------------------------------+
2881 | gtpTunnel\    | string | No       | Current tunnel state at reporting time  |
2882 | Status        |        |          |                                         |
2883 +---------------+--------+----------+-----------------------------------------+
2884 | ipTos\        | hashMap| No       | Array of key: value pairs where the keys|
2885 | CountList     |        |          | are drawn from the IP Type-of-Service   |
2886 |               |        |          | identifiers which range from '0' to     |
2887 |               |        |          | '255', and the values are the count of  |
2888 |               |        |          | packets that had those ToS identifiers  |
2889 |               |        |          | in the flow                             |
2890 +---------------+--------+----------+-----------------------------------------+
2891 | ipTosList     | string | No       | Array of unique IP Type-of-Service      |
2892 |               |        |          | values observed in the flow where values|
2893 |               |        |          | range from '0' to '255'                 |
2894 +---------------+--------+----------+-----------------------------------------+
2895 | large\        | number | No       | large packet round trip time            |
2896 | PacketRtt     |        |          |                                         |
2897 +---------------+--------+----------+-----------------------------------------+
2898 | largePacket\  | number | No       | large packet threshold being applied    |
2899 | Threshold     |        |          |                                         |
2900 +---------------+--------+----------+-----------------------------------------+
2901 | maxPacket\    | number | Yes      | Maximum packet delay variation or jitter|
2902 | Delay\        |        |          | in milliseconds for received packets:   |
2903 | Variation     |        |          | Maximum of the difference between the   |
2904 |               |        |          | packet timestamp and time received for  |
2905 |               |        |          | all pairs of consecutive packets        |
2906 +---------------+--------+----------+-----------------------------------------+
2907 | maxReceive\   | number | No       | maximum receive bit rate"               |
2908 | BitRate       |        |          |                                         |
2909 +---------------+--------+----------+-----------------------------------------+
2910 | maxTransmit\  | number | No       | maximum transmit bit rate               |
2911 | BitRate       |        |          |                                         |
2912 +---------------+--------+----------+-----------------------------------------+
2913 | mobileQci\    | hashMap| No       | array of key: value pairs where the keys|
2914 | CosCountList  |        |          | are drawn from LTE QCI or UMTS class of |
2915 |               |        |          | service strings, and the values are the |
2916 |               |        |          | count of packets that had those strings |
2917 |               |        |          | in the flow                             |
2918 +---------------+--------+----------+-----------------------------------------+
2919 | mobileQci\    | string | No       | Array of unique LTE QCI or UMTS         |
2920 | CosList       |        |          | class-of-service values observed in the |
2921 |               |        |          | flow                                    |
2922 +---------------+--------+----------+-----------------------------------------+
2923 | num\          | number | Yes      | Number of failed activation requests, as|
2924 | Activation\   |        |          | observed by the reporting node          |
2925 | Failures      |        |          |                                         |
2926 +---------------+--------+----------+-----------------------------------------+
2927 | numBit\       | number | Yes      | number of errored bits                  |
2928 | Errors        |        |          |                                         |
2929 +---------------+--------+----------+-----------------------------------------+
2930 | numBytes\     | number | Yes      | number of bytes received, including     |
2931 | Received      |        |          | retransmissions                         |
2932 +---------------+--------+----------+-----------------------------------------+
2933 | numBytes\     | number | Yes      | number of bytes transmitted, including  |
2934 | Transmitted   |        |          | retransmissions                         |
2935 +---------------+--------+----------+-----------------------------------------+
2936 | numDropped\   | number | Yes      | number of received packets dropped due  |
2937 | Packets       |        |          | to errors per virtual interface         |
2938 +---------------+--------+----------+-----------------------------------------+
2939 | numGtp\       | number | No       | Number of Echo request path failures    |
2940 | EchoFailures  |        |          | where failed paths are defined in 3GPP  |
2941 |               |        |          | TS 29.281 sec 7.2.1 and 3GPP TS 29.060  |
2942 |               |        |          | sec. 11.2                               |
2943 +---------------+--------+----------+-----------------------------------------+
2944 | numGtp\       | number | No       | Number of tunnel error indications where|
2945 | TunnelErrors  |        |          | errors are defined in 3GPP TS 29.281 sec|
2946 |               |        |          | 7.3.1 and 3GPP TS 29.060 sec. 11.1      |
2947 +---------------+--------+----------+-----------------------------------------+
2948 | numHttp\      | number | No       | Http error count                        |
2949 | Errors        |        |          |                                         |
2950 +---------------+--------+----------+-----------------------------------------+
2951 | numL7Bytes\   | number | Yes      | number of tunneled layer 7 bytes        |
2952 | Received      |        |          | received, including retransmissions     |
2953 +---------------+--------+----------+-----------------------------------------+
2954 | numL7Bytes\   | number | Yes      | number of tunneled layer 7 bytes        |
2955 | Transmitted   |        |          | transmitted, excluding retransmissions  |
2956 +---------------+--------+----------+-----------------------------------------+
2957 | numLost\      | number | Yes      | number of lost packets                  |
2958 | Packets       |        |          |                                         |
2959 +---------------+--------+----------+-----------------------------------------+
2960 | numOutOf\     | number | Yes      | number of out-of-order packets          |
2961 | OrderPackets  |        |          |                                         |
2962 +---------------+--------+----------+-----------------------------------------+
2963 | numPacket\    | number | Yes      | number of errored packets               |
2964 | Errors        |        |          |                                         |
2965 +---------------+--------+----------+-----------------------------------------+
2966 | numPackets\   | number | Yes      | number of packets received, excluding   |
2967 | ReceivedExcl\ |        |          | retransmission                          |
2968 | Retrans       |        |          |                                         |
2969 +---------------+--------+----------+-----------------------------------------+
2970 | numPackets\   | number | Yes      | number of packets received, including   |
2971 | ReceivedIncl\ |        |          | retransmission                          |
2972 | Retrans       |        |          |                                         |
2973 +---------------+--------+----------+-----------------------------------------+
2974 | numPackets\   | number | Yes      | number of packets transmitted, including|
2975 | Transmitted\  |        |          | retransmissions                         |
2976 | InclRetrans   |        |          |                                         |
2977 +---------------+--------+----------+-----------------------------------------+
2978 | numRetries    | number | Yes      | number of packet retrie                 |
2979 +---------------+--------+----------+-----------------------------------------+
2980 | numTimeouts   | number | Yes      | number of packet timeouts               |
2981 +---------------+--------+----------+-----------------------------------------+
2982 | numTunneled\  | number | Yes      | number of tunneled layer 7 bytes        |
2983 | L7Bytes\      |        |          | received, excluding retransmissions     |
2984 | Received      |        |          |                                         |
2985 +---------------+--------+----------+-----------------------------------------+
2986 | roundTrip\    | number | Yes      | Round Trip time                         |
2987 | Time          |        |          |                                         |
2988 +---------------+--------+----------+-----------------------------------------+
2989 | tcpFlag\      | hashMap| No       | Array of key: value pairs where the keys|
2990 | CountList     |        |          | are drawn from TCP Flags and the values |
2991 |               |        |          | are the count of packets that had that  |
2992 |               |        |          | TCP Flag in the flow                    |
2993 +---------------+--------+----------+-----------------------------------------+
2994 | tcpFlag\      | string | No       | Array of unique TCP Flags observed in   |
2995 | List          |        |          | the flow                                |
2996 +---------------+--------+----------+-----------------------------------------+
2997 | timeTo\       | number | Yes      | Time in milliseconds between the        |
2998 | FirstByte     |        |          | connection activation and first byte    |
2999 |               |        |          | received                                |
3000 +---------------+--------+----------+-----------------------------------------+
3001
3002 Datatype: mobileFlowFields
3003 **************************
3004
3005 The mobileFlowFields datatype consists of the following fields:
3006
3007 +-------------+------------+----------+---------------------------------------+
3008 | Field       | Type       | Required?| Description                           |
3009 +=============+============+==========+=======================================+
3010 | additional\ | hashMap    | No       | Additional mobileFlow fields if needed|
3011 | Fields      |            |          |                                       |
3012 +-------------+------------+----------+---------------------------------------+
3013 | application\| string     | No       | Application type inferred             |
3014 | Type        |            |          |                                       |
3015 +-------------+------------+----------+---------------------------------------+
3016 | appProtocol\| string     | No       | Application protocol                  |
3017 | Type        |            |          |                                       |
3018 +-------------+------------+----------+---------------------------------------+
3019 | appProtocol\| string     | No       | Application version                   |
3020 | Version     |            |          |                                       |
3021 +-------------+------------+----------+---------------------------------------+
3022 | cid         | string     | No       | Cell Id                               |
3023 +-------------+------------+----------+---------------------------------------+
3024 | connection\ | string     | No       | Abbreviation referencing a 3GPP       |
3025 | Type        |            |          | reference point e.g., S1-U, S11, etc  |
3026 +-------------+------------+----------+---------------------------------------+
3027 | ecgi        | string     | No       | Evolved Cell Global Id                |
3028 +-------------+------------+----------+---------------------------------------+
3029 | flow\       | string     | Yes      | Flow direction, indicating if the     |
3030 | Direction   |            |          | reporting node is the source of the   |
3031 |             |            |          | flow or destination for the flow      |
3032 +-------------+------------+----------+---------------------------------------+
3033 | gtpPer\     | gtpPer     | Yes      | Mobility GTP Protocol per flow metrics|
3034 | FlowMetrics | FlowMetrics|          |                                       |
3035 +-------------+------------+----------+---------------------------------------+
3036 | gtpProtocol\| string     | No       | GTP protocol                          |
3037 | Type        |            |          |                                       |
3038 +-------------+------------+----------+---------------------------------------+
3039 | gtpVersion  | string     | No       | GTP protocol version                  |
3040 +-------------+------------+----------+---------------------------------------+
3041 | httpHeader  | string     | No       | HTTP request header, if the flow      |
3042 |             |            |          | connects to a node referenced by HTTP |
3043 +-------------+------------+----------+---------------------------------------+
3044 | imei        | string     | No       | IMEI for the subscriber UE used in    |
3045 |             |            |          | this flow, if the flow connects to a  |
3046 |             |            |          | mobile device                         |
3047 +-------------+------------+----------+---------------------------------------+
3048 | imsi        | string     | No       | IMSI for the subscriber UE used in    |
3049 |             |            |          | this flow, if the flow connects to a  |
3050 |             |            |          | mobile device                         |
3051 +-------------+------------+----------+---------------------------------------+
3052 | ipProtocol\ | string     | Yes      | IP protocol type e.g.,TCP, UDP, RTP...|
3053 | Type        |            |          |                                       |
3054 +-------------+------------+----------+---------------------------------------+
3055 | ipVersion   | string     | Yes      | IP protocol version e.g., IPv4, IPv6  |
3056 +-------------+------------+----------+---------------------------------------+
3057 | lac         | string     | No       | Location area code                    |
3058 +-------------+------------+----------+---------------------------------------+
3059 | mcc         | string     | No       | Mobile country code                   |
3060 +-------------+------------+----------+---------------------------------------+
3061 | mnc         | string     | No       | Mobile network code                   |
3062 +-------------+------------+----------+---------------------------------------+
3063 | mobileFlow\ | string     | Yes      | Version of the mobileFlowFields block |
3064 | Fields\     |            |          | as "#.#" where # is a digit; see      |
3065 | Version     |            |          | section 1 for the correct digits to   |
3066 |             |            |          | use.                                  |
3067 +-------------+------------+----------+---------------------------------------+
3068 | msisdn      | string     | No       | MSISDN for the subscriber UE used in  |
3069 |             |            |          | this flow, as an integer, if the flow |
3070 |             |            |          | connects to a mobile device           |
3071 +-------------+------------+----------+---------------------------------------+
3072 | other\      | string     | Yes      | IP address for the other endpoint, as |
3073 | EndpointIp\ |            |          | used for the flow being reported on   |
3074 | Address     |            |          |                                       |
3075 +-------------+------------+----------+---------------------------------------+
3076 | other\      | integer    | Yes      | IP Port for the reporting entity, as  |
3077 | Endpoint\   |            |          | used for the flow being reported on   |
3078 | Port        |            |          |                                       |
3079 +-------------+------------+----------+---------------------------------------+
3080 | other\      | string     | No       | Functional role of the other endpoint |
3081 | Functional\ |            |          | for the flow being reported on e.g.,  |
3082 | Role        |            |          | MME, S-GW, P-GW, PCRF...              |
3083 +-------------+------------+----------+---------------------------------------+
3084 | rac         | string     | No       | Routing area code                     |
3085 +-------------+------------+----------+---------------------------------------+
3086 | radioAccess\| string     | No       | Radio Access Technology e.g., 2G, 3G, |
3087 | Technology  |            |          | LTE                                   |
3088 +-------------+------------+----------+---------------------------------------+
3089 | reporting\  | string     | Yes      | IP address for the reporting entity,  |
3090 | EndpointIp\ |            |          | as used for the flow being reported on|
3091 | Addr        |            |          |                                       |
3092 +-------------+------------+----------+---------------------------------------+
3093 | reporting\  | integer    | Yes      | IP port for the reporting entity, as  |
3094 | EndpointPort|            |          | used for the flow being reported on   |
3095 +-------------+------------+----------+---------------------------------------+
3096 | sac         | string     | No       | Service area code                     |
3097 +-------------+------------+----------+---------------------------------------+
3098 | sampling\   | integer    | No       | Integer identifier for the sampling   |
3099 | Algorithm   |            |          | algorithm or rule being applied in    |
3100 |             |            |          | calculating the flow metrics if       |
3101 |             |            |          | metrics are calculated based on a     |
3102 |             |            |          | sample of packets, or 0 if no sampling|
3103 |             |            |          | is applied                            |
3104 +-------------+------------+----------+---------------------------------------+
3105 | tac         | string     | No       | Transport area code                   |
3106 +-------------+------------+----------+---------------------------------------+
3107 | tunnelId    | string     | No       | Tunnel identifier                     |
3108 +-------------+------------+----------+---------------------------------------+
3109 | vlanId      | string     | No       | VLAN identifier used by this flow     |
3110 +-------------+------------+----------+---------------------------------------+
3111
3112 ‘SipSignaling’ Domain Datatypes
3113 +++++++++++++++++++++++++++++++
3114
3115 Datatype: sipSignalingFields
3116 ****************************
3117
3118 The sipSignalingFields datatype communicates information about sip
3119 signaling messages, parameters and signaling state; it consists of the
3120 following fields:
3121
3122 +--------------+-----------+----------+---------------------------------------+
3123 | Field        | Type      | Required?| Description                           |
3124 +==============+===========+==========+=======================================+
3125 | additional\  | hashMap   | No       | Additional sipSignaling fields        |
3126 | Information  |           |          |                                       |
3127 +--------------+-----------+----------+---------------------------------------+
3128 | compressed\  | string    | No       | The full SIP request/response         |
3129 | Sip          |           |          | including headers and bodies          |
3130 +--------------+-----------+----------+---------------------------------------+
3131 | correlator   | string    | Yes      | Constant across all events on this    |
3132 |              |           |          | call                                  |
3133 +--------------+-----------+----------+---------------------------------------+
3134 | local\       | string    | Yes      | Ip address on xNF                     |
3135 | IpAddress    |           |          |                                       |
3136 +--------------+-----------+----------+---------------------------------------+
3137 | localPort    | string    | Yes      | Port on xNF                           |
3138 +--------------+-----------+----------+---------------------------------------+
3139 | remote\      | string    | Yes      | IP address of peer endpoint           |
3140 | IpAddress    |           |          |                                       |
3141 +--------------+-----------+----------+---------------------------------------+
3142 | remotePort   | string    | Yes      | Port of peer endpoint                 |
3143 +--------------+-----------+----------+---------------------------------------+
3144 | sipSignaling\| string    | Yes      | Version of the sipSignalingFields     |
3145 | FieldsVersion|           |          | block as "#.#" where # is a digit; see|
3146 |              |           |          | section 1 for the correct digits to   |
3147 |              |           |          | use.                                  |
3148 +--------------+-----------+----------+---------------------------------------+
3149 | summarySip   | string    | No       | The SIP Method or Response (‘INVITE’, |
3150 |              |           |          | ‘200 OK’, ‘BYE’, etc)                 |
3151 +--------------+-----------+----------+---------------------------------------+
3152 | vendorNf\    | vendorNf  | Yes      | Vendor, NF and nfModule names         |
3153 | NameFields   | NameFields|          |                                       |
3154 +--------------+-----------+----------+---------------------------------------+
3155
3156 ‘Voice Quality’ Domain Datatypes
3157 ++++++++++++++++++++++++++++++++
3158
3159 Datatype: endOfCallVqmSummaries
3160 *******************************
3161
3162 The endOfCallVqmSummaries datatype provides end of call voice quality
3163 metrics; it consists of the following fields:
3164
3165 +--------------+-------+----------+-------------------------------------------+
3166 | Field        | Type  | Required?| Description                               |
3167 +==============+=======+==========+===========================================+
3168 | adjacency\   | string| Yes      | Adjacency name                            |
3169 | Name         |       |          |                                           |
3170 +--------------+-------+----------+-------------------------------------------+
3171 | endpoint\    | number| No       | Endpoint average jitter                   |
3172 | AverageJitter|       |          |                                           |
3173 +--------------+-------+----------+-------------------------------------------+
3174 | endpoint\    | string| Yes      | Enumeration: ‘Caller’, ‘Callee’           |
3175 | Description  |       |          |                                           |
3176 +--------------+-------+----------+-------------------------------------------+
3177 | endpoint\    | number| No       | Endpoint maximum jitter                   |
3178 | MaxJitter    |       |          |                                           |
3179 +--------------+-------+----------+-------------------------------------------+
3180 | endpointRtp\ | number| No       | Endpoint RTP octets discarded             |
3181 | Octets\      |       |          |                                           |
3182 | Discarded    |       |          |                                           |
3183 +--------------+-------+----------+-------------------------------------------+
3184 | endpointRtp\ | number| No       | Endpoint RTP octets lost                  |
3185 | OctetsLost   |       |          |                                           |
3186 +--------------+-------+----------+-------------------------------------------+
3187 | endpointRtp\ | number| No       | Endpoint RTP octets received              |
3188 | Octets\      |       |          |                                           |
3189 | Received     |       |          |                                           |
3190 +--------------+-------+----------+-------------------------------------------+
3191 | endpointRtp\ | number| No       | Endpoint RTP octets sent                  |
3192 | OctetsSent   |       |          |                                           |
3193 +--------------+-------+----------+-------------------------------------------+
3194 | endpointRtp\ | number| No       | Endpoint RTP packets discarded            |
3195 | Packets\     |       |          |                                           |
3196 | Discarded    |       |          |                                           |
3197 +--------------+-------+----------+-------------------------------------------+
3198 | endpointRtp\ | number| No       | Endpoint RTP packets lost                 |
3199 | PacketsLost  |       |          |                                           |
3200 +--------------+-------+----------+-------------------------------------------+
3201 | endpointRtp\ | number| No       | Endpoint RTP packets received             |
3202 | Packets\     |       |          |                                           |
3203 | Received     |       |          |                                           |
3204 +--------------+-------+----------+-------------------------------------------+
3205 | endpointRtp\ | number| No       | Endpoint RTP packets sent                 |
3206 | PacketsSent  |       |          |                                           |
3207 +--------------+-------+----------+-------------------------------------------+
3208 | local\       | number| No       | Local average jitter                      |
3209 | Average\     |       |          |                                           |
3210 | Jitter       |       |          |                                           |
3211 +--------------+-------+----------+-------------------------------------------+
3212 | localAverage\| number| No       | Local average jitter buffer delay         |
3213 | JitterBuffer\|       |          |                                           |
3214 | Delay        |       |          |                                           |
3215 +--------------+-------+----------+-------------------------------------------+
3216 | localMax\    | number| No       | Local maximum jitter                      |
3217 | Jitter       |       |          |                                           |
3218 +--------------+-------+----------+-------------------------------------------+
3219 | localMax\    | number| No       | Local max jitter buffer delay             |
3220 | JitterBuffer\|       |          |                                           |
3221 | Delay        |       |          |                                           |
3222 +--------------+-------+----------+-------------------------------------------+
3223 | localRtp\    | number| No       | Local RTP octets discarded                |
3224 | Octets\      |       |          |                                           |
3225 | Discarded    |       |          |                                           |
3226 +--------------+-------+----------+-------------------------------------------+
3227 | localRtp\    | number| No       | Local RTP octets lost                     |
3228 | OctetsLost   |       |          |                                           |
3229 +--------------+-------+----------+-------------------------------------------+
3230 | localRtp\    | number| No       | Local RTP octets received                 |
3231 | Octets\      |       |          |                                           |
3232 | Received     |       |          |                                           |
3233 +--------------+-------+----------+-------------------------------------------+
3234 | localRtp\    | number| No       | Local RTP octets sent                     |
3235 | OctetsSent   |       |          |                                           |
3236 +--------------+-------+----------+-------------------------------------------+
3237 | localRtp\    | number| No       | Local RTP packets discarded               |
3238 | Packets\     |       |          |                                           |
3239 | Discarded    |       |          |                                           |
3240 +--------------+-------+----------+-------------------------------------------+
3241 | localRtp\    | number| No       | Local RTP packets lost                    |
3242 | PacketsLost  |       |          |                                           |
3243 +--------------+-------+----------+-------------------------------------------+
3244 | localRtp\    | number| No       | Local RTP packets received                |
3245 | Packets\     |       |          |                                           |
3246 | Received     |       |          |                                           |
3247 +--------------+-------+----------+-------------------------------------------+
3248 | localRtp\    | number| No       | Local RTP packets sent                    |
3249 | PacketsSent  |       |          |                                           |
3250 +--------------+-------+----------+-------------------------------------------+
3251 | mosCqe       | number| No       | Decimal range from 1 to 5(1 decimal place)|
3252 +--------------+-------+----------+-------------------------------------------+
3253 | oneWayDelay  | number| No       | one-way path delay in milliseconds        |
3254 +--------------+-------+----------+-------------------------------------------+
3255 | packet\      | number| No       | Calculated percentage packet loss based on|
3256 | LossPercent  |       |          | endpoint RTP packets lost (as reported in |
3257 |              |       |          | RTCP) and local RTP packets sent.         |
3258 |              |       |          | Direction is based on endpoint description|
3259 |              |       |          | (Caller, Callee). Decimal (2 decimal      |
3260 |              |       |          | places)                                   |
3261 +--------------+-------+----------+-------------------------------------------+
3262 | rFactor      | number| No       | rFactor from 0 to 100                     |
3263 +--------------+-------+----------+-------------------------------------------+
3264 | round\       | number| No       | Round trip delay in milliseconds          |
3265 | TripDelay    |       |          |                                           |
3266 +--------------+-------+----------+-------------------------------------------+
3267
3268 Datatype: voiceQualityFields
3269 ****************************
3270
3271 The voiceQualityFields datatype provides statistics related to customer
3272 facing voice products; consists of the following fields:
3273
3274 +--------------+-------------+----------+-------------------------------------+
3275 | Field        | Type        | Required?| Description                         |
3276 +==============+=============+==========+=====================================+
3277 | additional\  | hashMap     | No       | Additional voice quality fields     |
3278 | Information  |             |          |                                     |
3279 +--------------+-------------+----------+-------------------------------------+
3280 | callee\      | string      | Yes      | Callee codec for the call           |
3281 | SideCodec    |             |          |                                     |
3282 +--------------+-------------+----------+-------------------------------------+
3283 | caller\      | string      | Yes      | Caller codec for the call           |
3284 | SideCodec    |             |          |                                     |
3285 +--------------+-------------+----------+-------------------------------------+
3286 | correlator   | string      | Yes      | Constant across all events on this  |
3287 |              |             |          | call                                |
3288 +--------------+-------------+----------+-------------------------------------+
3289 | endOfCall\   | endOfCallVqm| No       | End of call voice quality metric    |
3290 | VqmSummaries | Summaries   |          | summaries                           |
3291 +--------------+-------------+----------+-------------------------------------+
3292 | phoneNumber  | string      | No       | Phone number associated with the    |
3293 |              |             |          | correlator                          |
3294 +--------------+-------------+----------+-------------------------------------+
3295 | midCallRtcp  | string      | Yes      | Base64 encoding of the binary RTCP  |
3296 |              |             |          | data (excluding Eth/IP/UDP headers) |
3297 +--------------+-------------+----------+-------------------------------------+
3298 | vendorNf\    | vendorNf    | Yes      | Vendor, NF and nfModule names       |
3299 | NameFields   | NameFields  |          |                                     |
3300 +--------------+-------------+----------+-------------------------------------+
3301 | voiceQuality\| string      | Yes      | Version of the voiceQualityFields   |
3302 | FieldsVersion|             |          | block as "#.#" where # is a digit;  |
3303 |              |             |          | see section 1 for the correct digits|
3304 |              |             |          | to use.                             |
3305 +--------------+-------------+----------+-------------------------------------+
3306
3307
3308 RESTful Web Services Definition
3309 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3310
3311 Security
3312 ~~~~~~~~
3313
3314 Event sources must identify themselves to the VES Event Listener.
3315
3316 There are 2 methods of HTTP authentication supported: Certificate Authentication
3317 and Basic Authentication.
3318
3319 Basic authentication is supported in VES Event Listener for backward
3320 compatibility for existing NFs that are already managed by ONAP. New NFs should
3321 support Certificate Authentication. Because the security is better, NFs may
3322 choose to only support Certificate Authentication and not support Basic
3323 Authentication.
3324
3325 Basic Authentication
3326 ++++++++++++++++++++
3327
3328 When using Basic Authentication, the event source must not pass credentials on
3329 the query string.  Credentials must be sent in an Authorization header as
3330 follows:
3331
3332 1. The username and password are formed into one string as
3333    ``username:password``
3334 2. The resulting string is Base64 encoded to produce the encoded credential.
3335 3. The encoded credential is communicated in the header after the string
3336    ``Authorization: Basic``
3337
3338 Because the credentials are merely encoded but not encrypted, HTTPS (rather
3339 than HTTP) should be used.  HTTPS will also encrypt and protect event contents.
3340
3341 Sample Request and Response
3342 +++++++++++++++++++++++++++
3343
3344 Sample Request
3345 **************
3346
3347 .. code-block:: http
3348
3349     POST /eventListener/v7 HTTP/1.1
3350     Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
3351     content-type: application/json
3352     content-length: 12345
3353     {
3354         "event": {
3355             "commonEventHeader": {
3356                 "version": "4.1",
3357                 "vesEventListenerVersion": "7.2",
3358                 "domain": "heartbeat",
3359                 "eventName": "Heartbeat_vIsbcMmc",
3360                 "eventId": "heartbeat0000249",
3361                 "sequence": 0,
3362                 "priority": "Normal",
3363                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
3364                 "reportingEntityName": "ibcx0001vm002oam001",
3365                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
3366                 "sourceName": "ibcx0001vm002ssc001",
3367                 "nfVendorName": "Ericsson",
3368                 "nfNamingCode": "ibcx",
3369                 "nfcNamingCode": "ssc",
3370                 "startEpochMicrosec": 1413378172000000,
3371                 "lastEpochMicrosec": 1413378172000000,
3372                 "timeZoneOffset": "UTC-05:30"
3373             }
3374         }
3375     }
3376
3377
3378 Sample Success Response
3379 ***********************
3380
3381 .. code-block:: http
3382
3383     HTTPS/1.1 202 Accepted
3384     X-MinorVersion: 2
3385     X-PatchVersion: 0
3386     X-LatestVersion: 7.2
3387
3388
3389 Mutual TLS Certificate Authentication
3390 +++++++++++++++++++++++++++++++++++++
3391
3392 When using Certificate Authentication, the event source must initialize the
3393 HTTPS connection with TLS 1.2 or higher and execute mutual authentication
3394 procedures according to `RFC5246 <https://tools.ietf.org/html/rfc5246#section-7.4.6>`__.
3395 The event source must authenticate the VES Listener certificate and must
3396 provide its own X.509v3 end-entity certificate to the VES Listener for
3397 authentication. The Subject Name in the end-entity certificate must be used
3398 according to `RFC5280 <https://www.ietf.org/rfc/rfc5280.txt>`__. If a
3399 certificate is provided by the NF but it is invalid, the VES Listener is
3400 expected to reject the connection and not fall back to basic authentication.
3401
3402 Resource Structure
3403 ~~~~~~~~~~~~~~~~~~
3404
3405 REST resources are defined with respect to a ServerRoot:
3406
3407 ServerRoot = https://{Domain|IP}:{Port}/{optionalRoutingPath}
3408
3409 The resource structure is provided below::
3410
3411     {ServerRoot}
3412         |
3413         |--- /eventListener/v{apiVersion}
3414                  |
3415                  |--- /eventBatch
3416
3417 **Figure 1**: REST Resource Structure
3418
3419 Exceptions
3420 ~~~~~~~~~~
3421
3422 RESTful Web Services Exceptions
3423 +++++++++++++++++++++++++++++++
3424
3425 RESTful services generate and send exceptions to clients in response to
3426 invocation errors. Exceptions send HTTP status codes (specified later in
3427 this document for each operation). HTTP status codes may be followed by
3428 an optional JSON exception structure described below. Two types of
3429 exceptions may be defined: service exceptions and policy exceptions.
3430
3431 +-----------+---------------+-------------+-----------------------------------+
3432 | Field Name| Data Type     | Required?   | Description                       |
3433 +===========+===============+=============+===================================+
3434 | messageId | xs:string     | Yes         | Unique message identifier of the  |
3435 |           |               |             | format ‘ABCnnnn’ where ‘ABC’ is   |
3436 |           |               |             | either ‘SVC’ for Service          |
3437 |           |               |             | Exceptions or ‘POL’ for Policy    |
3438 |           |               |             | Exception.                        |
3439 |           |               |             |                                   |
3440 |           |               |             | Exception numbers may be in the   |
3441 |           |               |             | range of 0001 to 9999 where :     |
3442 |           |               |             |                                   |
3443 |           |               |             | -  0001 to 2999 are defined by OMA|
3444 |           |               |             |    (see OMA’s Common_definitions_ |
3445 |           |               |             |    for details)                   |
3446 |           |               |             |                                   |
3447 |           |               |             | -  3000-9999 are available and    |
3448 |           |               |             |    undefined                      |
3449 +-----------+---------------+-------------+-----------------------------------+
3450 | text      | xs:string     | Yes         | Message text, with replacement    |
3451 |           |               |             | variables marked with %n, where n |
3452 |           |               |             | is an index into the list of      |
3453 |           |               |             | <variables> elements, starting at |
3454 |           |               |             | 1                                 |
3455 +-----------+---------------+-------------+-----------------------------------+
3456 | variables | xs:string     | No          | List of zero or more strings that |
3457 |           | [0..unbounded]|             | represent the contents of the     |
3458 |           |               |             | variables used by the message text|
3459 +-----------+---------------+-------------+-----------------------------------+
3460 | url       | xs:anyUrl     | No          | Hyperlink to a detailed error     |
3461 |           |               |             | resource (e.g., an HTML page for  |
3462 |           |               |             | browser user agents).             |
3463 +-----------+---------------+-------------+-----------------------------------+
3464
3465 Service Exceptions
3466 ++++++++++++++++++
3467
3468 When a service is not able to process a request, and retrying the
3469 request with the same information will also result in a failure, and
3470 the issue is not related to a service policy issue, then the service
3471 will issue a fault using the service exception fault message.
3472 Examples of service exceptions include invalid input, lack of
3473 availability of a required resource or a processing error.
3474
3475 A service exception uses the letters 'SVC' at the beginning of the
3476 message identifier. ‘SVC’ service exceptions used by the VES Event
3477 Listener API are defined below.
3478
3479 +----------+--------------+-----------------------+----------------+----------+
3480 | MessageId| Description  | Text                  | Variables      | Parent   |
3481 |          | / Comment    |                       |                | HTTP Code|
3482 +==========+==============+=======================+================+==========+
3483 | SVC0001  | General      | <custom error message>| None           | 400      |
3484 |          | service error|                       |                |          |
3485 |          | (see SVC2000)|                       |                |          |
3486 +----------+--------------+-----------------------+----------------+----------+
3487 | SVC0002  | Bad parameter| Invalid input value   | %1: message    | 400      |
3488 |          |              | for message part %1   | part           |          |
3489 +----------+--------------+-----------------------+----------------+----------+
3490 | SVC1000  | No server    | No server resources   | None           | 500      |
3491 |          | resources    | available to process  |                |          |
3492 |          |              | the request           |                |          |
3493 +----------+--------------+-----------------------+----------------+----------+
3494 | SVC2000  | More         | The following service | %1: human      | 400      |
3495 |          | elaborate    | error occurred: %1.   | readable       |          |
3496 |          | version of   |                       | description of |          |
3497 |          | SVC0001      |                       | the error      |          |
3498 |          |              |                       |                |          |
3499 |          |              |  Error code is %2.    | %2: error code |          |
3500 +----------+--------------+-----------------------+----------------+----------+
3501 | SVC2004  | Invalid input| Invalid input value   | %1: attribute  | 400      |
3502 |          | value        | for %1 %2: %3         |                |          |
3503 |          |              |                       | %2: event.com\ |          |
3504 |          |              |                       | monEventHeader\|          |
3505 |          |              |                       | .stndDefined\  |          |
3506 |          |              |                       | Namespace      |          |
3507 |          |              |                       |                |          |
3508 |          |              |                       | %3: Unable to  |          |
3509 |          |              |                       | route event    |          |
3510 |          |              |                       |                |          |
3511 +----------+--------------+-----------------------+----------------+----------+
3512 | SVC2006  | Mandatory    | Mandatory input %1 %2 | %1: attribute  | 400      |
3513 |          | input missing| is missing from       |                |          |
3514 |          |              | request               | %2: event.com\ |          |
3515 |          |              |                       | monEventHeader\|          |
3516 |          |              |                       | .stndDefined\  |          |
3517 |          |              |                       | Namespace      |          |
3518 +----------+--------------+-----------------------+----------------+----------+
3519
3520
3521 Table - Service Exceptions
3522
3523 Policy Exceptions
3524 +++++++++++++++++
3525
3526 When a service is not able to complete because the request fails to
3527 meet a policy criteria, then the service will issue a fault using the
3528 policy exception fault message. To clarify how a policy exception
3529 differs from a service exception, consider that all the input to an
3530 operation may be valid as meeting the required input for the
3531 operation (thus no service exception), but using that input in the
3532 execution of the service may result in conditions that require the
3533 service not to complete. Examples of policy exceptions include
3534 privacy violations, requests not permitted under a governing service
3535 agreement or input content not acceptable to the service provider.
3536
3537 A Policy Exception uses the letters 'POL' at the beginning of the
3538 message identifier. ‘POL’ policy exceptions used by the VES Event
3539 Listener API are defined below.
3540
3541 +----------+---------------+-----------------------+---------------+----------+
3542 | MessageId| Description   |Text                   | Variables     | Parent   |
3543 |          | / Comment     |                       |               | HTTP Code|
3544 +==========+===============+=======================+===============+==========+
3545 | POL0001  | General policy| A policy error        | None          | 401      |
3546 |          | error (see    | occurred.             |               |          |
3547 |          | POL2000)      |                       |               |          |
3548 +----------+---------------+-----------------------+---------------+----------+
3549 | POL1009  | User not      | User has not been     | None          | 401      |
3550 |          | provisioned   | provisioned for       |               |          |
3551 |          | for service   | service               |               |          |
3552 +----------+---------------+-----------------------+---------------+----------+
3553 | POL1010  | User suspended| User has been         | None          | 401      |
3554 |          | from service  | suspended from service|               |          |
3555 +----------+---------------+-----------------------+---------------+----------+
3556 | POL2000  | More elaborate| The following policy  | %1: human     | 401      |
3557 |          | version of    | error occurred: %1.   | readable      |          |
3558 |          | POL0001       | Error code is %2.     | description of|          |
3559 |          |               |                       | the error     |          |
3560 |          |               |                       |               |          |
3561 |          |               |                       | %2: error code|          |
3562 +----------+---------------+-----------------------+---------------+----------+
3563 | POL9003  | Message size  | Message content size  | None          | 400      |
3564 |          | exceeds limit | exceeds the allowable |               |          |
3565 |          |               | limit                 |               |          |
3566 +----------+---------------+-----------------------+---------------+----------+
3567
3568 Table - Policy Exceptions
3569
3570 REST Operation Overview
3571 ~~~~~~~~~~~~~~~~~~~~~~~
3572
3573 REST Operation Summary
3574 ++++++++++++++++++++++
3575
3576 +---------------------+---------+------------------------------------------+
3577 | **Operation Action**| **HTTP**| Resource URL relative to {ServerRoot}\   |
3578 |                     |         | , which is defined in section 3          |
3579 |                     | **Verb**|                                          |
3580 +---------------------+---------+------------------------------------------+
3581 | publishAnyEvent     | POST    | /eventListener/v{apiVersion}             |
3582 +---------------------+---------+------------------------------------------+
3583 | publishEventBatch   | POST    | /eventListener/v{apiVersion}/eventBatch  |
3584 +---------------------+---------+------------------------------------------+
3585
3586 Table - REST Operation Summary
3587
3588 Api Versioning
3589 ++++++++++++++
3590
3591 ``apiVersion`` is used to describe the major version number of the event
3592 listener API (which is the same as the major version number of this
3593 specification). When this number changes, the implication is: the new
3594 major version will break clients of older major versions in some way, if
3595 they try to use the new API without modification (e.g., unmodified v1
3596 clients would not be able to use v2 without error).
3597
3598 The Event Listener shall provide the following HTTP headers in response
3599 to all requests. Additionally, clients may populate these headers on
3600 requests to indicate the specific version they are interested in.
3601
3602 -  X-MinorVersion: 2
3603
3604 -  X-PatchVersion: 0
3605
3606 -  X-LatestVersion: 7.2
3607
3608 If a client requests major version 7 (per the REST resource URL) and
3609 does not specify the above headers, then they will be provided with the
3610 latest patch version of 7.0.x (which is 7.0.1). If the client wants a
3611 minor version of major version 7, then they need to supply
3612 the X-MinorVersion header with their request. For example, if they
3613 request major version 7 with X-MinorVersion: 1, they will get the latest
3614 patch version of 7.1, which is 7.1.1.
3615
3616 .. _ves_msg_size_7_2:
3617
3618 Message Size
3619 ++++++++++++
3620
3621 The maximum allowed message size is 2 megabytes of uncompressed text.
3622 However, messages of this size have been known to cause performance and data
3623 loss. It is strongly recommended, that messages not exceed 1 megabyte.
3624 In a future version of the specification, a 1 megabyte limit will become
3625 a mandatory requirement.
3626
3627 Operation: publishAnyEvent
3628 ~~~~~~~~~~~~~~~~~~~~~~~~~~
3629
3630 Functional Behavior
3631 +++++++++++++++++++
3632
3633 Allows authorized clients to publish any single event to the VES event
3634 listener.
3635
3636 -  Supports only HTTPS access.
3637
3638 -  Uses the HTTP verb POST
3639
3640 -  Supports JSON content types
3641
3642 -  Provides HTTP response codes as well as Service and Policy error
3643    messages
3644
3645 Call Flow
3646 +++++++++
3647
3648 .. seqdiag::
3649     :caption: ``publishAnyEvent`` Call Flow
3650
3651     seqdiag {
3652       edge_length = 250;
3653       client  -> listener [label = "POST /eventlistener/v7"];
3654       client <- listener [label = "HTTP 202 Accepted", note = "sync response"];
3655       === Error Scenario ===
3656       client  -> listener [label = "POST /eventlistener/v7"];
3657       client <- listener [label = "HTTP 4XX/5XX", note = "sync response"];
3658     }
3659
3660 Input Parameters
3661 ++++++++++++++++
3662
3663 Header Fields (note: all parameter names shall be treated as
3664 case-insensitive):
3665
3666 +---------------+----------+----------+---------------------------------------+
3667 | Parameter     | Data Type| Required?| Brief description                     |
3668 +---------------+----------+----------+---------------------------------------+
3669 | Accept        | string   | No       | Determines the format of the body of  |
3670 |               |          |          | the response. Valid values are:       |
3671 |               |          |          |                                       |
3672 |               |          |          | -  application/json                   |
3673 +---------------+----------+----------+---------------------------------------+
3674 | Authorization | string   | No       | The username and password are formed  |
3675 |               |          |          | into one string as                    |
3676 |               |          |          | ``username:password``. This string is |
3677 |               |          |          | then Base64 encoded to produce the    |
3678 |               |          |          | encoded credential which is           |
3679 |               |          |          | communicated in the header after the  |
3680 |               |          |          | string "Authorization: Basic ". See   |
3681 |               |          |          | examples below. If the Authorization  |
3682 |               |          |          | header is missing, then an HTTP 400   |
3683 |               |          |          | Invalid Request message shall be      |
3684 |               |          |          | returned. If the string supplied is   |
3685 |               |          |          | invalid, then an HTTP 401 Unauthorized|
3686 |               |          |          | message shall be returned.            |
3687 +---------------+----------+----------+---------------------------------------+
3688 | Content-length| integer  | No       | Note that content length is limited to|
3689 |               |          |          | 2 Megabyte                            |
3690 |               |          |          | (see :ref:`ves_msg_size_7_2`)         |
3691 +---------------+----------+----------+---------------------------------------+
3692 | Content-type  | string   | Yes      | Must be set to one of the following   |
3693 |               |          |          | values:                               |
3694 |               |          |          |                                       |
3695 |               |          |          | -  application/json                   |
3696 +---------------+----------+----------+---------------------------------------+
3697 | X-MinorVersion| integer  | No       | The minor version of the API requested|
3698 |               |          |          | by the client                         |
3699 +---------------+----------+----------+---------------------------------------+
3700 | X-PatchVersion| integer  | No       | The patch version of the API requested|
3701 |               |          |          | by the client                         |
3702 +---------------+----------+----------+---------------------------------------+
3703 | X-Latest\     | string   | No       | The full version of the API requested |
3704 | Version       |          |          | by the client expressed as            |
3705 |               |          |          | {major}.{minor}.{patch}               |
3706 +---------------+----------+----------+---------------------------------------+
3707
3708 Body Fields:
3709
3710 +--------------+--------------+--------------+-------------------------------+
3711 | **Parameter**| **Data Type**| **Required?**| **Brief description**         |
3712 +--------------+--------------+--------------+-------------------------------+
3713 | Event        | event        | Yes          | Contains the JSON structure of|
3714 |              |              |              | the common event format.      |
3715 +--------------+--------------+--------------+-------------------------------+
3716
3717 Output Parameters
3718 +++++++++++++++++
3719
3720 Header fields:
3721
3722 +----------------+--------------+--------------+------------------------------+
3723 | **Parameter**  | **Data Type**| **Required?**| **Brief description**        |
3724 +----------------+--------------+--------------+------------------------------+
3725 | Content-length | integer      | No           | Used only in error conditions|
3726 +----------------+--------------+--------------+------------------------------+
3727 | Content-type   | string       | No           | Used only in error conditions|
3728 +----------------+--------------+--------------+------------------------------+
3729 | Date           | datetime     | No           | Date time of the response in |
3730 |                |              |              | GMT                          |
3731 +----------------+--------------+--------------+------------------------------+
3732 | X-MinorVersion | integer      | Yes          | The minor version of the API |
3733 |                |              |              | service                      |
3734 +----------------+--------------+--------------+------------------------------+
3735 | X-PatchVersion | integer      | Yes          | The patch version of the API |
3736 |                |              |              | service                      |
3737 +----------------+--------------+--------------+------------------------------+
3738 | X-LatestVersion| string       | Yes          | The full version of the API  |
3739 |                |              |              | service expressed as {major}.|
3740 |                |              |              | {minor}.{patch}              |
3741 +----------------+--------------+--------------+------------------------------+
3742
3743 Body Fields (for success responses): no content is provided.
3744
3745 Body Fields (for error responses):
3746
3747 +--------------+--------------+----------------+------------------------------+
3748 | **Parameter**| **Data Type**| **Required?**  | **Brief description**        |
3749 +--------------+--------------+----------------+------------------------------+
3750 | requestError | requestError | Yes(for errors)| Used only in error conditions|
3751 +--------------+--------------+----------------+------------------------------+
3752
3753 HTTP Status Codes
3754 +++++++++++++++++
3755
3756 +-----+--------------+--------------------------------------------------------+
3757 | Code| Reason Phrase| Description                                            |
3758 +=====+==============+========================================================+
3759 | 202 | Accepted     | The request has been accepted for processing           |
3760 +-----+--------------+--------------------------------------------------------+
3761 | 400 | Bad Request  | Many possible reasons not specified by the other codes |
3762 |     |              | (e.g., missing required parameters or incorrect format)|
3763 |     |              | . The response body may include a further exception    |
3764 |     |              | code and text. HTTP 400 errors may be mapped to SVC0001|
3765 |     |              | (general service error), SVC0002 (bad parameter),      |
3766 |     |              | SVC2004 (Invalid input value), SVC2006 (Mandatory input|
3767 |     |              | is missing from request), SVC2000 (general service     |
3768 |     |              | error with details) or PO9003 (message content size    |
3769 |     |              | exceeds the allowable limit).                          |
3770 +-----+--------------+--------------------------------------------------------+
3771 | 401 | Unauthorized | Authentication failed or was not provided. HTTP 401    |
3772 |     |              | errors may be mapped to POL0001 (general policy error) |
3773 |     |              | or POL2000 (general policy error with details).        |
3774 +-----+--------------+--------------------------------------------------------+
3775 | 404 | Not Found    | The server has not found anything matching the         |
3776 |     |              | Request-URI. No indication is given of whether the     |
3777 |     |              | condition is temporary or permanent.                   |
3778 +-----+--------------+--------------------------------------------------------+
3779 | 405 | Method Not   | A request was made of a resource using a request method|
3780 |     | Allowed      | not supported by that resource (e.g., using PUT on a   |
3781 |     |              | REST resource that only supports POST).                |
3782 +-----+--------------+--------------------------------------------------------+
3783 | 500 | Internal     | The server encountered an internal error or timed out; |
3784 |     | Server Error | please retry (general catch-all server-side error).HTTP|
3785 |     |              | 500 errors may be mapped to SVC1000 (no server         |
3786 |     |              | resources).                                            |
3787 +-----+--------------+--------------------------------------------------------+
3788
3789 Sample Request and Response
3790 +++++++++++++++++++++++++++
3791
3792 Sample Request
3793 **************
3794
3795 .. code-block:: http
3796
3797     POST  /eventListener/v7 HTTP/1.1
3798     Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
3799     content-type: application/json
3800     content-length: 12345
3801     X-MinorVersion: 1
3802
3803     {
3804         "event": {
3805             "commonEventHeader": {
3806                 "version": "4.1",
3807                 "vesEventListenerVersion": "7.2",
3808                 "domain": "fault",
3809                 "eventName": "Fault_Vscf:Acs-Ericcson_PilotNumberPoolExhaustion",
3810                 "eventId": "fault0000245",
3811                 "sequence": 1,
3812                 "priority": "High",
3813                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
3814                 "reportingEntityName": "ibcx0001vm002oam001",
3815                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
3816                 "sourceName": "scfx0001vm002cap001",
3817                 "nfVendorName": "Ericsson",
3818                 "nfNamingCode": "scfx",
3819                 "nfcNamingCode": "ssc",
3820                 "startEpochMicrosec": 1413378172000000,
3821                 "lastEpochMicrosec": 1413378172000000,
3822                 "timeZoneOffset": "UTC-05:30"
3823             },
3824             "faultFields": {
3825                 "faultFieldsVersion": 4.0,
3826                 "alarmCondition": "PilotNumberPoolExhaustion",
3827                 "eventSourceType": "other",
3828                 "specificProblem": "Calls cannot complete - pilot numbers are unavailable",
3829                 "eventSeverity": "CRITICAL",
3830                 "vfStatus": "Active",
3831                 "alarmAdditionalInformation": {
3832                     "PilotNumberPoolSize": "1000"
3833                 }
3834             }
3835         }
3836     }
3837
3838
3839
3840 Sample Success Response
3841 ***********************
3842
3843 .. code-block:: http
3844
3845     HTTPS/1.1 202 Accepted
3846     X-MinorVersion: 2
3847     X-PatchVersion: 0
3848     X-LatestVersion: 7.2
3849
3850 Sample Error Responses
3851 **********************
3852
3853 Sample Policy Exception
3854 """""""""""""""""""""""
3855
3856 .. code-block:: http
3857
3858     HTTPS/1.1 400 Bad Request
3859     content-type: application/json
3860     content-length: 12345
3861     Date: Thu, 04 Jun 2009 02:51:59 GMT
3862     X-MinorVersion: 2
3863     X-PatchVersion: 0
3864     X-LatestVersion: 7.2
3865
3866     {
3867       "requestError": {
3868         "policyException": {
3869           "messageId": "POL9003",
3870           "text": "Message content size exceeds the allowable limit",
3871         }
3872       }
3873     }
3874
3875
3876 Sample Service Exception
3877 """"""""""""""""""""""""
3878
3879 .. code-block:: http
3880
3881     HTTPS/1.1 400 Bad Request
3882     content-type: application/json
3883     content-length: 12345
3884     Date: Thu, 04 Jun 2009 02:51:59 GMT
3885     X-MinorVersion: 2
3886     X-PatchVersion: 0
3887     X-LatestVersion: 7.2
3888
3889     {
3890       "requestError": {
3891         "serviceException": {
3892           "messageId": "SVC2000",
3893           "text": "Missing Parameter: %1. Error code is %2"
3894           "variables": [
3895             "severity",
3896             "400"
3897           ]
3898         }
3899       }
3900     }
3901
3902 Operation: publishEventBatch
3903 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3904
3905 Functional Behavior
3906 +++++++++++++++++++
3907
3908 Allows authorized clients to publish a batch of events to the VES event
3909 listener.
3910
3911 - Supports only HTTPS access.
3912
3913 - Uses the HTTP verb POST
3914
3915 - Supports JSON content types
3916
3917 - Provides HTTP response codes as well as Service and Policy error
3918   messages
3919
3920 ``publishEventBatch`` events are handled similarly to a single event. The
3921 acknowledgement from the VES Event Listener is for the ``publishEventBatch`` and
3922 not individual events within the ``publishEventBatch``.
3923
3924 Call Flow
3925 +++++++++
3926
3927 .. seqdiag::
3928     :caption: ``publishEventBatch`` Call Flow
3929
3930     seqdiag {
3931       edge_length = 250;
3932       client  -> listener [label = "POST /eventlistener/v7/eventBatch"];
3933       client <- listener [label = "HTTP 202 Accepted", note = "sync response"];
3934       === Error Scenario ===
3935       client  -> listener [label = "POST /eventlistener/v7/eventBatch"];
3936       client <- listener [label = "HTTP 4XX/5XX", note = "sync response"];
3937     }
3938
3939 Input Parameters
3940 ++++++++++++++++
3941
3942 Header Fields (note: all parameter names shall be treated as
3943 case-insensitive):
3944
3945 +---------------+----------+----------+---------------------------------------+
3946 | Parameter     | Data Type| Required?| Brief description                     |
3947 +---------------+----------+----------+---------------------------------------+
3948 | Accept        | string   | No       | Determines the format of the body of  |
3949 |               |          |          | the response. Valid values are:       |
3950 |               |          |          |                                       |
3951 |               |          |          | -  application/json                   |
3952 +---------------+----------+----------+---------------------------------------+
3953 | Authorization | string   | No       | The username and password are formed  |
3954 |               |          |          | into one string as "username:password"|
3955 |               |          |          | . This string is then Base64 encoded  |
3956 |               |          |          | to produce the encoded credential     |
3957 |               |          |          | which is communicated in the header   |
3958 |               |          |          | after the string "Authorization:      |
3959 |               |          |          | Basic". See examples below. If the    |
3960 |               |          |          | Authorization header is missing, then |
3961 |               |          |          | an HTTP 400 Invalid Request message   |
3962 |               |          |          | shall be returned. If the string      |
3963 |               |          |          | supplied is invalid, then an HTTP 401 |
3964 |               |          |          | Unauthorized message shall be         |
3965 |               |          |          | returned.                             |
3966 +---------------+----------+----------+---------------------------------------+
3967 | Content-length| integer  | No       | Note that content length is limited to|
3968 |               |          |          | 2 megabyte                            |
3969 |               |          |          | (see :ref:`ves_msg_size_7_2`).        |
3970 +---------------+----------+----------+---------------------------------------+
3971 | Content-type  | string   | Yes      | Must be set to one of the following   |
3972 |               |          |          | values:                               |
3973 |               |          |          |                                       |
3974 |               |          |          | -  application/json                   |
3975 +---------------+----------+----------+---------------------------------------+
3976 | X-MinorVersion| integer  | No       | The minor version of the API requested|
3977 |               |          |          | by the client                         |
3978 +---------------+----------+----------+---------------------------------------+
3979 | X-PatchVersion| integer  | No       | The patch version of the API requested|
3980 |               |          |          | by the client                         |
3981 +---------------+----------+----------+---------------------------------------+
3982 | X-Latest\     | string   | No       | The full version of the API requested |
3983 | Version       |          |          | by the client expressed as            |
3984 |               |          |          | {major}.{minor}.{patch}               |
3985 +---------------+----------+----------+---------------------------------------+
3986
3987 Body Fields:
3988
3989 +--------------+--------------+--------------+-------------------------------+
3990 | **Parameter**| **Data Type**| **Required?**| **Brief description**         |
3991 +--------------+--------------+--------------+-------------------------------+
3992 | eventList    | eventList    | Yes          | Array of events conforming to |
3993 |              |              |              | the common event format. All  |
3994 |              |              |              | events must belong to a       |
3995 |              |              |              | single domain.                |
3996 |              |              |              | In case of stndDefined domain |
3997 |              |              |              | all events must have the same |
3998 |              |              |              | stndDefinedNamespace value    |
3999 |              |              |              | set.                          |
4000 +--------------+--------------+--------------+-------------------------------+
4001
4002 Output Parameters
4003 +++++++++++++++++
4004
4005 Header fields:
4006
4007 +----------------+--------------+--------------+------------------------------+
4008 | **Parameter**  | **Data Type**| **Required?**| **Brief description**        |
4009 +----------------+--------------+--------------+------------------------------+
4010 | Content-length | integer      | No           | Used only in error conditions|
4011 +----------------+--------------+--------------+------------------------------+
4012 | Content-type   | string       | No           | Used only in error conditions|
4013 +----------------+--------------+--------------+------------------------------+
4014 | Date           | datetime     | No           | Date time of the response in |
4015 |                |              |              | GMT                          |
4016 +----------------+--------------+--------------+------------------------------+
4017 | X-MinorVersion | integer      | Yes          | The minor version of the API |
4018 |                |              |              | service                      |
4019 +----------------+--------------+--------------+------------------------------+
4020 | X-PatchVersion | integer      | Yes          | The patch version of the API |
4021 |                |              |              | service                      |
4022 +----------------+--------------+--------------+------------------------------+
4023 | X-LatestVersion| string       | Yes          | The full version of the API  |
4024 |                |              |              | service expressed as         |
4025 |                |              |              | {major}.{minor}.{patch}      |
4026 +----------------+--------------+--------------+------------------------------+
4027
4028 Body Fields (for success responses: no content is provided.
4029
4030 Body Fields (for error responses):
4031
4032 +--------------+--------------+----------------+------------------------------+
4033 | **Parameter**| **Data Type**| **Required?**  | **Brief description**        |
4034 +--------------+--------------+----------------+------------------------------+
4035 | requestError | requestError | Yes(for errors)| Used only in error conditions|
4036 +--------------+--------------+----------------+------------------------------+
4037
4038 HTTP Status Codes
4039 +++++++++++++++++
4040
4041 +-----+--------------+--------------------------------------------------------+
4042 | Code| Reason Phrase| Description                                            |
4043 +=====+==============+========================================================+
4044 | 202 | Accepted     | The request has been accepted for processing           |
4045 +-----+--------------+--------------------------------------------------------+
4046 | 400 | Bad Request  | Many possible reasons not specified by the other codes |
4047 |     |              | (e.g., missing required parameters or incorrect format)|
4048 |     |              | . The response body may include a further exception    |
4049 |     |              | code and text. HTTP 400 errors may be mapped to SVC0001|
4050 |     |              | (general service error), SVC0002 (bad parameter),      |
4051 |     |              | SVC2000 (general service error with details) or PO9003 |
4052 |     |              | (message content size exceeds the allowable limit).    |
4053 +-----+--------------+--------------------------------------------------------+
4054 | 401 | Unauthorized | Authentication failed or was not provided. HTTP 401    |
4055 |     |              | errors may be mapped to POL0001 (general policy error) |
4056 |     |              | or POL2000 (general policy error with details).        |
4057 +-----+--------------+--------------------------------------------------------+
4058 | 404 | Not Found    | The server has not found anything matching the         |
4059 |     |              | Request-URI. No indication is given of whether the     |
4060 |     |              | condition is temporary or permanent.                   |
4061 +-----+--------------+--------------------------------------------------------+
4062 | 405 | Method Not   | A request was made of a resource using a request method|
4063 |     | Allowed      | not supported by that resource (e.g., using PUT on a   |
4064 |     |              | REST resource that only supports POST).                |
4065 +-----+--------------+--------------------------------------------------------+
4066 | 500 | Internal     | The server encountered an internal error or timed out; |
4067 |     | Server Error | please retry (general catch-all server-side error).HTTP|
4068 |     |              | 500 errors may be mapped to SVC1000 (no server         |
4069 |     |              | resources).                                            |
4070 +-----+--------------+--------------------------------------------------------+
4071
4072 Sample Request and Response
4073 +++++++++++++++++++++++++++
4074
4075 Sample Request
4076 **************
4077
4078 .. code-block:: http
4079
4080     POST /eventListener/v7/eventBatch HTTP/1.1
4081     Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
4082     content-type: application/json
4083     content-length: 12345
4084     X-MinorVersion: 1
4085
4086     {
4087        "eventList": [
4088           {
4089              "commonEventHeader": {
4090                 "version": "4.1",
4091                 "vesEventListenerVersion": "7.2",
4092                 "domain": "fault",
4093                 "eventName": "Fault_Vscf:Acs-Ericcson_PilotNumberPoolExhaustion",
4094                 "eventId": "fault0000250",
4095                 "sequence": 1,
4096                 "priority": "High",
4097                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
4098                 "reportingEntityName": "ibcx0001vm002oam0011234",
4099                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
4100                 "sourceName": "scfx0001vm002cap001",
4101                 "nfVendorName": "Ericsson",
4102                 "nfNamingCode": "scfx",
4103                 "nfcNamingCode": "ssc",
4104                 "startEpochMicrosec": 1413378172000000,
4105                 "lastEpochMicrosec": 1413378172000000,
4106                 "timeZoneOffset": "UTC-05:30"
4107              },
4108              "faultFields": {
4109                 "faultFieldsVersion": 4.0,
4110                 "alarmCondition": "PilotNumberPoolExhaustion",
4111                 "eventSourceType": "other",
4112                 "specificProblem": "Calls cannot complete - pilot numbers are unavailable",
4113                 "eventSeverity": "CRITICAL",
4114                 "vfStatus": "Active",
4115                 "alarmAdditionalInformation": {
4116                     "PilotNumberPoolSize": "1000"
4117                 }
4118              }
4119           },
4120           {
4121              "commonEventHeader": {
4122                 "version": "4.1",
4123                 "vesEventListenerVersion": "7.2",
4124                 "domain": "fault",
4125                 "eventName": " Fault_Vscf:Acs-Ericcson_RecordingServerUnreachable",
4126                 "eventId": "fault0000251",
4127                 "sequence": 0,
4128                 "priority": "High",
4129                 "reportingEntityId": "cc305d54-75b4-431b-adb2-eb6b9e541234",
4130                 "reportingEntityName": "ibcx0001vm002oam0011234",
4131                 "sourceId": "de305d54-75b4-431b-adb2-eb6b9e546014",
4132                 "sourceName": "scfx0001vm002cap001",
4133                 "nfVendorName": "Ericsson",
4134                 "nfNamingCode": "scfx",
4135                 "nfcNamingCode": "ssc",
4136                 "startEpochMicrosec": 1413378172000010,
4137                 "lastEpochMicrosec": 1413378172000010,
4138                 "timeZoneOffset": "UTC-05:30"
4139              },
4140              "faultFields": {
4141                 "faultFieldsVersion": 4.0,
4142                 "alarmCondition": "RecordingServerUnreachable",
4143                 "eventSourceType": "other",
4144                 "specificProblem": "Recording server unreachable",
4145                 "eventSeverity": "CRITICAL",
4146                 "vfStatus": "Active"
4147              }
4148           }
4149        ]
4150     }
4151
4152 Sample Success Response
4153 ***********************
4154
4155 .. code-block:: http
4156
4157     HTTPS/1.1 202 Accepted
4158     X-MinorVersion: 2
4159     X-PatchVersion: 0
4160     X-LatestVersion: 7.2
4161
4162 Sample Error Responses
4163 **********************
4164
4165 Sample Policy Exception
4166 """""""""""""""""""""""
4167
4168 .. code-block:: http
4169
4170     HTTPS/1.1 400 Bad Request
4171     content-type: application/json
4172     content-length: 12345
4173     Date: Thu, 04 Jun 2009 02:51:59 GMT
4174     X-MinorVersion: 2
4175     X-PatchVersion: 0
4176     X-LatestVersion: 7.2
4177
4178     {
4179       "requestError": {
4180         "policyException": {
4181           "messageId": "POL9003",
4182           "text": "Message content size exceeds the allowable limit",
4183         }
4184       }
4185     }
4186
4187
4188
4189 Sample Service Exception
4190 """"""""""""""""""""""""
4191
4192 .. code-block:: http
4193
4194     HTTPS/1.1 400 Bad Request
4195     content-type: application/json
4196     content-length: 12345
4197     Date: Thu, 04 Jun 2009 02:51:59 GMT
4198     X-MinorVersion: 2
4199     X-PatchVersion: 0
4200     X-LatestVersion: 7.2
4201
4202     {
4203       "requestError": {
4204         "serviceException": {
4205           "messageId": "SVC2000",
4206           "text": "Missing Parameter: %1. Error code is %2"
4207           "variables": [
4208             "severity",
4209             "400"
4210           ]
4211         }
4212       }
4213     }
4214
4215
4216 Terminology
4217 ^^^^^^^^^^^
4218
4219 Terminology used in this document is summarized below:
4220
4221 **A&AI**. Active & Available Inventory is the ONAP component that
4222 provides data views of Customer Subscriptions, Products, Services,
4223 Resources, and their relationships.
4224
4225 **Alarm Condition**. Short name of the alarm condition/problem, such as
4226 a trap name.
4227
4228 **APPC (formerly APP-C)**. Application Controller. Handles the life
4229 cycle management of Virtual Network Functions (VNFs).
4230
4231 **Common Event Format**. A JSON schema describing events sent to the VES
4232 Event Listener.
4233
4234 **Common Event Header**. A component of the Common Event Format JSON
4235 structure. This datatype consists of fields common to all events.
4236
4237 **DCAE**. Data Collection Analysis and Events. DCAE is the ONAP
4238 subsystem that supports closed loop control and higher-level correlation
4239 for business and operations activities. DCAE collects performance,
4240 usage, and configuration data, provides computation of analytics, aids
4241 in trouble-shooting and management, and publishes event, data, and
4242 analytics to the rest of the ONAP system for FCAPS functionality.
4243
4244 **DMaaP.** Data Movement as a Platform. A set of common services
4245 provided by ONAP, including a Message Router, Data Router, and a Data
4246 Bus Controller.
4247
4248 **Domain**. In VES, an event ‘domain’ identifies a broad category of
4249 events (e.g., ‘fault’ or ‘measurement’), each of which is associated
4250 with a VES domain field block, which is sent with the commonEventHeader
4251 when events of that category are generated.
4252
4253 **Epoch**. The number of seconds that have elapsed since
4254 00:00:00 \ `Coordinated Universal
4255 Time <https://en.wikipedia.org/wiki/Coordinated_Universal_Time>`__ (UTC),
4256 Thursday, 1 January 1970. Every day is treated as if it contains exactly
4257 86400 seconds, so \ `leap
4258 seconds <https://en.wikipedia.org/wiki/Leap_second>`__ are not applied
4259 to seconds since the Epoch. In VES Epoch times are measured in
4260 microseconds.
4261
4262 **Event.** A well-structured packet of network management information
4263 identified by an eventName which is asynchronously communicated to one
4264 or more instances of an Event Listener service to subscribers interested
4265 in that eventName. Events can convey measurements, faults, syslogs,
4266 threshold crossing alerts, and others types of information.
4267
4268 **Event Id**. Event key that is unique to the event source. The key must
4269 be unique within notification life cycle similar to EventID from 3GPP.
4270 It could be a sequential number, or a composite key formed from the
4271 event fields, such as sourceName\_alarmCondition\_startEpoch. The
4272 eventId should not include whitespace. For fault events, eventId is the
4273 eventId of the initial alarm; if the same alarm is raised again for
4274 changed, acknowledged or cleared cases, eventId must be the same as the
4275 initial alarm (along with the same startEpochMicrosec and an incremental
4276 sequence number.
4277
4278 **Event Name**. Identifier for specific types of events. Specific
4279 eventNames registered by the YAML may require that certain fields, which
4280 are optional in the Common Event Format, be present when events with
4281 that eventName are published.
4282
4283 **Event Streaming**. The delivery of network management event
4284 information in real time.
4285
4286 **Extensible Data Structures**. Data structures (e.g., hashMap) that
4287 allow event sources to send information not specifically identified in
4288 the VES schema.
4289
4290 **Hash Map**. A hash table, or data structure, used to implement an
4291 associative array, a structure than can map keys to values. In VES 6.0,
4292 all name-value pair structures were changed to hash maps (i.e., {‘name’:
4293 ‘keyName’, ‘value’: ‘keyValue’} was replaced with {‘keyName’:
4294 ‘keyValue’}).
4295
4296 **IPMI**. The `Intelligent Platform Management
4297 Interface <https://en.wikipedia.org/wiki/Intelligent_Platform_Management_Interface>`__.
4298
4299 **JSON**. Java Script Object Notation. JSON is an
4300 `open-standard <https://en.wikipedia.org/wiki/Open_standard>`__ `file
4301 format <https://en.wikipedia.org/wiki/File_format>`__ that uses
4302 `human-readable <https://en.wikipedia.org/wiki/Human-readable_medium>`__
4303 text to transmit data objects consisting of `attribute–value
4304 pairs <https://en.wikipedia.org/wiki/Attribute%E2%80%93value_pair>`__
4305 and `array data types <https://en.wikipedia.org/wiki/Array_data_type>`__
4306 (or any other
4307 `serializable <https://en.wikipedia.org/wiki/Serialization>`__ value).
4308 It is a very common `data <https://en.wikipedia.org/wiki/Data>`__ format
4309 used for
4310 `asynchronous <https://en.wikipedia.org/wiki/Asynchronous_I/O>`__
4311 browser–server communication.
4312
4313 **NF**. Network Function. Generalized name for a VNF or PNF.
4314
4315 **NFC**. Network Function Component. Generalized name for a VNFC or a
4316 component of a PNF.
4317
4318 **ONAP**. `Open Network Automation Platform <https://www.onap.org/>`__.
4319
4320 **PNF**. Physical Network Function.
4321
4322 **Policy**. Course of action for the management of the network. The ONAP
4323 Policy Framework is a comprehensive policy design, deployment, and
4324 execution environment. The Policy Framework is the ***decision making***
4325 component in `an ONAP
4326 system <https://www.onap.org/wp-content/uploads/sites/20/2017/12/ONAP_CaseSolution_Architecture_120817_FNL.pdf>`__.
4327 It allows you to specify, deploy, and execute the governance of the
4328 features and functions in your ONAP system, be they closed loop,
4329 orchestration, or more traditional open loop use case implementations.
4330 The Policy Framework is the component that is the source of truth for
4331 all policy decisions.
4332
4333 **Reporting Entity Name**. Name of the entity reporting the event or
4334 detecting a problem in another vnf/vm or pnf which is experiencing the
4335 problem. May be the same as the sourceName. Not used for performance
4336 measurements currently.
4337
4338 **SDC**. Service Design and Creation Platform: The ONAP visual modeling
4339 and design tool. It creates internal metadata that describes assets used
4340 by all ONAP components, both at design time and run time. The SDC
4341 manages the content of a catalog, and assemblies of selected catalog to
4342 define how and when VNFs are realized in a target environment.
4343
4344 **Source Name**: Name of the entity experiencing the event issue, which
4345 may be detected and reported by a separate reporting entity. The
4346 sourceName identifies the device for which data is collected. A valid
4347 sourceName must be inventoried in A&AI.
4348
4349 **Specific Problem**. Description of the alarm or problem.
4350
4351 **VES**. Virtual Function Event Stream. In 6.0, the definition of VES
4352 was expanded to include event streaming for VNF, PNF and infrastructure.
4353 The VES Event Listener can receive any event sent in the VES Common
4354 Event Format.
4355
4356 **VES Event Listener**. A RESTful connectionless push event listener
4357 capable of receiving single events or batches of events sent in the
4358 Common Event Format.
4359
4360 **VM**. Virtual Machine.
4361
4362 **VNF**. Virtual Network Function. A VNF is a virtualized task formerly
4363 carried out by proprietary, dedicated network hardware. (Examples:
4364 virtual firewall, virtual DNS). A VNF can also be defined as a specific
4365 kind of Vendor Software Product.
4366
4367 **YAML**. A `data serialization
4368 language <https://en.wikipedia.org/wiki/Data_serialization_language>`__
4369 and superset of JSON.
4370
4371 **VNFC**. Virtual Network Function Component. A VNFC is a part of a VNF.
4372 It is a stand-alone executable that is loosely-coupled, granular,
4373 re-usable, and responsible for a single capability.
4374
4375 Appendix: Historical Change Log
4376 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4377
4378 For the latest changes, see the Change Block just before the Table of
4379 Contents.
4380
4381 +-----------+---------+-------------------------------------------------------+
4382 | Date      | Revision| Description                                           |
4383 +-----------+---------+-------------------------------------------------------+
4384 | 5/22/2015 | 0.1     | Initial Release - Draft                               |
4385 +-----------+---------+-------------------------------------------------------+
4386 | 5/29/2015 | 0.2     | -  Introduction: removed all system names and         |
4387 |           |         |    references to internal AT&T components             |
4388 |           |         |                                                       |
4389 |           |         | -  Security: changed ‘event publisher’ to             |
4390 |           |         |    ‘event source’                                     |
4391 |           |         |                                                       |
4392 |           |         | -  Generic Event Format: updated the JSON schema per  |
4393 |           |         |    the below:                                         |
4394 |           |         |                                                       |
4395 |           |         | -  eventHeader: clarified the description of id, made |
4396 |           |         |    sourceId a required field, changed the datatype of |
4397 |           |         |    timestamps to timestamp [ ]                        |
4398 |           |         |                                                       |
4399 |           |         | -  performanceFields: removed overflowFields          |
4400 |           |         |                                                       |
4401 |           |         | -  tmestamp: added a description of this datatype     |
4402 |           |         |                                                       |
4403 |           |         | -  Exceptions: fixed indentation of sections          |
4404 |           |         |                                                       |
4405 |           |         | -  Approvers: updated the list of approvers and added |
4406 |           |         |    attuids                                            |
4407 +-----------+---------+-------------------------------------------------------+
4408 | 6/3/2015  | 0.3     | -  Updated the security section to use HTTP Basic     |
4409 |           |         |    Authentication per AT&T REST standards. Updated the|
4410 |           |         |    input parameters and messaging examples to use the |
4411 |           |         |    new security scheme.                               |
4412 +-----------+---------+-------------------------------------------------------+
4413 | 6/5/2015  | 0.4     | -  Added otherFields sub section to the defined       |
4414 |           |         |    datatypes                                          |
4415 |           |         |                                                       |
4416 |           |         | -  Added locale field to the eventHeader.             |
4417 +-----------+---------+-------------------------------------------------------+
4418 | 6/5/2015  | 0.5     | -  Updated the embedded event format json schema to   |
4419 |           |         |    match the changes made in v0.4                     |
4420 +-----------+---------+-------------------------------------------------------+
4421 | 6/10/2015 | 0.6     | -  Updated the {ServerRoot} format to contain an      |
4422 |           |         |    optional routing path (for D2 service modules).    |
4423 +-----------+---------+-------------------------------------------------------+
4424 | 7/7/2015  | 0.7     |     Common Event Format updates:                      |
4425 |           |         |                                                       |
4426 |           |         | -  EventHeader: added ‘measurement’ to the ‘domain’   |
4427 |           |         |    enumeration; changed ‘locale’ to ‘location’ and    |
4428 |           |         |    clarified in the description that this should be a |
4429 |           |         |    clli code                                          |
4430 |           |         |                                                       |
4431 |           |         | -  Added a MeasurementFields datatype, which required |
4432 |           |         |    the addition of the following datatypes:           |
4433 |           |         |    codecsInUse, cpuUsage, diskUsage, featuresInUse,   |
4434 |           |         |    memoryUsage                                        |
4435 +-----------+---------+-------------------------------------------------------+
4436 | 7/15/2015 | 1.0     | -  Changed sourceInstance in the eventHeader to be an |
4437 |           |         |    array of name value pairs                          |
4438 |           |         |                                                       |
4439 |           |         | -  Changed the performanceFields block to             |
4440 |           |         |    thresholdCrossingAlertFields. Updated the domain   |
4441 |           |         |    field of the eventHeader to match.                 |
4442 +-----------+---------+-------------------------------------------------------+
4443 | 7/23/2015 | v1.1    | Changes to eventHeader data format:                   |
4444 |           |         |                                                       |
4445 |           |         | -  moved sourceInstance to internalHeaderFields       |
4446 |           |         |                                                       |
4447 |           |         | -  moved serviceInstanceId to internalHeaderFields    |
4448 |           |         |                                                       |
4449 |           |         | -  moved productId to internalHeaderFields            |
4450 |           |         |                                                       |
4451 |           |         | -  moved subscriberId to internalHeaderFields         |
4452 |           |         |                                                       |
4453 |           |         | -  moved location to internalHeaderFields             |
4454 |           |         |                                                       |
4455 |           |         | -  added the following new fields in                  |
4456 |           |         |    internalHeaderFields: policyType, policyName,      |
4457 |           |         |    correlationEventType, correlationType,             |
4458 |           |         |    correlationName, correlationRootEventId            |
4459 |           |         |                                                       |
4460 |           |         | Changes to faultFields data format:                   |
4461 |           |         |                                                       |
4462 |           |         | -  moved the eventSourceDeviceDescription to          |
4463 |           |         |    internalFaultFields and renamed it                 |
4464 |           |         |    equipmentVendorModel                               |
4465 |           |         |                                                       |
4466 |           |         | -  moved eventSourceHostname to internalFaultFields   |
4467 |           |         |                                                       |
4468 |           |         | -  changed alarmObjectInterface to alarmInterfaceA    |
4469 |           |         |                                                       |
4470 |           |         | -  changed alarmRemoteObject to alarmRemoteObjectZ and|
4471 |           |         |     moved it to internalFaultFields                   |
4472 |           |         |                                                       |
4473 |           |         | -  changed alarmRemoteObjectInterface to              |
4474 |           |         |    alarmInterfaceZ and moved it to internalFaultFields|
4475 |           |         |                                                       |
4476 |           |         | Changes to thresholdCrossingFields data format:       |
4477 |           |         |                                                       |
4478 |           |         | -  changed several references from the old            |
4479 |           |         |    ‘performanceFields’ block to the new               |
4480 |           |         |    ‘thresholdCrossingFields’ block                    |
4481 |           |         |                                                       |
4482 |           |         | Other:                                                |
4483 |           |         |                                                       |
4484 |           |         | -  Fixed several comma and colon syntax errors in the |
4485 |           |         |    JSON schema as detected by a JSON schema syntax    |
4486 |           |         |    checker.                                           |
4487 +-----------+---------+-------------------------------------------------------+
4488 | 8/11/2015 | v1.2    | Timestamp format:                                     |
4489 |           |         |                                                       |
4490 |           |         | -  Section 4.18: added a note in the datetime field of|
4491 |           |         |    the Timestamp datatype specifying the (GMT) format |
4492 |           |         |    required                                           |
4493 |           |         |                                                       |
4494 |           |         | -  Updated the JSON schema with the same information  |
4495 |           |         |                                                       |
4496 |           |         | Event Header Severity Enumeration:                    |
4497 |           |         |                                                       |
4498 |           |         | -  Section 4.8: modified the severity enumeration to  |
4499 |           |         |    remove the numbers in parentheses that followed the|
4500 |           |         |    names. The names were not changed.                 |
4501 |           |         |                                                       |
4502 |           |         | -  Updated the JSON schema with the same information. |
4503 +-----------+---------+-------------------------------------------------------+
4504 | 8/20/2015 | v1.3    | JSON Schema rev’d to v9:                              |
4505 |           |         |                                                       |
4506 |           |         | -  Alphabetized all fields in the JSON schema         |
4507 |           |         |                                                       |
4508 |           |         | -  Fixed the way arrays were specified (JSON schema   |
4509 |           |         |    syntax issue)                                      |
4510 |           |         |                                                       |
4511 |           |         | Sample Responses:                                     |
4512 |           |         |                                                       |
4513 |           |         | -  2.1.1.1: alphabetized fields, fixed timestamps     |
4514 |           |         |    array depiction, fixed severity enum value to      |
4515 |           |         |    conform to latest format                           |
4516 |           |         |                                                       |
4517 |           |         | -  6.2.6.1: alphabetized fields, fixed timestamps     |
4518 |           |         |    array depiction, fixed severity enum value to      |
4519 |           |         |    conform to latest format                           |
4520 |           |         |                                                       |
4521 |           |         | -  6.3.6.1: alphabetized fields, fixed timestamps     |
4522 |           |         |    array depiction, fixed severity enum value to      |
4523 |           |         |    conform to latest format                           |
4524 |           |         |                                                       |
4525 |           |         | -  6.4.6.1: alphabetized fields, fixed timestamps     |
4526 |           |         |    array depiction, fixed eventList array depection,  |
4527 |           |         |    fixed severity enum value to conform to latest     |
4528 |           |         |    format                                             |
4529 +-----------+---------+-------------------------------------------------------+
4530 | 9/16/2015 | v1.4    | JSON Schema rev’d to v10:                             |
4531 |           |         |                                                       |
4532 |           |         | - Fixed an error in the way that the top level        |
4533 |           |         |   "event" object was specified in the v9 json schema. |
4534 |           |         |   This was discovered when validating examples        |
4535 |           |         |   against the schema using this site:                 |
4536 |           |         |   http://json-schema-validator.herokuapp.com/index.jsp|
4537 |           |         |                                                       |
4538 |           |         | - Changed the embedded json file in section 4         |
4539 |           |         |                                                       |
4540 |           |         | Sample Responses:                                     |
4541 |           |         |                                                       |
4542 |           |         | - Removed an extra comma after the timestamp brace in |
4543 |           |         |   section 6.2.6 and 6.3.6.                            |
4544 +-----------+---------+-------------------------------------------------------+
4545 | 11/11/2015| v1.5    | Section 4 was the only section changed: JSON Schema   |
4546 |           |         | rev’d to v11 and Datatype tables were updated to match|
4547 |           |         | . Numerous data structure changes were made based on  |
4548 |           |         | VNF vendor proof of concept feedback. Modified sample |
4549 |           |         | requests and responses to match.                      |
4550 +-----------+---------+-------------------------------------------------------+
4551 | 11/12/2015| v1.6    | -  The internalFaultFields were merged into the       |
4552 |           |         |    internalHeaderFields; then the internalFaultFields |
4553 |           |         |    datatype was deleted.                              |
4554 |           |         |                                                       |
4555 |           |         | -  Updated the JSON schema to v12.                    |
4556 |           |         |                                                       |
4557 |           |         | -  Also corrected some background color issues in the |
4558 |           |         |    sample requests and responses.                     |
4559 +-----------+---------+-------------------------------------------------------+
4560 | 1/18/2016 | v1.7    | -  Section 2 changes: updated the sample request to   |
4561 |           |         |    conform with the changes below                     |
4562 |           |         |                                                       |
4563 |           |         | -  Section 4 datatype changes:                        |
4564 |           |         |                                                       |
4565 |           |         | -  Changed 'eventHeader' to 'commonEventHeader'       |
4566 |           |         |                                                       |
4567 |           |         | -  Moved 'eventSeverity' from the 'commonEventHeader' |
4568 |           |         |    to 'faultFields'                                   |
4569 |           |         |                                                       |
4570 |           |         | -  Added 'priority' to 'commonEventHeader'            |
4571 |           |         |                                                       |
4572 |           |         | -  moved 'vFstatus' to 'faultFields'                  |
4573 |           |         |                                                       |
4574 |           |         | -  removed 'firstDateTime' and 'lastDateTime' and     |
4575 |           |         |    changed 'firstEpoch' to 'startEpochMicrosec' and   |
4576 |           |         |    changed 'lastEpoch' to 'lastEpochMicrosec'.        |
4577 |           |         |                                                       |
4578 |           |         | -  Added 'functionalRole' to the commonEventHeader    |
4579 |           |         |                                                       |
4580 |           |         | -  In the commonEventHeader, changed the 'eventDomain'|
4581 |           |         |    enumeration to remove 'measurements' and add       |
4582 |           |         |    'measurementsForVfScaling'.                        |
4583 |           |         |                                                       |
4584 |           |         | -  Changed the 'measurementFields' to                 |
4585 |           |         |    'measurementsForVfScalingFields'                   |
4586 |           |         |                                                       |
4587 |           |         | -  In the commonEventHeader, changed the following    |
4588 |           |         |    fields:                                            |
4589 |           |         |                                                       |
4590 |           |         | -  'eventDomain' to 'domain'                          |
4591 |           |         |                                                       |
4592 |           |         | -  'eventSequence' to 'sequence'                      |
4593 |           |         |                                                       |
4594 |           |         | -  'eventSourceId' to 'sourceId'                      |
4595 |           |         |                                                       |
4596 |           |         | -  'eventSounceName' to 'sourceName'                  |
4597 |           |         |                                                       |
4598 |           |         | -  Updated the JSON schema to v13                     |
4599 |           |         |                                                       |
4600 |           |         | -  Section 6 changes: updated the input parameters and|
4601 |           |         |    sample requests to conform to the changes above.   |
4602 |           |         |                                                       |
4603 |           |         | -  Section 7: changed the section from Approvers to   |
4604 |           |         |    Contributors.                                      |
4605 +-----------+---------+-------------------------------------------------------+
4606 | 1/22/2016 | v1.8    | -  Section 4: Added support for ‘mobileFlow’ in the   |
4607 |           |         |    commonEventHeader ‘domain’ enumeration. Added the  |
4608 |           |         |    mobileFlowFields datatype and the gtpPerFlowMetrics|
4609 |           |         |    datatype referenced by that datatype.              |
4610 |           |         |                                                       |
4611 |           |         | -  Section 7: alphabetized the contributors           |
4612 +-----------+---------+-------------------------------------------------------+
4613 | 2/11/2016 | v1.9    | -  Added section 1.3: Naming Standard for Event Types |
4614 +-----------+---------+-------------------------------------------------------+
4615 | 2/12/2016 | v2.0    | -  Updated request – response examples to reflect the |
4616 |           |         |    naming standards for event types introduced in v1.9|
4617 |           |         |                                                       |
4618 |           |         | -  Added a paragraph on use of Avro as a transport in |
4619 |           |         |    section 1.4                                        |
4620 +-----------+---------+-------------------------------------------------------+
4621 | 3/11/2016 | v2.1    | -  Updated the embedded JSON schema to v15 to fix a   |
4622 |           |         |    typo in the required fields for the                |
4623 |           |         |    measurementsForVfScalingFields, namely, changed    |
4624 |           |         |    ‘configuredEntites’ to ‘configuredEntities’.       |
4625 |           |         |    Additionally, added an ‘Event Listener’ title block|
4626 |           |         |    at the bottom of the file with a single required   |
4627 |           |         |    event object.                                      |
4628 +-----------+---------+-------------------------------------------------------+
4629 | 3/15/2016 | v2.2    | -  Added mobileFlowFields to the event datatype       |
4630 |           |         |    definition in section 4.7 and updated the embedded |
4631 |           |         |    json schema at the top of section 4 to v16.        |
4632 +-----------+---------+-------------------------------------------------------+
4633 | 4/26/2016 | v2.3    | -  Generic Event Format updates: 1) made ‘priority’   |
4634 |           |         |    lowercase in the Word doc table for                |
4635 |           |         |    commonEventHeader; 2) added ‘requestError’ data    |
4636 |           |         |    structure to the Word doc and JSON schema (which is|
4637 |           |         |    now at v17)                                        |
4638 +-----------+---------+-------------------------------------------------------+
4639 | 4/27/2016 | v2.4    | -  JSON Schema: In the 'event' data structure, changed|
4640 |           |         |    'thresholdCrossingFields' to                       |
4641 |           |         |    'thresholdCrossingAlertFields' to product v18 of   |
4642 |           |         |    the schema.                                        |
4643 |           |         |                                                       |
4644 |           |         | -  'codecsInUse' data structure: changed 'numberInUse'|
4645 |           |         |     to 'codecUtilization’                             |
4646 +-----------+---------+-------------------------------------------------------+
4647 | 5/26/2016 | v2.5    | -  Changed responses from ‘204 No Content’ to ‘202    |
4648 |           |         |    Accepted’ and added a body to the response that    |
4649 |           |         |    enable AT&T to throttle the events being sent      |
4650 |           |         |    and/or to request the current state of throttling  |
4651 |           |         |    at the event source.                               |
4652 |           |         |                                                       |
4653 |           |         | -  Added new datatypes to support the above:          |
4654 |           |         |    eventDomainThrottleSpecification,                  |
4655 |           |         |    eventDomainThrottleSpecificationList,              |
4656 |           |         |    eventThrottlingState, suppressedNvPairs            |
4657 |           |         |                                                       |
4658 |           |         | -  Modifed the commonEventFormat json schema to v19   |
4659 |           |         |                                                       |
4660 |           |         | -  Note: for the VendorEventListener: added new       |
4661 |           |         |    licensing language on the back of the title page;  |
4662 |           |         |    added an "attCopyrightNotice" definition at the top|
4663 |           |         |    of the commonEventFormat\_Vendors.json file; also  |
4664 |           |         |    removed all references to internalHeaderFields from|
4665 |           |         |    this file and from the VendorEventListener spec.   |
4666 +-----------+---------+-------------------------------------------------------+
4667 | 8/9/2016  | v2.6    | -  commonHeader: added a note on the description of   |
4668 |           |         |    sourceId and sourceName in the commonHeader: "use  |
4669 |           |         |    reportingEntity for domains that provide more      |
4670 |           |         |    detailed source info"                              |
4671 |           |         |                                                       |
4672 |           |         | -  commonHeader: deleted the capacity,                |
4673 |           |         |    measurementsForVfScaling and usage domains in the  |
4674 |           |         |    domain enumeration                                 |
4675 |           |         |                                                       |
4676 |           |         | -  commonHeader: added the following domains to the   |
4677 |           |         |    domain enumeration: licensingKci, scalingKpi,      |
4678 |           |         |    stateChange                                        |
4679 |           |         |                                                       |
4680 |           |         | -  event: removed references to capacityFields,       |
4681 |           |         |    measurementsForVfScalingFields and usageFields and |
4682 |           |         |    added references to licensingKciFields,            |
4683 |           |         |    scalingKpiFields, stateChangeFields                |
4684 |           |         |                                                       |
4685 |           |         | -  licensingKciFields: added this section along with  |
4686 |           |         |    'additionalMeasurements', which is an optional list|
4687 |           |         |    of measurementGroup structures. Changed the name of|
4688 |           |         |    kciFieldsVersion to licensingKciFieldsVersion.     |
4689 |           |         |                                                       |
4690 |           |         | -  scalingKpiFields: added this section but changed   |
4691 |           |         |    measurementFieldsVersion to scalingKpiFieldsVersion|
4692 |           |         |                                                       |
4693 |           |         | -  stateChangeFields: added this section along with   |
4694 |           |         |    'additionalFields', which is an optional list of   |
4695 |           |         |    name-value pairs. Other fields included newState   |
4696 |           |         |    and oldState which were enumerations of the        |
4697 |           |         |    following possible states: 'inService',            |
4698 |           |         |    'maintenance', 'outOfService'                      |
4699 |           |         |                                                       |
4700 |           |         | -  sysLogFields: added 'additionalFields', which is an|
4701 |           |         |    optional list of name-value pairs                  |
4702 |           |         |                                                       |
4703 |           |         | -  vNicUsage: added two required fields to the        |
4704 |           |         |    vNicUsage data structure: packetsIn and packetsOut |
4705 +-----------+---------+-------------------------------------------------------+
4706 | 8/10/2016 | v2.7    | -  commonHeader: removed the note on the description  |
4707 |           |         |    of sourceId and sourceName in the commonHeader:    |
4708 |           |         |    "use reportingEntity for domains that provide more |
4709 |           |         |    detailed source info"                              |
4710 |           |         |                                                       |
4711 |           |         | -  commonHeader: added measurementsForVfScaling domain|
4712 |           |         |    back and removed the licensingKci and scalingKpi   |
4713 |           |         |    domains                                            |
4714 |           |         |                                                       |
4715 |           |         | -  event: removed references to licensingKciFields and|
4716 |           |         |    scalingKpiFields; added references to              |
4717 |           |         |    measurementsForVfScalingFields                     |
4718 |           |         |                                                       |
4719 |           |         | -  measurementsForVfScalingFields: combined the       |
4720 |           |         |    kciDetail and kpiDetail structures into the        |
4721 |           |         |    measurementsForVfScalingFields structure;          |
4722 |           |         |    referenced the errors structure                    |
4723 |           |         |                                                       |
4724 |           |         | -  errors: added a new structure to capture the       |
4725 |           |         |    receive and transmit errors for the measurements   |
4726 |           |         |    domain                                             |
4727 |           |         |                                                       |
4728 |           |         | -  removed the following structures: kci, kpi,        |
4729 |           |         |    scalingKpiFields and licensingKciFields            |
4730 |           |         |                                                       |
4731 |           |         | -  eventDomainThrottleSpecification: updated the      |
4732 |           |         |    reference to commonEventHeader domain field        |
4733 |           |         |                                                       |
4734 |           |         | -  faultFields: removed the numbers from the          |
4735 |           |         |    enumerated strings for eventSourceType             |
4736 |           |         |                                                       |
4737 |           |         | -  vNicUsage: made the broadcast, multicast and       |
4738 |           |         |    unicast fields optional                            |
4739 |           |         |                                                       |
4740 |           |         | -  contributors: updated Alok’s organizational area   |
4741 +-----------+---------+-------------------------------------------------------+
4742 | 8/12/2016 | v2.8    | -  commonHeader: copied the descriptions of sourceId  |
4743 |           |         |    and sourceName from the JSON schema into the word  |
4744 |           |         |    document tables.                                   |
4745 |           |         |                                                       |
4746 |           |         | -  sample request examples: moved the                 |
4747 |           |         |    reportingEntityId and reportingEntityNames to the  |
4748 |           |         |    same relative place in all sample requests in the  |
4749 |           |         |    document                                           |
4750 |           |         |                                                       |
4751 |           |         | -  Fixed the sample request shown for                 |
4752 |           |         |    publishEventBatch to take an eventList as input.   |
4753 |           |         |                                                       |
4754 |           |         | -  Fixed the sample request shown for                 |
4755 |           |         |    publishSpecificTopic to put the topic in the URL   |
4756 |           |         |                                                       |
4757 |           |         | -  errors: changed the receiveErrors and              |
4758 |           |         |    transmitErrors fields to be datatype number        |
4759 |           |         |                                                       |
4760 |           |         | -  codesInUse: changed 'codecUtilization' to          |
4761 |           |         |    'numberinUse'                                      |
4762 |           |         |                                                       |
4763 |           |         | -  vNicUsage: updated the description of the fields   |
4764 +-----------+---------+-------------------------------------------------------+
4765 | 8/27/2016 | v2.9    | -  Added a note "(currently: 1.1)" in the descriptions|
4766 |           |         |    of the following fields: commonEventHeader:version,|
4767 |           |         |    faultFields:faultFieldsVersion,                    |
4768 |           |         |    measurementsForVfScalingFields:measurementsForVf\  |
4769 |           |         |    ScalingFieldsVersion, stateChangeFields:state\     |
4770 |           |         |    ChangeFieldsVersion, sysLogFields:syslogFields\    |
4771 |           |         |    Version, thresholdCrossingAlertFields:threshold\   |
4772 |           |         |    CrossingFieldsVersion                              |
4773 |           |         |                                                       |
4774 |           |         | -  stateChangeFields: made stateInterface mandatory   |
4775 |           |         |                                                       |
4776 |           |         | -  changed 'enum' to 'enumeration' throughout section |
4777 |           |         |    4 of the document (note: this can't be done in the |
4778 |           |         |    JSON schema).                                      |
4779 |           |         |                                                       |
4780 |           |         | -  measurementsForVfScalingFields: made the following |
4781 |           |         |    fields optional: conurrentSessions, configured\    |
4782 |           |         |    Entitites, cpuUsageArray, fileSystemUsageArray,    |
4783 |           |         |    memoryConfigured, memoryUsed, requestRate,         |
4784 |           |         |    vNicUsageArray                                     |
4785 |           |         |                                                       |
4786 |           |         | -  measurementsForVfScalingFields: concurrentSessions |
4787 |           |         |    and configuredEntities: changed the description to |
4788 |           |         |    support both VMs and VNFs                          |
4789 |           |         |                                                       |
4790 |           |         | -  measurementsFor VfScalingFields: clarified the     |
4791 |           |         |    descriptions of latencyDistribution, measurement\  |
4792 |           |         |    Inverval and requestRate                           |
4793 |           |         |                                                       |
4794 |           |         | -  syslogFields: clarified the descriptions of        |
4795 |           |         |    syslogSData, syslogTag, syslogVer                  |
4796 |           |         |                                                       |
4797 |           |         | -  thresholdCrossingAlertFields: made the following   |
4798 |           |         |    fields optional and clarified their descriptions:  |
4799 |           |         |    elementType, networkService                        |
4800 |           |         |                                                       |
4801 |           |         | -  command and commandList: created a list of command |
4802 |           |         |    structures to enable the event collector to request|
4803 |           |         |    changes of event sources. Commands consist of a    |
4804 |           |         |    commandType along with optional fields (whose      |
4805 |           |         |    presence is indicated by the commandType). Three   |
4806 |           |         |    command types are currently supported:             |
4807 |           |         |    'measurementIntevalChange',                        |
4808 |           |         |    ‘provideThrottlingState’ and                       |
4809 |           |         |    'throttlingSpecification'.                         |
4810 |           |         |                                                       |
4811 |           |         | -  eventDomainThrottleSpecificationList: removed this |
4812 |           |         |    and replaced it with commandList.                  |
4813 |           |         |                                                       |
4814 |           |         | -  Operations and Sample Requests: modified the       |
4815 |           |         |    operations and samples to support the new command  |
4816 |           |         |    and commandList structures.                        |
4817 +-----------+---------+-------------------------------------------------------+
4818 | 9/1/2016  | v2.10   | -  measurementsForVfScaling block: made the following |
4819 |           |         |    fields optional: latencyDistribution (which is an  |
4820 |           |         |    array of latencyBucketMeasure structures) and      |
4821 |           |         |    meanRequestLatency. Updated the JSON schemas (now  |
4822 |           |         |    v24) to match.                                     |
4823 +-----------+---------+-------------------------------------------------------+
4824 | 9/16/2016 | v2.11   | -  1 Introduction: updated the introduction to clarify|
4825 |           |         |    the usage of eventTypes and the possibility of     |
4826 |           |         |    support for other protocols.                       |
4827 |           |         |                                                       |
4828 |           |         | -  6.1 REST Operation Overview: added two new         |
4829 |           |         |    subsections (6.1.2 and 6.1.3) discussing Api       |
4830 |           |         |    Version and Commands Toward Event Source Clients.  |
4831 |           |         |                                                       |
4832 |           |         | -  6.2 publishAnyEvent: fixed the sample to conform to|
4833 |           |         |    the latest changes                                 |
4834 |           |         |                                                       |
4835 |           |         | -  6.3 publishSpecificTopic: fixed the sample to      |
4836 |           |         |    conform to the latest changes                      |
4837 |           |         |                                                       |
4838 |           |         | -  6.4 publishEventBatch: fixed the sample to conform |
4839 |           |         |    to the latest changes                              |
4840 |           |         |                                                       |
4841 |           |         | -  6.5 provideThrottlingState operation: added the    |
4842 |           |         |    Input Parameters section heading back and fixed the|
4843 |           |         |    sample request to provide eventThrottlingState     |
4844 |           |         |    (instead of eventThrottlingClientState).           |
4845 |           |         |                                                       |
4846 |           |         | -  The remaining bullets describe changes made to     |
4847 |           |         |    section 4 datatypes in alphabetical order:         |
4848 |           |         |                                                       |
4849 |           |         | -  command datatype: referenced the new section 6.1.3 |
4850 |           |         |    which provides an explanation of command state     |
4851 |           |         |    expectations and requirements for a given          |
4852 |           |         |    eventSource:                                       |
4853 |           |         |                                                       |
4854 |           |         | -  commonEventHeader datatype:                        |
4855 |           |         |                                                       |
4856 |           |         |    -  made sourceId and reportingEntityId fields      |
4857 |           |         |       optional (although the internal Generic Event   |
4858 |           |         |       Listener spec indicates, in the field           |
4859 |           |         |       descriptions, that the AT&T enrichment process  |
4860 |           |         |       shall ensure that these fields are populated)   |
4861 |           |         |                                                       |
4862 |           |         |    -  domain enumeration: changed measurementsForVf\  |
4863 |           |         |       ScalingFields to measurementsForVfScaling       |
4864 |           |         |                                                       |
4865 |           |         | -  eventDomainThrottleSpecificationList: added this   |
4866 |           |         |    array of eventDomainThrottleSpecification stuctures|
4867 |           |         |    back to the schema because it is used by the       |
4868 |           |         |    provideThrottlingState operation.                  |
4869 |           |         |                                                       |
4870 |           |         | -  eventList: added eventList back to the vendor      |
4871 |           |         |    version of the commonEventFormat. This is used by  |
4872 |           |         |    the publishEventBatch operation.                   |
4873 |           |         |                                                       |
4874 |           |         | -  faultFields datatype:                              |
4875 |           |         |                                                       |
4876 |           |         |    -  eventSourceType: made this a string (and        |
4877 |           |         |       provided the previous enumerated values as      |
4878 |           |         |       examples)                                       |
4879 |           |         |                                                       |
4880 |           |         | -  filesystemUsage datatype:                          |
4881 |           |         |                                                       |
4882 |           |         |    -  changed vmIdentifier to filesystemName          |
4883 |           |         |                                                       |
4884 |           |         | -  gtpPerFlowMetrics datatype:                        |
4885 |           |         |                                                       |
4886 |           |         |    -  flowActivationTime: changed the format and      |
4887 |           |         |       description to be compliant with RFC 2822.      |
4888 |           |         |                                                       |
4889 |           |         |    -  flowDeactivationTime: changed the format and    |
4890 |           |         |       description to be compliant with RFC 2822.      |
4891 |           |         |                                                       |
4892 |           |         | -  internalHeaderFields datatype:                     |
4893 |           |         |                                                       |
4894 |           |         |    -  Added the following optional fields: firstDate\ |
4895 |           |         |       Time, lastDateTime compliant with RFC 2822.     |
4896 |           |         |       Noted in the description that these fields must |
4897 |           |         |       be supplied for events in the following domains:|
4898 |           |         |       fault, thresholdCrossingAlerts and              |
4899 |           |         |       measurementsForVfScaling.                       |
4900 |           |         |                                                       |
4901 |           |         |    -  ticketingTimestamp: changed the format and      |
4902 |           |         |       description to be compliant with RFC 2822.      |
4903 |           |         |                                                       |
4904 |           |         | -  syslogFields datatype:                             |
4905 |           |         |                                                       |
4906 |           |         |    -  eventSourceType: made this a string (and        |
4907 |           |         |       provided the previous enumerated values, without|
4908 |           |         |       the numbers, as examples)                       |
4909 |           |         |                                                       |
4910 |           |         | -  thresholdCrossingAlerts dataypte:                  |
4911 |           |         |                                                       |
4912 |           |         |    -  collectionTimestamp: changed the format and     |
4913 |           |         |       description to be compliant with RFC 2822.      |
4914 |           |         |                                                       |
4915 |           |         |    -  eventStartTimestamp: changed the format and     |
4916 |           |         |       description to be compliant with RFC 2822.      |
4917 |           |         |                                                       |
4918 |           |         |    -  added the same eventSeverity field as from the  |
4919 |           |         |       faultFields and made it required                |
4920 +-----------+---------+-------------------------------------------------------+
4921 | 9/23/2016 | v2.12   | -  Section 4 Datatypes: commonEventHeader: made       |
4922 |           |         |    reportingEntityName a required field (note: the    |
4923 |           |         |    JSON schema already had this field as required)    |
4924 +-----------+---------+-------------------------------------------------------+
4925 | 11/29/2016| v3.0    | -  Introduction:                                      |
4926 |           |         |                                                       |
4927 |           |         |    -  Introductory paragraph: changed '...Common Event|
4928 |           |         |       Header Block followed by zero or more event     |
4929 |           |         |       domain blocks' to '...Common Event Header Block |
4930 |           |         |       accompanied by zero or more event domain blocks'|
4931 |           |         |       since the order of the blocks on the wire is    |
4932 |           |         |       not guaranteed.                                 |
4933 |           |         |                                                       |
4934 |           |         |    -  Added Section 1.5 Versioning                    |
4935 |           |         |                                                       |
4936 |           |         | -  Section 4: codec processing:                       |
4937 |           |         |                                                       |
4938 |           |         |    -  CommonEventFormat\_Vendors schema only:         |
4939 |           |         |       codesInUse: changed required field from         |
4940 |           |         |       "codecUtilization" which was removed previously |
4941 |           |         |       to "numberInUse" which is the new field name.   |
4942 |           |         |                                                       |
4943 |           |         |    -  added ‘codecSelected’ datatype                  |
4944 |           |         |                                                       |
4945 |           |         |    -  added ‘codecSelectedTranscoding’ datatype       |
4946 |           |         |                                                       |
4947 |           |         | -  Section 4 and section 6: command processing:       |
4948 |           |         |                                                       |
4949 |           |         |    -  Added commandListEntry which is an object that  |
4950 |           |         |       references the command object.                  |
4951 |           |         |                                                       |
4952 |           |         |    -  commandList: changed commandList to contain an  |
4953 |           |         |       array of commandListEntry objects.              |
4954 |           |         |                                                       |
4955 |           |         |    -  Updated sample responses in section 6 where     |
4956 |           |         |       commands are used                               |
4957 |           |         |                                                       |
4958 |           |         | -  Section 4: commonEventHeader:                      |
4959 |           |         |                                                       |
4960 |           |         |    -  Incremented version to 1.2                      |
4961 |           |         |                                                       |
4962 |           |         |    -  added two new values to the ‘domain’            |
4963 |           |         |       enumeration: ‘serviceEvents’ and ‘signaling     |
4964 |           |         |                                                       |
4965 |           |         | -  Section 4: added endOfCallVqmSummaries datatype    |
4966 |           |         |                                                       |
4967 |           |         | -  Section 4: ‘event’: added two fields:              |
4968 |           |         |    ‘serviceEventsFields’ and ‘signalingFields’        |
4969 |           |         |                                                       |
4970 |           |         | -  Section 4: added ‘eventInstanceIdentifier’datatype |
4971 |           |         |                                                       |
4972 |           |         | -  Section 4: CommonEventListener only:               |
4973 |           |         |    internalHeaderFields:                              |
4974 |           |         |                                                       |
4975 |           |         |    -  added ‘internalHeaderFieldsVersion’(initially   |
4976 |           |         |       set to 1.1)                                     |
4977 |           |         |                                                       |
4978 |           |         |    -  added ‘correlationFirstEpoch’                   |
4979 |           |         |                                                       |
4980 |           |         |    -  added 'closedLoopControlName'                   |
4981 |           |         |                                                       |
4982 |           |         |    -  added 'closedLoopFlag'                          |
4983 |           |         |                                                       |
4984 |           |         |    -  added 'collectorTimeStamp'                      |
4985 |           |         |                                                       |
4986 |           |         |    -  added 'eventTag'                                |
4987 |           |         |                                                       |
4988 |           |         |    -  added ‘tenantName’                              |
4989 |           |         |                                                       |
4990 |           |         |    -  changed 'operationalStatus' to 'inMaint'        |
4991 |           |         |                                                       |
4992 |           |         |    -  added required fields in the schema to match the|
4993 |           |         |       word doc: 'equipmentNameCode', 'equipmentType', |
4994 |           |         |       'equipmentVendor', 'inMaint', 'provStatus'      |
4995 |           |         |                                                       |
4996 |           |         | -  Section 4: added ‘marker’datatype                  |
4997 |           |         |                                                       |
4998 |           |         | -  Section 4: added ‘midCallRtcp’ datatype            |
4999 |           |         |                                                       |
5000 |           |         | -  Section 4: mobileFlowFields:                       |
5001 |           |         |                                                       |
5002 |           |         |    -  added ‘mobileFlowFieldsVersion’(initially set to|
5003 |           |         |       1.1)                                            |
5004 |           |         |                                                       |
5005 |           |         | -  Section 4: added ‘serviceEventsFields’datatype     |
5006 |           |         |                                                       |
5007 |           |         | -  Section 4: added ‘signalingFields’ datatype        |
5008 |           |         |                                                       |
5009 |           |         | -  Section 4: syslogFields:                           |
5010 |           |         |                                                       |
5011 |           |         |    -  Incremented syslogFieldsVersion to 1.2          |
5012 |           |         |                                                       |
5013 |           |         |    -  added 'syslogPri'                               |
5014 |           |         |                                                       |
5015 |           |         |    -  added 'syslogSev'                               |
5016 |           |         |                                                       |
5017 |           |         |    -  added ‘syslogSdId’                              |
5018 |           |         |                                                       |
5019 |           |         | -  Section 4: thresholdCrossingAlertFields:           |
5020 |           |         |                                                       |
5021 |           |         |    -  Incremented thresholdCrossingFieldsVersion to   |
5022 |           |         |       1.2                                             |
5023 |           |         |                                                       |
5024 |           |         |    -  added 'additionalFields' which is an optional   |
5025 |           |         |       list of name value pairs.                       |
5026 |           |         |                                                       |
5027 |           |         | -  Section 4: schema v26.0 embedded reflecting the    |
5028 |           |         |    above changes.                                     |
5029 |           |         |                                                       |
5030 |           |         | -  Section 6 and Section 2: changed all sample        |
5031 |           |         |    requests to use /v3 in the REST Resource URL.      |
5032 +-----------+---------+-------------------------------------------------------+
5033 | 12/1/2016 | v3.1    | -  Section 6: Updated the call flow diagrams to show  |
5034 |           |         |    ‘v3’                                               |
5035 +-----------+---------+-------------------------------------------------------+
5036 | 1/5/2017  | v4.0    | -  Combined the Generic Event Listener and Vendor     |
5037 |           |         |    Event Listener into a single API service           |
5038 |           |         |    specification with version 4.0.                    |
5039 |           |         |                                                       |
5040 |           |         | -  Changed the title to VES (Virtual Function Event   |
5041 |           |         |    Streaming) Listener.                               |
5042 |           |         |                                                       |
5043 |           |         | -  Changed references to 'generic event' to 'common   |
5044 |           |         |    event' or 'VES event' (depending on the context)   |
5045 |           |         |    throughout the document.                           |
5046 |           |         |                                                       |
5047 |           |         | -  Used the Legal Disclaimer from the Vendor Event    |
5048 |           |         |    Listener on the back of the title page.            |
5049 |           |         |                                                       |
5050 |           |         | -  Section 1: Introduction changes:                   |
5051 |           |         |                                                       |
5052 |           |         |    -  modified wording to reference 'VES'             |
5053 |           |         |                                                       |
5054 |           |         |    -  removed the 'Audience' section, which described |
5055 |           |         |       various AT&T groups the documented was intended |
5056 |           |         |       for                                             |
5057 |           |         |                                                       |
5058 |           |         |    -  tweaked the naming standards for event types to |
5059 |           |         |       clarify the purpose of the naming conventions   |
5060 |           |         |                                                       |
5061 |           |         | -  Section 3: Resource Structure: added a sentence    |
5062 |           |         |    describing the FQDN and port used in the resource  |
5063 |           |         |    URL.                                               |
5064 |           |         |                                                       |
5065 |           |         | -  Section 4: Common Event Format changes:            |
5066 |           |         |                                                       |
5067 |           |         |    -  renamed the section to 'Common Event Format'    |
5068 |           |         |       from 'Generic Event Format'                     |
5069 |           |         |                                                       |
5070 |           |         |    -  reorganized the datatypes into separate sections|
5071 |           |         |       ; sections were defined for each of the domains |
5072 |           |         |       as well as for common event, common event header|
5073 |           |         |       and command list processing                     |
5074 |           |         |                                                       |
5075 |           |         |    -  codecSelected datatype: removed this datatype   |
5076 |           |         |                                                       |
5077 |           |         |    -  codecSelectedTranscoding datatype: removed this |
5078 |           |         |       datatype                                        |
5079 |           |         |                                                       |
5080 |           |         |    -  command datatype: added an enumerated value to  |
5081 |           |         |       commandType: 'heartbeatIntervalChange'          |
5082 |           |         |                                                       |
5083 |           |         |    -  commonEventHeader: added internalHeaderFields to|
5084 |           |         |       the commonEventHeader, defined as "Fields (not  |
5085 |           |         |       supplied by event sources) that the VES Event   |
5086 |           |         |       Listener service can use to enrich the event if |
5087 |           |         |       needed for efficient internal processing. This  |
5088 |           |         |       is an empty object which is intended to be      |
5089 |           |         |       defined separately by each provider implementing|
5090 |           |         |       the VES Event Listener."                        |
5091 |           |         |                                                       |
5092 |           |         |    -  commonEventHeader: removed two enumerated values|
5093 |           |         |       , 'serviceEvents' and 'signaling' from the      |
5094 |           |         |       domain enumeration                              |
5095 |           |         |                                                       |
5096 |           |         |    -  commonEventHeader version: incremented the      |
5097 |           |         |       version to 2.0                                  |
5098 |           |         |                                                       |
5099 |           |         |    -  endOfCallVqmSummaries datatype: removed this    |
5100 |           |         |       datatype                                        |
5101 |           |         |                                                       |
5102 |           |         |    -  event: changed the description of the event     |
5103 |           |         |       datatype to: "fields which constitute the ‘root |
5104 |           |         |       level’ of the common event format"              |
5105 |           |         |                                                       |
5106 |           |         |    -  event: removed 'serviceEventFields' and         |
5107 |           |         |       'signalingFields' from the definition           |
5108 |           |         |                                                       |
5109 |           |         |    -  event: fixed a misspelling of                   |
5110 |           |         |       ‘thresholdCrossingAlertFields’, which was only  |
5111 |           |         |       present in the Word document                    |
5112 |           |         |                                                       |
5113 |           |         |    -  eventInstanceIdentifier datatype: removed this  |
5114 |           |         |       datatype                                        |
5115 |           |         |                                                       |
5116 |           |         |    -  internalHeaderFIelds datatype: defined this as  |
5117 |           |         |       follows: "The internalHeaderFields datatype is  |
5118 |           |         |       an undefined object which can contain           |
5119 |           |         |       arbitrarily complex JSON structures. It is      |
5120 |           |         |       intended to be defined separately by each       |
5121 |           |         |       provider implementing the VES Event Listener.   |
5122 |           |         |       The fields in internalHeaderFields are not      |
5123 |           |         |       provided by any event source but instead are    |
5124 |           |         |       added by the VES Event Listener service itself  |
5125 |           |         |       as part of an event enrichment process necessary|
5126 |           |         |       for efficient internal processing of events     |
5127 |           |         |       received by the VES Event Listener"             |
5128 |           |         |                                                       |
5129 |           |         |    -  marker datatype: removed this datatype          |
5130 |           |         |                                                       |
5131 |           |         |    -  measurementsForVfScalingFields datatype:        |
5132 |           |         |       clarified that memoryConfigured and memoryUsed  |
5133 |           |         |       are measured in MB                              |
5134 |           |         |                                                       |
5135 |           |         |    -  midCallRtcp datatype: removed this datatype     |
5136 |           |         |                                                       |
5137 |           |         |    -  mobileFlowFields datatype: added                |
5138 |           |         |       ‘additionalFields’                              |
5139 |           |         |                                                       |
5140 |           |         |    -  mobileFlowFields datatype: incremented the      |
5141 |           |         |       version number for this field block to 1.2      |
5142 |           |         |                                                       |
5143 |           |         |    -  serviceEventsFields datatype: removed this      |
5144 |           |         |       datatype                                        |
5145 |           |         |                                                       |
5146 |           |         |    -  signalingFields datatype: removed this datatype |
5147 |           |         |                                                       |
5148 |           |         |    -  syslogFields: added three fields to the schema  |
5149 |           |         |       that were previously described in the document  |
5150 |           |         |       but not incorporated into the schema: syslogPri,|
5151 |           |         |       syslogSev, syslogSdId                           |
5152 |           |         |                                                       |
5153 |           |         |    -  syslogFields version: incremented the version to|
5154 |           |         |       2.0                                             |
5155 |           |         |                                                       |
5156 |           |         | -  Modified the Common Event Format JSON schema to    |
5157 |           |         |    v27.0 to incorporate the above changes. Also, added|
5158 |           |         |    the AT&T Copyright Notice from the top of the      |
5159 |           |         |    retired CommonEventFormat\_Vendors schema.         |
5160 |           |         |                                                       |
5161 |           |         | -  Section 6 and 2: changed all sample requests to use|
5162 |           |         |    /v4 in the REST Resource URL and call flow diagrams|
5163 |           |         |                                                       |
5164 |           |         | -  Section 6.1.3: added a row to the table in this    |
5165 |           |         |    section describing the ‘heartbeatIntervalChange’   |
5166 |           |         |    command.                                           |
5167 |           |         |                                                       |
5168 |           |         | -  Section 6.1.4: added this new section describing   |
5169 |           |         |    expectations for buffering of events should all    |
5170 |           |         |    REST resource URL FQDNs be unreachable.            |
5171 |           |         |                                                       |
5172 |           |         | -  Section 6 Sample Requests: modified all sample     |
5173 |           |         |    requests showing the return of a commandList toward|
5174 |           |         |    the event source to incorporate a                  |
5175 |           |         |    heartbeatIntervalChange command; also corrected the|
5176 |           |         |    spelling in the samples for the                    |
5177 |           |         |    measurementIntervalChange command.                 |
5178 |           |         |                                                       |
5179 |           |         | -  Section 7: Contributors: removed this section      |
5180 +-----------+---------+-------------------------------------------------------+
5181 | 3/21/2017 | v4.1    | -  JSON Schema changes to produce v27.2 (note: an     |
5182 |           |         |    earlier draft version of v27.1 had been distributed|
5183 |           |         |    to a few individuals):                             |
5184 |           |         |                                                       |
5185 |           |         |    -  To support use of the schema with event batches,|
5186 |           |         |       removed the following statement near the end of |
5187 |           |         |       the schema file:                                |
5188 |           |         |                                                       |
5189 |           |         |     "required": [ "event" ]                           |
5190 |           |         |                                                       |
5191 |           |         | -  Fixed the characters used in some of the quotes    |
5192 |           |         |                                                       |
5193 |           |         | -  Fixed some typos in the descriptions.              |
5194 |           |         |                                                       |
5195 |           |         | -  Removed the booleans, which were non-essential and |
5196 |           |         |    which were causing problems across different       |
5197 |           |         |    implementations.                                   |
5198 |           |         |                                                       |
5199 |           |         | -  Section 4.5.7 measurementsForVfScalingFields:      |
5200 |           |         |                                                       |
5201 |           |         |    -  Fixed the spelling of measurementsForVf\        |
5202 |           |         |       ScalingFields in the Word document              |
5203 |           |         |                                                       |
5204 |           |         | -  Section 2 and 6 sample requests and responses:     |
5205 |           |         |                                                       |
5206 |           |         |    -  Removed quotes from numbers: sequence, and      |
5207 |           |         |       first/lastEpochMicrosec.                        |
5208 |           |         |                                                       |
5209 |           |         |    -  Fixed all quote characters, some of which were  |
5210 |           |         |       using unusual symbols that wouldn’t validate    |
5211 |           |         |       with the json-schema Python package.            |
5212 |           |         |                                                       |
5213 |           |         | -  Section 6.2.6.1, 6.3.6.1, 6.4.6.1 sample requests: |
5214 |           |         |                                                       |
5215 |           |         |    -  Added an alarmAdditionalInformation field array |
5216 |           |         |       to the sample requests.                         |
5217 |           |         |                                                       |
5218 |           |         |    -  Added missing commas.                           |
5219 |           |         |                                                       |
5220 |           |         | -  Section 6.5.6.1 provideThrottlingState sample      |
5221 |           |         |    requests:                                          |
5222 |           |         |                                                       |
5223 |           |         |    -  Fixed the eventDomainThrottleSpecificationList  |
5224 |           |         |       to pass an array of anonymous eventDomain\      |
5225 |           |         |       ThrottleSpecification objects.                  |
5226 |           |         |                                                       |
5227 |           |         |    -  Added missing quotes.                           |
5228 |           |         |                                                       |
5229 |           |         | -  Fixed the suppressedNvPairsList to pass an array of|
5230 |           |         |    anonymous suppressedNvPairs objects.               |
5231 +-----------+---------+-------------------------------------------------------+
5232 | 4/14/2017 | v5.0    | -  Section 1 Introduction:                            |
5233 |           |         |                                                       |
5234 |           |         |    -  Clarified the Introduction (Section 1).         |
5235 |           |         |                                                       |
5236 |           |         |    -  Changed Section 1.1 title from ‘Terminology’ to |
5237 |           |         |       'Event Registration' and referenced the YAML    |
5238 |           |         |       event registration format, defined in a separate|
5239 |           |         |       document.                                       |
5240 |           |         |                                                       |
5241 |           |         |    -  Clarified naming standards for eventName.       |
5242 |           |         |                                                       |
5243 |           |         | -  Section 3: updated the REST resource structure     |
5244 |           |         |                                                       |
5245 |           |         | -  Section 4.1 command list processing datatypes:     |
5246 |           |         |                                                       |
5247 |           |         |    -  Got rid of commandListEntry and returned        |
5248 |           |         |       commandList to a simple array of commands.      |
5249 |           |         |                                                       |
5250 |           |         |    -  Added heartbeatInterval to the command datatype.|
5251 |           |         |                                                       |
5252 |           |         |    -  Changed the datatype of measurementInterval from|
5253 |           |         |       number to integer.                              |
5254 |           |         |                                                       |
5255 |           |         | -  Section 4.2 common event datatypes:                |
5256 |           |         |                                                       |
5257 |           |         |    -  event dataType: Added heartbeatFields,          |
5258 |           |         |       sipSignalingFields and voiceQualityFields to the|
5259 |           |         |       event datatype as optional field blocks         |
5260 |           |         |                                                       |
5261 |           |         |    -  Added jsonObject which provides a json object   |
5262 |           |         |       schema, name and other meta-information along   |
5263 |           |         |       with one or more object instances.              |
5264 |           |         |                                                       |
5265 |           |         |    -  Added jsonObjectInstance which provides         |
5266 |           |         |       meta-information about an instance of a         |
5267 |           |         |       jsonObject along with the actual object instance|
5268 |           |         |                                                       |
5269 |           |         |    -  Added the ‘key’ datatype                        |
5270 |           |         |                                                       |
5271 |           |         |    -  Added the namedArrayOfFields datatype           |
5272 |           |         |                                                       |
5273 |           |         |    -  Added vendorVnfNameFields                       |
5274 |           |         |                                                       |
5275 |           |         | -  Section 4.3 common event header fields:            |
5276 |           |         |                                                       |
5277 |           |         |    -  Add two new enumerations to domain:             |
5278 |           |         |       ‘sipSignaling’ and ‘voiceQuality’               |
5279 |           |         |                                                       |
5280 |           |         |    -  Renamed eventType to eventName. Note that the   |
5281 |           |         |       original usage of eventType was formally        |
5282 |           |         |       described in the Introduction back on 2/11/2016 |
5283 |           |         |       with v1.9.                                      |
5284 |           |         |                                                       |
5285 |           |         |    -  Made eventName a required field                 |
5286 |           |         |                                                       |
5287 |           |         |    -  Created a new field called eventType with a     |
5288 |           |         |       meaning that is different than the old eventType|
5289 |           |         |                                                       |
5290 |           |         |    -  Removed functionalRole, which was replaced by   |
5291 |           |         |       the following two fields.                       |
5292 |           |         |                                                       |
5293 |           |         |    -  Added nfNamingCode                              |
5294 |           |         |                                                       |
5295 |           |         |    -  Added nfcNamingCode                             |
5296 |           |         |                                                       |
5297 |           |         |    -  Changed version to 3.0 (major version change)   |
5298 |           |         |       and made it a required field                    |
5299 |           |         |                                                       |
5300 |           |         | -  Section 4.4: faultFields:                          |
5301 |           |         |                                                       |
5302 |           |         |    -  added one optional field: eventCategory         |
5303 |           |         |                                                       |
5304 |           |         |    -  made faultFieldsVersion a required field        |
5305 |           |         |                                                       |
5306 |           |         |    -  changed faultFieldsVersion to 2.0 (major version|
5307 |           |         |       change)                                         |
5308 |           |         |                                                       |
5309 |           |         |    -  fixed a typo on the spelling of alarmInterfaceA |
5310 |           |         |                                                       |
5311 |           |         |    -  clarified field descriptions                    |
5312 |           |         |                                                       |
5313 |           |         | -  Section 4.5: added heartbeatFields datatype which  |
5314 |           |         |    can be used to communicate heartbeatInterval. Note:|
5315 |           |         |    this change was previously made in v4.2            |
5316 |           |         |                                                       |
5317 |           |         | -  Section 4.6 measurements for vf scaling datatypes: |
5318 |           |         |    changed the following datatypes from number to     |
5319 |           |         |    integer:                                           |
5320 |           |         |                                                       |
5321 |           |         |    -  In measurementsForVfScalingFields:              |
5322 |           |         |       concurrentSessions, configuredEntities,         |
5323 |           |         |       numberOfMediaPortsInUse, vnfcScalingMetric      |
5324 |           |         |                                                       |
5325 |           |         |    -  In codecsInUse: numberInUse                     |
5326 |           |         |                                                       |
5327 |           |         |    -  In featuresInUse: featureUtilization            |
5328 |           |         |                                                       |
5329 |           |         | -  Section 4.6.2 modified cpuUsage                    |
5330 |           |         |                                                       |
5331 |           |         | -  Section 4.6.3 added diskUsage                      |
5332 |           |         |                                                       |
5333 |           |         | -  Section 4.6.7 measurementsForVfScalingFields:      |
5334 |           |         |                                                       |
5335 |           |         |    -  fixed the spelling of the measurementsForVf\    |
5336 |           |         |       ScalingFields in the Word document              |
5337 |           |         |                                                       |
5338 |           |         |    -  added additionalFields, which is an array of    |
5339 |           |         |       fields (i.e., name-value pairs)                 |
5340 |           |         |                                                       |
5341 |           |         |    -  changed additionalMeasurements to reference the |
5342 |           |         |       common datatype namedArrayOfFields (instead of  |
5343 |           |         |       referencing measurementGroup)                   |
5344 |           |         |                                                       |
5345 |           |         |    -  added additionalObjects which is an array of    |
5346 |           |         |       jsonObjects described by name, keys and schema  |
5347 |           |         |                                                       |
5348 |           |         |    -  deleted aggregateCpuUsage                       |
5349 |           |         |                                                       |
5350 |           |         |    -  added diskUsageArray                            |
5351 |           |         |                                                       |
5352 |           |         |    -  deleted measurementGroup (which was replaced by |
5353 |           |         |       the common datatype: namedArrayOfFields         |
5354 |           |         |                                                       |
5355 |           |         |    -  added memoryUsageArray                          |
5356 |           |         |                                                       |
5357 |           |         |    -  deleted memoryConfigured and memoryUsed         |
5358 |           |         |                                                       |
5359 |           |         |    -  deleted errors and vNicUsageArray               |
5360 |           |         |                                                       |
5361 |           |         |    -  added vNicPerformanceArray                      |
5362 |           |         |                                                       |
5363 |           |         |    -  changed the measurementsForVfScalingVersion to  |
5364 |           |         |       2.0 (major version change) and made it a        |
5365 |           |         |       required field. Also changed the name of this   |
5366 |           |         |       version field in the Word document to match that|
5367 |           |         |       in the JSON schema.                             |
5368 |           |         |                                                       |
5369 |           |         | -  Section 4.6.8 added memoryUsage                    |
5370 |           |         |                                                       |
5371 |           |         | -  Section 4.6.9 vNicPerformance: replaced vNicUsage  |
5372 |           |         |    and errors with vNicPerformance                    |
5373 |           |         |                                                       |
5374 |           |         | -  Section 4.7 mobile flow fields changes:            |
5375 |           |         |                                                       |
5376 |           |         |    -  Made mobileFlowFieldsVersion a required field   |
5377 |           |         |       and changed the mobileFlowFieldsVersion to 2.0  |
5378 |           |         |       (major version change).                         |
5379 |           |         |                                                       |
5380 |           |         |    -  Changed the datatype of flowActivationTime and  |
5381 |           |         |       flowDeactivationTime in the Word doc to string. |
5382 |           |         |                                                       |
5383 |           |         |    -  changed the following datatypes from number to  |
5384 |           |         |       integer: otherEndpointPort,                     |
5385 |           |         |       reportingEndpointPort, samplingAlgorithm        |
5386 |           |         |                                                       |
5387 |           |         | -  Section 4.8: otherFields:                          |
5388 |           |         |                                                       |
5389 |           |         |    -  Added otherFieldsVersion (set at 1.1)           |
5390 |           |         |                                                       |
5391 |           |         |    -  Added hashOfNameValuePairArrays                 |
5392 |           |         |                                                       |
5393 |           |         |    -  Added jsonObjects                               |
5394 |           |         |                                                       |
5395 |           |         |    -  Added nameValuePairs                            |
5396 |           |         |                                                       |
5397 |           |         | -  Section 4.9: added sipSignaling domain datatypes   |
5398 |           |         |    with 4.8.1 sipSignalingFields. sipSignalingFields\ |
5399 |           |         |    Version is set at 1.0                              |
5400 |           |         |                                                       |
5401 |           |         | -  Section 4.10 stateChangeFields: made stateChange\  |
5402 |           |         |    FieldsVersion a required field and set it to 2.0   |
5403 |           |         |    (major version change).                            |
5404 |           |         |                                                       |
5405 |           |         | -  Section 4.11 syslogFields:                         |
5406 |           |         |                                                       |
5407 |           |         |    -  Changed the following datatypes from number to  |
5408 |           |         |       integer: syslogFacility, syslogPri              |
5409 |           |         |                                                       |
5410 |           |         |    -  Changed additionalFields from a field [ ] to a  |
5411 |           |         |       string which takes name=value pairs delimited by|
5412 |           |         |       a pipe symbol.                                  |
5413 |           |         |                                                       |
5414 |           |         |    -  Changed syslogFieldsVersion to 3.0 (major       |
5415 |           |         |       version change) and made it a required field    |
5416 |           |         |                                                       |
5417 |           |         |    -  Made syslogSev an enumerated string (previously |
5418 |           |         |       just a string)                                  |
5419 |           |         |                                                       |
5420 |           |         | -  Section 4.12 thresholdCrossingAlertFields: made    |
5421 |           |         |    thresholdCrossingFieldsVersion a required field and|
5422 |           |         |    set it to 2.0 (major version change).              |
5423 |           |         |                                                       |
5424 |           |         | -  Section 4.132: added voice quality domain datatypes|
5425 |           |         |    with 4.13.1 endOfCallVqmSummaries and 4.13.2       |
5426 |           |         |    voiceQualityFields. voiceQualityFieldsVersion is   |
5427 |           |         |    set at 1.0                                         |
5428 |           |         |                                                       |
5429 |           |         | -  JSON Schema: changed the schema to v28.0 and       |
5430 |           |         |    incorporated all of the changes above.             |
5431 |           |         |                                                       |
5432 |           |         | -  Additional JSON Schema changes that are part of    |
5433 |           |         |    v28: Note: The following changes are provided      |
5434 |           |         |    relative to API Spec v4.0 (which embedded JSON     |
5435 |           |         |    schema v27.0), but they were also made in an       |
5436 |           |         |    interim release v4.1 (which embedded JSON schema   |
5437 |           |         |    v27.2):                                            |
5438 |           |         |                                                       |
5439 |           |         |    -  To support use of the schema with event batches,|
5440 |           |         |       removed the following statement near the end of |
5441 |           |         |       the schema file:                                |
5442 |           |         |                                                       |
5443 |           |         |     "required": [ "event" ]                           |
5444 |           |         |                                                       |
5445 |           |         | -  Fixed the characters used in some of the quotes    |
5446 |           |         |                                                       |
5447 |           |         | -  Fixed some typos in the descriptions.              |
5448 |           |         |                                                       |
5449 |           |         | -  Removed the booleans, which were non-essential and |
5450 |           |         |    which were causing problems across different       |
5451 |           |         |    implementations.                                   |
5452 |           |         |                                                       |
5453 |           |         | -  Section 2 and 6 sample requests and responses (also|
5454 |           |         |    incorporated in interim release 4.1):              |
5455 |           |         |                                                       |
5456 |           |         |    -  Removed quotes from numbers: sequence, and      |
5457 |           |         |       first/lastEpochMicrosec.                        |
5458 |           |         |                                                       |
5459 |           |         |    -  Fixed all quote characters, some of which were  |
5460 |           |         |       using unusual symbols that wouldn’t validate    |
5461 |           |         |       with the json-schema Python package.            |
5462 |           |         |                                                       |
5463 |           |         | -  Section 2 and 6 sample requests and responses (only|
5464 |           |         |    in v5.0):                                          |
5465 |           |         |                                                       |
5466 |           |         |    -  Changed the version numbers in the URL string.  |
5467 |           |         |                                                       |
5468 |           |         |    -  Added nfNamingCode and nfcNamingCode and removed|
5469 |           |         |       functionalRole                                  |
5470 |           |         |                                                       |
5471 |           |         | -  Section 6 call flows: updated the version number   |
5472 |           |         |    (only in v5.0).                                    |
5473 |           |         |                                                       |
5474 |           |         | -  Section 6: removed the publishSpecificTopic        |
5475 |           |         |    operation                                          |
5476 |           |         |                                                       |
5477 |           |         | -  Section 6.1.4: Buffering: clarified event source   |
5478 |           |         |    expectations for buffering (only in v5.0).         |
5479 |           |         |                                                       |
5480 |           |         | -  Section 6.2.6.1, 6.3.6.1 sample requests (also     |
5481 |           |         |    incorporated in interim release 4.1):              |
5482 |           |         |                                                       |
5483 |           |         |    -  Added an alarmAdditionalInformation field array |
5484 |           |         |       to the sample requests.                         |
5485 |           |         |                                                       |
5486 |           |         |    -  Added missing commas.                           |
5487 |           |         |                                                       |
5488 |           |         | -  Section 6.2.6.3, 6.3.6.3 commandList sample        |
5489 |           |         |    responses (only in v5.0):                          |
5490 |           |         |                                                       |
5491 |           |         |    -  Fixed the commandList sample responses to pass  |
5492 |           |         |       an array of anonymous command objects (rather   |
5493 |           |         |       than an array of commandListEntry objects).     |
5494 |           |         |                                                       |
5495 |           |         |    -  Fixed the heartbeatIntervalChange commandType to|
5496 |           |         |       pass a heartbeatInterval value instead of a     |
5497 |           |         |       measurementInterval value.                      |
5498 |           |         |                                                       |
5499 |           |         |    -  Removed quotes from the measurementInterval and |
5500 |           |         |       heartbeatInterval values since they are numbers.|
5501 |           |         |                                                       |
5502 |           |         | -  Section 6.4.6.1 provideThrottlingState sample      |
5503 |           |         |    requests(also incorporated in interim release 4.1):|
5504 |           |         |                                                       |
5505 |           |         |    -  Fixed the eventDomainThrottleSpecificationList  |
5506 |           |         |       to pass an array of anonymous                   |
5507 |           |         |       eventDomainThrottleSpecification objects.       |
5508 |           |         |                                                       |
5509 |           |         |    -  Added missing quotes.                           |
5510 |           |         |                                                       |
5511 |           |         |    -  Fixed the suppressedNvPairsList to pass an array|
5512 |           |         |       of anonymous suppressedNvPairs objects (also    |
5513 |           |         |       incorporated in interim release 4.1).           |
5514 +-----------+---------+-------------------------------------------------------+
5515 | 5/22/2017 | v5.1    | -  Footers: removed proprietary markings and updated  |
5516 |           |         |    copyrights to 2017                                 |
5517 |           |         |                                                       |
5518 |           |         | -  Section 4.2.3: field:                              |
5519 |           |         |                                                       |
5520 |           |         |    -  Changed the API spec to make ‘name’ and ‘value’ |
5521 |           |         |       start with lowercase letters. Note: this did not|
5522 |           |         |       affect the schema, which already had them as    |
5523 |           |         |       lowercase.                                      |
5524 |           |         |                                                       |
5525 |           |         | -  JSON Schema:                                       |
5526 |           |         |                                                       |
5527 |           |         |    -  measurementGroup: deleted this object since it  |
5528 |           |         |       was replaced with ‘namedArrayOfFields’ in v28.0 |
5529 |           |         |       and was no longer being used.                   |
5530 |           |         |                                                       |
5531 |           |         |    -  namedArrayOfFields: Fixed an error in the       |
5532 |           |         |       specification of required fields: from          |
5533 |           |         |       ‘measurements’ to ‘arrayOfFields’.              |
5534 |           |         |                                                       |
5535 |           |         | -  Changed the version of the JSON schema to 28.1     |
5536 +-----------+---------+-------------------------------------------------------+
5537 | 6/14/2017 | v5.2    | -  JSON Schema: created v28.2 by changing the field   |
5538 |           |         |    descriptions in the memoryUsage object to refer to |
5539 |           |         |    ‘kibibytes’ instead of ‘kilobytes’. There were no  |
5540 |           |         |    changes to the 28.1 structure.                     |
5541 |           |         |                                                       |
5542 |           |         | -  Word Document: measurementsForVfScaling Domain:    |
5543 |           |         |    memoryUsage object: changed the field descriptions |
5544 |           |         |    in this object to refer to ‘kibibytes’ instead of  |
5545 |           |         |    ‘kilobytes’. There were no changes to the          |
5546 |           |         |    memoryUsage structure.                             |
5547 |           |         |                                                       |
5548 |           |         | -  Reorganized the Word document to group the data    |
5549 |           |         |    structures in Section 4 into three broad categories|
5550 |           |         |    to better align with the VNF Guidelines            |
5551 |           |         |    documentation that has been prepared for vendors:  |
5552 |           |         |                                                       |
5553 |           |         |    -  Common Event Datatypes:                         |
5554 |           |         |                                                       |
5555 |           |         |       - Command List Processing Datatypes             |
5556 |           |         |                                                       |
5557 |           |         |       - Common Event Datatypes                        |
5558 |           |         |                                                       |
5559 |           |         |       - Common Event Header Datatypes                 |
5560 |           |         |                                                       |
5561 |           |         |    -  Technology Independent Datatypes:               |
5562 |           |         |                                                       |
5563 |           |         |       - ‘Fault Domain Datatypes                       |
5564 |           |         |                                                       |
5565 |           |         |       - ‘Heartbeat’ Domain Datatypes                  |
5566 |           |         |                                                       |
5567 |           |         |       - ‘Measurements For Vf Scaling’ Domain Datatypes|
5568 |           |         |                                                       |
5569 |           |         |       - ‘Other’ Domain Datatypes                      |
5570 |           |         |                                                       |
5571 |           |         |       - ‘State Change’ Domain Datatypes               |
5572 |           |         |                                                       |
5573 |           |         |       - ‘Syslog’ Domain Datatypes                     |
5574 |           |         |                                                       |
5575 |           |         |       - ‘Threshold Crossing Alert’ Domain Datatypes   |
5576 |           |         |                                                       |
5577 |           |         |    -  Technology Specify Datatypes:                   |
5578 |           |         |                                                       |
5579 |           |         |       - ‘Mobile Flow’ Domain Datatypes                |
5580 |           |         |                                                       |
5581 |           |         |       - ‘Sip Signaling’ Domain Datatypes              |
5582 |           |         |                                                       |
5583 |           |         |       - ‘Voice Quality’ Domain Datatypes              |
5584 |           |         |                                                       |
5585 |           |         | -  Section 6.1.3: Commands Toward Event Source        |
5586 |           |         |    Clients: Added a statement: "Note: Vendors are not |
5587 |           |         |    currently required to implement support for command|
5588 |           |         |    processing; in addition, command processing may be |
5589 |           |         |    supported by an App-C interface in future."        |
5590 +-----------+---------+-------------------------------------------------------+
5591 | 6/22/2017 | v5.3    | -  JSON Schema: created v28.3 by correcting an error  |
5592 |           |         |    in the sipSignalingFields: changed                 |
5593 |           |         |    vnfVendorNameFields to vendorVnfNameFields.        |
5594 |           |         |    Embedded the new schema at the top of section 4.   |
5595 +-----------+---------+-------------------------------------------------------+
5596 | 9/12/2017 | v5.4    | -  Note: There no changes to any data structures or   |
5597 |           |         |    operations in this version.                        |
5598 |           |         |                                                       |
5599 |           |         | -  JSON Schema: created v28.4 embedded at the top of  |
5600 |           |         |    section 4:                                         |
5601 |           |         |                                                       |
5602 |           |         |    -  Added a reference to eventList in the properties|
5603 |           |         |       defined under the schema title. This enables the|
5604 |           |         |       schema to correctly validate event batches in   |
5605 |           |         |       addition to just events.                        |
5606 |           |         |                                                       |
5607 |           |         |    -  Moved the schema title to the top of the schema |
5608 |           |         |       and changed the text from "Event Listener" to   |
5609 |           |         |       "VES Event Listener"                            |
5610 |           |         |                                                       |
5611 |           |         |    -  Added a schema header block under the title to  |
5612 |           |         |       clearly communicate the schema version,         |
5613 |           |         |       associated API and last-modified information    |
5614 |           |         |                                                       |
5615 |           |         | -  Changed the date in the copyright notice to 2017   |
5616 +-----------+---------+-------------------------------------------------------+
5617 | 9/19/2017 | v5.4.1  | -  Note: There no changes to any data structures or   |
5618 |           |         |    operations in this version.                        |
5619 |           |         |                                                       |
5620 |           |         | -  Back of Cover Page: updated the license and        |
5621 |           |         |    copyright notice to comply with ONAP guidelines    |
5622 |           |         |                                                       |
5623 |           |         | -  JSON Schema: updated the JSON schema to v28.4.1:   |
5624 |           |         |    updated the copyright notice and license to comply |
5625 |           |         |    with ONAP guidelines                               |
5626 +-----------+---------+-------------------------------------------------------+
5627 | 6/28/2018 | v6.0    | -  Added contributors to the title page.              |
5628 |           |         |                                                       |
5629 |           |         | -  Updated references to ‘vnf’ ‘vnfc’ to either ‘nf’  |
5630 |           |         |    and ‘nfc’ or ‘xNf’ and ‘xNfc’ to generalize support|
5631 |           |         |    across both vnfs and pnfs.                         |
5632 |           |         |                                                       |
5633 |           |         | -  Section 1:                                         |
5634 |           |         |                                                       |
5635 |           |         |    -  clarified the meaning of the VES acronym        |
5636 |           |         |                                                       |
5637 |           |         |    -  changed references from ASDC to SDC and from MSO|
5638 |           |         |       to SO                                           |
5639 |           |         |                                                       |
5640 |           |         |    -  clarified the requirements for eventNames.      |
5641 |           |         |                                                       |
5642 |           |         |    -  Added a section of EventId use case examples    |
5643 |           |         |                                                       |
5644 |           |         |    -  Added a new section on measurement expansion    |
5645 |           |         |       fields                                          |
5646 |           |         |                                                       |
5647 |           |         |    -  Added a new section of syslogs                  |
5648 |           |         |                                                       |
5649 |           |         |    -  clarified the versioning section and referenced |
5650 |           |         |       the new API Versioning section in section 6.    |
5651 |           |         |                                                       |
5652 |           |         |    -  Added a list of all the latest field block      |
5653 |           |         |       version numbers in this version of the API spec.|
5654 |           |         |                                                       |
5655 |           |         | -  Section 2: updated the sample to show use of new   |
5656 |           |         |    HTTP versioning headers. Added a note indicating   |
5657 |           |         |    that support for mutual SSL would be provided in   |
5658 |           |         |    future.                                            |
5659 |           |         |                                                       |
5660 |           |         | -  Section 3: updated the resource structure remove   |
5661 |           |         |    the clientThrottlingState resource.                |
5662 |           |         |                                                       |
5663 |           |         | -  Section 4: hashMaps. Changed all name-value pair   |
5664 |           |         |    structures to hashMaps causing the following data  |
5665 |           |         |    model and JSON schema (to v29.0) changes:          |
5666 |           |         |                                                       |
5667 |           |         |    -  4.1.1: Common Event Datatypes:                  |
5668 |           |         |                                                       |
5669 |           |         |       -  removed "field" and added "hashMap"          |
5670 |           |         |                                                       |
5671 |           |         |       -  removed "namedArrayOfFields" and added       |
5672 |           |         |          "namedHashMap"                               |
5673 |           |         |                                                       |
5674 |           |         |       -  added arrayOfNamedHashMap                    |
5675 |           |         |                                                       |
5676 |           |         |       -  added arrayOfJsonObject                      |
5677 |           |         |                                                       |
5678 |           |         |    -  4.2.1: Fault Domain Datatypes:                  |
5679 |           |         |                                                       |
5680 |           |         |       -  changed the faultFields version to 3.0 (major|
5681 |           |         |          change)                                      |
5682 |           |         |                                                       |
5683 |           |         |       -  changed faultFields.alarmAdditional\         |
5684 |           |         |          Information to reference a hashMap           |
5685 |           |         |                                                       |
5686 |           |         |    -  4.2.2: Heartbeat Domain Datatypes:              |
5687 |           |         |                                                       |
5688 |           |         |       -  changed the heartbeatFieldsVersion to 2.0    |
5689 |           |         |          (major change)                               |
5690 |           |         |                                                       |
5691 |           |         |       -  changed heartbeatFields.additionalFields to  |
5692 |           |         |          reference a hashMap                          |
5693 |           |         |                                                       |
5694 |           |         |    -  4.2.3: Measurement Domain Datatypes:            |
5695 |           |         |                                                       |
5696 |           |         |       -  changed the measurementFieldsVersion to 3.0  |
5697 |           |         |          (major change)                               |
5698 |           |         |                                                       |
5699 |           |         |       -  changed measurementFields.additionalFields to|
5700 |           |         |          reference a hashMap                          |
5701 |           |         |                                                       |
5702 |           |         |       -  changed measurement.additionalMesurements to |
5703 |           |         |          reference a namedHashMap [ ]                 |
5704 |           |         |                                                       |
5705 |           |         |       -  modified measurementFields.featureUsageArray |
5706 |           |         |          to reference a hashmap and removed           |
5707 |           |         |          ‘featuresInUse’                              |
5708 |           |         |                                                       |
5709 |           |         |       -  added the following datatypes which are now  |
5710 |           |         |          referenced as items in arrays within         |
5711 |           |         |          measurementFields: hugePages, load,          |
5712 |           |         |          machineCheckException, processStats          |
5713 |           |         |                                                       |
5714 |           |         |    -  4.2.5: Other Domain Datatypes:                  |
5715 |           |         |                                                       |
5716 |           |         |       -  Change the otherFieldsVersion to 2.0 (major  |
5717 |           |         |          change)                                      |
5718 |           |         |                                                       |
5719 |           |         |       -  changed otherFields.nameValuePairs to        |
5720 |           |         |          reference a hashMap and renamed it hashMap   |
5721 |           |         |                                                       |
5722 |           |         |       -  changed otherFields.hashOfNameValuePair\     |
5723 |           |         |          Arrrays to reference a namedHashMap and      |
5724 |           |         |          renamed it arrayOfNamedHashMap               |
5725 |           |         |                                                       |
5726 |           |         |    -  4.2.7: State Change Domain Datatypes:           |
5727 |           |         |                                                       |
5728 |           |         |       -  changed the stateChangeFiledsVersion to 3.0  |
5729 |           |         |          (major change)                               |
5730 |           |         |                                                       |
5731 |           |         |       -  changed stateChangeFields.additionalFields to|
5732 |           |         |          reference a hashMap                          |
5733 |           |         |                                                       |
5734 |           |         |    -  4.2.9: Threshold Crossing Alert Domain          |
5735 |           |         |       Datatypes:                                      |
5736 |           |         |                                                       |
5737 |           |         |       -  changed the thresholdCrossingAlertFields\    |
5738 |           |         |          Version to 3.0 (major change)                |
5739 |           |         |                                                       |
5740 |           |         |       -  changed thresholdCrossingAlert\              |
5741 |           |         |          Fields.additionalFields to reference a       |
5742 |           |         |          hashMap                                      |
5743 |           |         |                                                       |
5744 |           |         |       -  counter: removed name and value elements and |
5745 |           |         |          replaced with a hashMap                      |
5746 |           |         |                                                       |
5747 |           |         |    -  4.3.1: Mobile Flow Domain Datatypes:            |
5748 |           |         |                                                       |
5749 |           |         |       -  changed the mobileFlowFieldsVersion to 3.0   |
5750 |           |         |          (major change)                               |
5751 |           |         |                                                       |
5752 |           |         |       -  changed mobileFlowFields.additionalFields to |
5753 |           |         |          reference a hashMap                          |
5754 |           |         |                                                       |
5755 |           |         |       -  gtpPerFlowMetrics: modified ipTosCountList to|
5756 |           |         |          reference hashmap                            |
5757 |           |         |                                                       |
5758 |           |         |       -  gtpPerFlowMetrics: modified mobileQciCos\    |
5759 |           |         |          CountList to reference hashmap               |
5760 |           |         |                                                       |
5761 |           |         |       -  gtpPerFlowMetrics: modified tcpFlagCountList |
5762 |           |         |          to reference hashmap                         |
5763 |           |         |                                                       |
5764 |           |         |    -  4.3.2: Sip Signaling Domain Datatypes:          |
5765 |           |         |                                                       |
5766 |           |         |       -  changed the sigSignalingFieldsVersion to 2.0 |
5767 |           |         |          (major change)                               |
5768 |           |         |                                                       |
5769 |           |         |       -  changed sipSignalingFields.additional\       |
5770 |           |         |          Information to reference a hashMap           |
5771 |           |         |                                                       |
5772 |           |         |    -  4.3.3: Voice Quality Domain Datatypes:          |
5773 |           |         |                                                       |
5774 |           |         |       -  change the voiceQualityFieldsVersion to 2.0  |
5775 |           |         |          (major change)                               |
5776 |           |         |                                                       |
5777 |           |         |       -  changed voiceQualityFields.additional\       |
5778 |           |         |          Information to reference a hashMap           |
5779 |           |         |                                                       |
5780 |           |         | -  Section 4: added notes at the top of section 4     |
5781 |           |         |    clarifying expectations and requirements for       |
5782 |           |         |    optional fields, extensible fields and keys sent   |
5783 |           |         |    through extensible fields.                         |
5784 |           |         |                                                       |
5785 |           |         | -  Common Event Data Types: Section 4.1.1.9 Changed   |
5786 |           |         |    vendorVnfNameFields to vendorNfNameFields; updated |
5787 |           |         |    Section 4.3.2 SipSignaling and 4.3.3 Voice Quality |
5788 |           |         |    to refer to the renamed object                     |
5789 |           |         |                                                       |
5790 |           |         | -  Common Event Header Section 4.1.2:                 |
5791 |           |         |                                                       |
5792 |           |         |    -  clarified the descriptions of eventId,          |
5793 |           |         |       reportingEntityName, sourceName and             |
5794 |           |         |       startEpochMicroseconds.                         |
5795 |           |         |                                                       |
5796 |           |         |    -  Added ‘notification’ and ‘pngRegistration’ to   |
5797 |           |         |       the domain enumeration.                         |
5798 |           |         |                                                       |
5799 |           |         |    -  added a new timeZoneOffsest field               |
5800 |           |         |                                                       |
5801 |           |         | -  Fault Domain Section 4.2.1: clarified the          |
5802 |           |         |    definitions of alarmCondition, eventSeverity and   |
5803 |           |         |    specificProblem                                    |
5804 |           |         |                                                       |
5805 |           |         | -  Measurements Domain Section 4.2.3: changed the name|
5806 |           |         |    of this domain from ‘measurementsForVfScaling’ to  |
5807 |           |         |    ‘measurement’                                      |
5808 |           |         |                                                       |
5809 |           |         |    -  measurementsForVfScaling measurement            |
5810 |           |         |                                                       |
5811 |           |         |    -  measurementsForVfScalingFields measurementFields|
5812 |           |         |                                                       |
5813 |           |         |    -  measurementsForVfScalingVersion                 |
5814 |           |         |       measurementFieldsVersion                        |
5815 |           |         |                                                       |
5816 |           |         |    -  the ‘mfvs’ abbreviation measurement             |
5817 |           |         |                                                       |
5818 |           |         | -  Measurements Domain Section 4.2.3 cpuUsage: added  |
5819 |           |         |    seven optional fields to this structure:           |
5820 |           |         |    cpuCapacityContention, cpuDemandAvg, cpuDemandMhz, |
5821 |           |         |    cpuDemandPct, cpuLatencyAverage, cpuOverheadAvg,   |
5822 |           |         |    cpuSwapWaitTime                                    |
5823 |           |         |                                                       |
5824 |           |         | -  Measurements Domain Section 4.2.3 diskUsage: added |
5825 |           |         |    ten optional fields to this structure:             |
5826 |           |         |    diskBusResets, diskCommandsAborted, diskCommandsAvg|
5827 |           |         |    , diskFlushRequests, diskFlushTime,                |
5828 |           |         |    diskReadCommandsAvg, diskTime, diskTotalRead\      |
5829 |           |         |    LatencyAvg, diskTotalWriteLatencyAvg, diskWrite\   |
5830 |           |         |    CommandsAvg                                        |
5831 |           |         |                                                       |
5832 |           |         | -  Measurements Domain Section 4.2.3: added a new     |
5833 |           |         |    ‘ipmi’ datatype along with following ‘supporting’  |
5834 |           |         |    datatypes: ipmiBaseboardTemperature, ipmiBaseboard\|
5835 |           |         |    VoltageRegulator, ipmiBattery, ipmiFan, ipmiGlobal\|
5836 |           |         |    AggregateTemperatureMargin, ipmiHsbp, ipmiNic,     |
5837 |           |         |    ipmiPowerSupply, ipmiProcessor, processorDimm\     |
5838 |           |         |    AggregateThermalMargin                             |
5839 |           |         |                                                       |
5840 |           |         | -  Measurements Domain Section 4.2.3: added a new     |
5841 |           |         |    ‘load’ datatype                                    |
5842 |           |         |                                                       |
5843 |           |         | -  Measurements Domain Section 4.2.3 memoryUsage:     |
5844 |           |         |    added eight optional fields to this structure:     |
5845 |           |         |    memoryDemand, memoryLatencyAvg, memorySharedAvg,   |
5846 |           |         |    memorySwapInAvg, memorySwapInRateAvg, memorySwap\  |
5847 |           |         |    OutAvg, memorySwapOutRateAvg, memorySwapUsedAvg    |
5848 |           |         |                                                       |
5849 |           |         | -  Measurements Domain Section 4.2.3: modified        |
5850 |           |         |    measurementFields to include the following new     |
5851 |           |         |    fields: hugePagesArray, ipmi, loadArray, memory\   |
5852 |           |         |    Errors, processStatusArray, rdtArray               |
5853 |           |         |                                                       |
5854 |           |         | -  Measurements Domain Section 4.2.3 renamed vNic\    |
5855 |           |         |    Performance to nicPerformance and changed vNic\    |
5856 |           |         |    Identifer to nicIdentifier                         |
5857 |           |         |                                                       |
5858 |           |         | -  Notification Domain Section 4.2.4: added           |
5859 |           |         |    notificationFields to support a new notification   |
5860 |           |         |    domain.                                            |
5861 |           |         |                                                       |
5862 |           |         | -  pnfRegistration Domain Section 4.2.7: added        |
5863 |           |         |    pnfRegistrationFields to support a new registration|
5864 |           |         |    domain.                                            |
5865 |           |         |                                                       |
5866 |           |         | -  sysLog Domain Section 4.2.8: added two new fields: |
5867 |           |         |    syslogMsgHost and syslogTs. Clarified field        |
5868 |           |         |    descriptions. Clarified syslogSData example.       |
5869 |           |         |                                                       |
5870 |           |         | -  endOfCallVqmSummaries Section 4.3.3.1:             |
5871 |           |         |                                                       |
5872 |           |         |    -  converted endpointJitter into two fields:       |
5873 |           |         |       endpointAverageJitter and endpointMaxJitter     |
5874 |           |         |                                                       |
5875 |           |         |    -  converted localJitter into two fields:          |
5876 |           |         |       localAverageJitter and localMaxJitter           |
5877 |           |         |                                                       |
5878 |           |         |    -  added two fields: localAverageJitterBufferDelay |
5879 |           |         |       and localMaxJitterBufferDelay                   |
5880 |           |         |                                                       |
5881 |           |         |    -  added endpointRtpOctetsLost and                 |
5882 |           |         |       endpointRtpPacketsLost                          |
5883 |           |         |                                                       |
5884 |           |         |    -  added localRtpOctetsLost and localRtpPacketsLost|
5885 |           |         |                                                       |
5886 |           |         |    -  converted packetsLost into oneWayDelay          |
5887 |           |         |                                                       |
5888 |           |         | -  API Versioning:                                    |
5889 |           |         |                                                       |
5890 |           |         |    -  Section 1.4: clarified the versioning section   |
5891 |           |         |       and linked it to the following new section 6.1.2|
5892 |           |         |                                                       |
5893 |           |         |    -  Section 6.1.2: Added requirements for HTTP      |
5894 |           |         |       headers communicating minor, patch and latest   |
5895 |           |         |       version information.                            |
5896 |           |         |                                                       |
5897 |           |         |    -  Section 2 and 6 sample messages: clarified      |
5898 |           |         |       examples to use the new HTTP headers            |
5899 |           |         |                                                       |
5900 |           |         | -  Section 6.1.4: Added a section specifying message  |
5901 |           |         |    size limits.                                       |
5902 |           |         |                                                       |
5903 |           |         | -  Section2 6.2.6.1 and 6.3.6.1: corrected            |
5904 |           |         |    additionalInformation examples to use hashMap      |
5905 |           |         |    instead of name-value pair fields.                 |
5906 |           |         |                                                       |
5907 |           |         | -  Section 7: Added a section on Terminology.         |
5908 |           |         |                                                       |
5909 |           |         | -  Command List Processing: removed command list      |
5910 |           |         |    processing from the document and schema:           |
5911 |           |         |                                                       |
5912 |           |         |    -  Modified the Section 3 resource structure to    |
5913 |           |         |       align with these changes.                       |
5914 |           |         |                                                       |
5915 |           |         |    -  Removed Section 4 Datatypes: command,           |
5916 |           |         |       commandList, eventDomainThrottleSpecification,  |
5917 |           |         |       eventDomainThrottleSpecificationList,           |
5918 |           |         |       eventThrottlingState, suppressedNvPairs         |
5919 |           |         |                                                       |
5920 |           |         |    -  Removed Section 6.1 description of commands     |
5921 |           |         |       toward event source clients                     |
5922 |           |         |                                                       |
5923 |           |         | -  Removed Section 6.4 operation:                     |
5924 |           |         |    provideThrottlingState                             |
5925 +-----------+---------+-------------------------------------------------------+
5926 | 7/30/2018 | v7.0    | -  General:                                           |
5927 |           |         |                                                       |
5928 |           |         |    -  Fixed typos throughout                          |
5929 |           |         |                                                       |
5930 |           |         |    -  Changed example versions to v7                  |
5931 |           |         |                                                       |
5932 |           |         | -  Section1:                                          |
5933 |           |         |                                                       |
5934 |           |         |    -  Clarified casing and use of dashes versus colons|
5935 |           |         |       in eventName examples                           |
5936 |           |         |                                                       |
5937 |           |         |    -  Updated all field block versions                |
5938 |           |         |                                                       |
5939 |           |         | -  Section 2: added a note clarifying that TLS 1.2 or |
5940 |           |         |    higher must be used for HTTPS connections.         |
5941 |           |         |                                                       |
5942 |           |         | -  Section 4 embedded schema changed to v30:          |
5943 |           |         |                                                       |
5944 |           |         |    -  Added " ‘additionalProperties’: false " to      |
5945 |           |         |       objects to reject events that attempt to send   |
5946 |           |         |       properties that are not listed in the           |
5947 |           |         |       ‘properties’ keyword. Note: does not affect     |
5948 |           |         |       hashmap extensible fields.                      |
5949 |           |         |                                                       |
5950 |           |         |    -  Changed all versions in all field blocks from   |
5951 |           |         |       number to string enum with the version number   |
5952 |           |         |       fixed by the enum so the schema can validate    |
5953 |           |         |       events that attempt to send non-standard field  |
5954 |           |         |       blocks.                                         |
5955 |           |         |                                                       |
5956 |           |         |    -  Changed syslog additionalFields to a hashMap    |
5957 |           |         |                                                       |
5958 |           |         | -  Section 4:                                         |
5959 |           |         |                                                       |
5960 |           |         |    -  Fixed section heading numbers that were the same|
5961 |           |         |                                                       |
5962 |           |         |    -  4.1.1: jsonObjectInstance: added an optional    |
5963 |           |         |       recursive jsonObject and removed all required   |
5964 |           |         |       fields from this object                         |
5965 |           |         |                                                       |
5966 |           |         |    -  4.1.2: commonEventHeader:                       |
5967 |           |         |                                                       |
5968 |           |         |       -  nfVendorName: added this optional field      |
5969 |           |         |                                                       |
5970 |           |         |       -  timeZoneOffset: changed from number to string|
5971 |           |         |          with a particular format specified           |
5972 |           |         |                                                       |
5973 |           |         |       -  version was changed from number to string (as|
5974 |           |         |          were all the version fields of all the field |
5975 |           |         |          blocks)                                      |
5976 |           |         |                                                       |
5977 |           |         |       -  vesCommonEventListenerVersion: added this    |
5978 |           |         |          required field as a string enumeration       |
5979 |           |         |                                                       |
5980 |           |         |    -  4.2.3: Measurements Domain:                     |
5981 |           |         |                                                       |
5982 |           |         |       -  Added a note clarifying that NFs are required|
5983 |           |         |          to report exactly one Measurement event per  |
5984 |           |         |          period per sourceName                        |
5985 |           |         |                                                       |
5986 |           |         |       -  diskUsage: added four new optional fields:   |
5987 |           |         |          diskWeightedIoTimeAve, diskWeightedIoTimeLast|
5988 |           |         |          , diskWeightedIoTimeMax,                     |
5989 |           |         |          diskWeightedIoTimeMin                        |
5990 |           |         |                                                       |
5991 |           |         |       -  memoryUsage: add one new optional field:     |
5992 |           |         |          percentMemoryUsage                           |
5993 |           |         |                                                       |
5994 |           |         |       -  nicPerformance: added nine new optional      |
5995 |           |         |          fields: administrativeState, operationalState|
5996 |           |         |          , receivedPercentDiscard,                    |
5997 |           |         |          receivedPercentError, receivedUtilization,   |
5998 |           |         |          speed, transmittedPercentDiscard,            |
5999 |           |         |          transmittedPercentError,                     |
6000 |           |         |          transmittedUtilization                       |
6001 |           |         |                                                       |
6002 |           |         |       -  processorDimmAggregateThermalMargin: make the|
6003 |           |         |          thermalMargin field required                 |
6004 |           |         |                                                       |
6005 |           |         |    -  4.2.8: Syslog Domain:                           |
6006 |           |         |                                                       |
6007 |           |         | -  Corrected the example at the end of the section    |
6008 +-----------+---------+-------------------------------------------------------+
6009 | 7/31/2018 | v7.0.1  | -  Section 4: The schema embedded at the top of       |
6010 |           |         |    section 4 was patched to correct a header field    |
6011 |           |         |    name error—the schema version moves from 30 to     |
6012 |           |         |    30.0.1:                                            |
6013 |           |         |                                                       |
6014 |           |         |    -  Changed commonEventHeader field: ‘vesCommon\    |
6015 |           |         |       EventFormatVersion’ field to ‘vesEventListener\ |
6016 |           |         |       Version’ and set the enum to 7.0.1              |
6017 |           |         |                                                       |
6018 |           |         |    -  Also changed the commonEventHeader ‘required’   |
6019 |           |         |       array to reflect use the corrected field name:  |
6020 |           |         |       ‘vesEventListenerVersion’                       |
6021 |           |         |                                                       |
6022 |           |         |    -  Changed the commonEventHeader ‘version’ field   |
6023 |           |         |       enumeration to 4.0.1                            |
6024 |           |         |                                                       |
6025 |           |         | -  Section1:                                          |
6026 |           |         |                                                       |
6027 |           |         |    -  Changed the field block versions for the common |
6028 |           |         |       header for ‘vesEventListenerVersion’ (to 7.0.1) |
6029 |           |         |       and ‘version’ (to 4.0.1).                       |
6030 |           |         |                                                       |
6031 |           |         | -  Sections 2 and 6:                                  |
6032 |           |         |                                                       |
6033 |           |         |    -  Changed the commonEventHeader version fields    |
6034 |           |         |       above, in the sample message requests and       |
6035 |           |         |       responses; also updated the faultFieldsVersion  |
6036 |           |         |       to 4.0                                          |
6037 |           |         |                                                       |
6038 |           |         | -  Section 6.1.2: Changed the X-LatestVersion to 7.0.1|
6039 |           |         |    and the X-PatchVersion to 1                        |
6040 +-----------+---------+-------------------------------------------------------+
6041 | 12/10/2018| v7.1    | -  Section 1.2: Added Notification domain Perf3gpp    |
6042 |           |         |    domain and changed a reference from ‘measurements  |
6043 |           |         |    domain’ to ‘measurement domain’.                   |
6044 |           |         |                                                       |
6045 |           |         | -  Section 1.7.1: Field Block Versions: added         |
6046 |           |         |    ‘perf3gppFields’ version at 1.0 and changed the    |
6047 |           |         |    following version enumerations so that existing    |
6048 |           |         |    clients of major version 7 would not be broken by  |
6049 |           |         |    this VES minor version change, in accordance with  |
6050 |           |         |    semantic versioning definitions:                   |
6051 |           |         |                                                       |
6052 |           |         |    -  commonEventHeader: changed to                   |
6053 |           |         |       ‘vesEventListenerVersion’ enum to accept either |
6054 |           |         |       7.0 or 7.0.1 or 7.1.                            |
6055 |           |         |                                                       |
6056 |           |         |    -  commonEventHeader: changed ‘version’ enum to    |
6057 |           |         |       accept either 4.0 or 4.0.1 or 4.1               |
6058 |           |         |                                                       |
6059 |           |         | -  Section 2:                                         |
6060 |           |         |                                                       |
6061 |           |         |    -  changed sample request and responses to         |
6062 |           |         |       reference 7.1 instead of 7.0.1 (and version 4.1 |
6063 |           |         |       of the commonEventHeader version, instead of    |
6064 |           |         |       v4.0.1)                                         |
6065 |           |         |                                                       |
6066 |           |         |    -  added a sub section on service provider support |
6067 |           |         |       for mutual ssl certificate authentication       |
6068 |           |         |                                                       |
6069 |           |         | -  Section 4.1.2.1:                                   |
6070 |           |         |                                                       |
6071 |           |         |    -  CommonEventHeader timeZoneOffset changed        |
6072 |           |         |       description from ‘UTC+/-hh.mm’ to ‘UTC+/-hh:mm’ |
6073 |           |         |                                                       |
6074 |           |         |    -  Added ‘perf3gpp’ to the domain enumeration      |
6075 |           |         |                                                       |
6076 |           |         | -  Section 4.2.3: Measurement Domain Datatypes:       |
6077 |           |         |                                                       |
6078 |           |         |    -  In ‘MeasurementFields’: Changed ‘ipmiArray’ to  |
6079 |           |         |       ‘ipmi’ and made the type ‘object’               |
6080 |           |         |                                                       |
6081 |           |         |    -  ‘ipmiProcessor’: changed                        |
6082 |           |         |       ‘pprocessorThermalControl’ to                   |
6083 |           |         |       ‘processorThermalControl’                       |
6084 |           |         |                                                       |
6085 |           |         |    -  ‘machineCheckException’: changed                |
6086 |           |         |       ‘processIdentifier’ to ‘vmIdentifier’           |
6087 |           |         |                                                       |
6088 |           |         | -  Section 4.2.6: added the perf3gpp domain           |
6089 |           |         |                                                       |
6090 |           |         | -  Section 4 embedded schema:                         |
6091 |           |         |                                                       |
6092 |           |         |    -  Changed the schema version from 30.0.1 to 30.1  |
6093 |           |         |       as a result of the changes below:               |
6094 |           |         |                                                       |
6095 |           |         |    -  commonEventHeader: changed to                   |
6096 |           |         |       ‘vesEventListenerVersion’ enum to accept either |
6097 |           |         |       7.0, 7.0.1 or 7.1                               |
6098 |           |         |                                                       |
6099 |           |         |    -  commonEventHeader: changed the ‘version’ field  |
6100 |           |         |       enumeration to accept either 4.0, 4.0.1 or 4.1  |
6101 |           |         |                                                       |
6102 |           |         |    -  commonEventHeader: changed the ‘domain’         |
6103 |           |         |       enumeration to add support for the perf3gpp     |
6104 |           |         |       domain.                                         |
6105 |           |         |                                                       |
6106 |           |         |    -  ‘event’: added a reference to ‘perf3gppFields’  |
6107 |           |         |                                                       |
6108 |           |         |    -  ‘hugePages’: changed the type of                |
6109 |           |         |       hugePagesIdentifier from number to string       |
6110 |           |         |                                                       |
6111 |           |         |    -  ‘ipmiGlobalAggregateTemperatureMargin’: changed |
6112 |           |         |       ‘pmiGlobalAggregateTemperatureMarginIdentifier’ |
6113 |           |         |       to ‘globalAggregateTemperatureMarginIdentifier’ |
6114 |           |         |                                                       |
6115 |           |         |    -  ‘perf3gppFields’: added this object             |
6116 |           |         |                                                       |
6117 |           |         | -  Section 6: changed references throughout from      |
6118 |           |         |    v7.0.1 to v7.1 and v4.0.1 (of the commonEventHeader|
6119 |           |         |    version) to v4.1                                   |
6120 |           |         |                                                       |
6121 |           |         | -  Changed the location of the doc to VNF             |
6122 |           |         |    Requirements and changed the formatting            |
6123 +-----------+---------+-------------------------------------------------------+
6124 | 1/28/2020 | v7.1.1  | -  Changed event sizes from 2Mb to 1Mb                |
6125 |           |         | -  Configuration Requirement comments addressed       |
6126 |           |         | -  Changed DCAE Collector to VES Event Listener       |
6127 |           |         | -  Replaced VNF with NF where appropriate             |
6128 |           |         | -  Updated publishAnyEvent and publishBatchEvent to   |
6129 |           |         |    clarify both one way and mutual TLS are supported  |
6130 |           |         | -  Changed authorization for publishEventBatch        |
6131 |           |         |    because certification authorization is also        |
6132 |           |         |    supported                                          |
6133 |           |         | -  Updated fault use case in EventId Use Case         |
6134 |           |         |    Examples based on Ericsson feedback                |
6135 |           |         | -  Added new Configuration Requirements section       |
6136 |           |         | -  Added new Event Domain Requirements section        |
6137 |           |         | -  Updated security requirements based on agreements  |
6138 |           |         |    in ONAP  Security Committee with details on 2-way  |
6139 |           |         |    certificate support                                |
6140 |           |         | -  Provided clarifications on event buffering         |
6141 |           |         | -  Added Event Handling Requirements for              |
6142 |           |         |    publishEventFlow                                   |
6143 |           |         | -  Updated Field Block Versions to support existing   |
6144 |           |         |    clients of major version 7                         |
6145 |           |         | -  Updated sample request and response schemas        |
6146 |           |         | -  Updated embedded schema as follows:                |
6147 |           |         |                                                       |
6148 |           |         |    * Changed schema version to 30.1.1                 |
6149 |           |         |    * Changed measValues to measValuesList and similar |
6150 |           |         |      changes throughout                               |
6151 |           |         |    * Changed iMeasTypesList to sMeasTypesList         |
6152 |           |         | - Corrected publishEventBatch call flow diagram       |
6153 |           |         | - Changed AuthorizationHeader to Required? = NO for   |
6154 |           |         |   publishAnyEvent operation                           |
6155 |           |         | - Relaxed various requirements related to camel       |
6156 |           |         |   casing of values from 'must' to 'should'            |
6157 +-----------+---------+-------------------------------------------------------+
6158 | 5/27/2020 | v7.2    | -  Re-organized sections to flow more logically       |
6159 |           |         | -  Moved NF requirements to VNF Requirements          |
6160 |           |         | -  Changed DCAE Collector to VES Event Listener       |
6161 |           |         | -  Added StndDefined domain datatypes                 |
6162 |           |         | -  Added eventCommonHeader field stndDefinedNamespace |
6163 |           |         | -  Updated SVC exceptions with SVC2004 and SVC2006    |
6164 |           |         | -  Updated links to OMA                               |
6165 |           |         | -  Updated publishEventBatch to support stndDefined   |
6166 +-----------+---------+-------------------------------------------------------+
6167
6168 .. _time_zone_abbreviations: https://en.wikipedia.org/wiki/List_of_time_zone_abbreviations
6169 .. _Common_definitions: https://www.openmobilealliance.org/release/REST_NetAPI_Common/V1_0-20180116-A/OMA-TS-REST_NetAPI_Common-V1_0-20180116-A.pdf