diff options
author | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2018-10-05 10:19:57 +0200 |
---|---|---|
committer | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2018-10-05 10:19:57 +0200 |
commit | 344bc193fece33112fc9a323bb4e3e93684bcab4 (patch) | |
tree | 419acecc886df9424910c1b122a40bd50335149c /hv-collector-domain/src/main/proto/event/VesEvent.proto | |
parent | ffe57b5673af80942925eed5b8e793ce2cf750b1 (diff) |
Remove any inconsistencies with specification3.0.0-ONAP1.0.0
* Fix payloadId field issue (was 1 byte, should use 2 byts)
* Copy final version of protobuf and asn definitions (mostly comments)
* Added links to yet-to-be updated RTD documentation
Change-Id: I69bda676423ad601797d95577ff8af6707cacb0c
Issue-ID: DCAEGEN2-857
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Diffstat (limited to 'hv-collector-domain/src/main/proto/event/VesEvent.proto')
-rw-r--r-- | hv-collector-domain/src/main/proto/event/VesEvent.proto | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/hv-collector-domain/src/main/proto/event/VesEvent.proto b/hv-collector-domain/src/main/proto/event/VesEvent.proto index dcd54640..dbe0aa3f 100644 --- a/hv-collector-domain/src/main/proto/event/VesEvent.proto +++ b/hv-collector-domain/src/main/proto/event/VesEvent.proto @@ -20,15 +20,15 @@ syntax = "proto3"; package org.onap.ves; -message VesEvent // top-level message +message VesEvent // top-level message, currently the maximum event size supported by the HV-VES Collector is 1 MiB { CommonEventHeader commonEventHeader=1; // required bytes eventFields=2; // required, payload // this field contains a domain-specific GPB message // the field being opaque (bytes), the decoding of the payload occurs in a separate step - // the name of the GPB message for domain XYZ is XYZFields - // e.g. for domain==perf3gpp, the GPB message is Perf3GPPFields + // the name of the GPB message for domain XYZ is XyzFields + // e.g. for domain==perf3gpp, the GPB message is Perf3gppFields } // VES CommonEventHeader adapted to GPB (Google Protocol Buffers) @@ -36,10 +36,10 @@ message VesEvent // top-level message message CommonEventHeader { - string version = 1; // required, "version of the gpb common event header" + string version = 1; // required, "version of the gpb common event header", current value "1.0" string domain = 2; // required, "the eventing domain associated with the event", allowed values: - // fault, heartbeat, measurement, mobile_flow, other, pnfregistration, sip_signaling, - // state_change, syslog, threshold_crossing_alert, voice_quality, perf3gpp + // fault, heartbeat, measurement, mobileFlow, other, pnfRegistration, sipSignaling, + // stateChange, syslog, thresholdCrossingAlert, voiceQuality, perf3gpp uint32 sequence = 3; // required, "ordering of events communicated by an event source instance or 0 if not needed" @@ -69,7 +69,7 @@ message CommonEventHeader bytes sourceId = 15; // "UUID identifying the entity experiencing the event issue; must be populated by the ATT enrichment process" string sourceName = 16; // required, "name of the entity experiencing the event issued use A&AI entry" string timeZoneOffset = 17; // "Offset to GMT to indicate local time zone for the device" - string vesEventListenerVersion = 18; // required, "Version of the VesEvent Listener" + string vesEventListenerVersion = 18; // required, "Version of the VesEvent Listener", current value "7.0.2" reserved "InternalHeaderFields"; // "enrichment fields for internal VES Event Listener service use only, not supplied by event sources" reserved 100; |