blob: 2db6b64e6b1b41a38b65a4bf6237416a5a565f41 [file] [log] [blame]
Filip Krzywkacbd2ded2018-09-25 14:43:18 +02001/*
2 * ============LICENSE_START=======================================================
3 * dcaegen2-collectors-veshv
4 * ================================================================================
5 * Copyright (C) 2018 NOKIA
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20syntax = "proto3";
21package org.onap.ves;
22
Piotr Jaszczyk2df4b8c2018-10-05 10:56:38 +020023message VesEvent // top-level message, currently the maximum event size supported by the HV-VES Collector is 1 MiB
24{
Filip Krzywkacbd2ded2018-09-25 14:43:18 +020025 CommonEventHeader commonEventHeader=1; // required
26
27 bytes eventFields=2; // required, payload
Piotr Jaszczyk2df4b8c2018-10-05 10:56:38 +020028 // this field contains a domain-specific GPB message
29 // the field being opaque (bytes), the decoding of the payload occurs in a separate step
30 // the name of the GPB message for domain XYZ is XyzFields
31 // e.g. for domain==perf3gpp, the GPB message is Perf3gppFields
Filip Krzywkacbd2ded2018-09-25 14:43:18 +020032}
33
34// VES CommonEventHeader adapted to GPB (Google Protocol Buffers)
Filip Krzywkacbd2ded2018-09-25 14:43:18 +020035
36message CommonEventHeader
37{
Piotr Jaszczyk2df4b8c2018-10-05 10:56:38 +020038 string version = 1; // required, "version of the gpb common event header", current value "1.0"
Filip Krzywkacbd2ded2018-09-25 14:43:18 +020039 string domain = 2; // required, "the eventing domain associated with the event", allowed values:
Piotr Jaszczyk2df4b8c2018-10-05 10:56:38 +020040 // fault, heartbeat, measurement, mobileFlow, other, pnfRegistration, sipSignaling,
41 // stateChange, syslog, thresholdCrossingAlert, voiceQuality, perf3gpp
Filip Krzywkacbd2ded2018-09-25 14:43:18 +020042
43 uint32 sequence = 3; // required, "ordering of events communicated by an event source instance or 0 if not needed"
44
45 enum Priority
46 {
47 PRIORITY_NOT_PROVIDED = 0;
48 HIGH = 1;
49 MEDIUM = 2;
50 NORMAL = 3;
51 LOW = 4;
52 }
53 Priority priority = 4; // required, "processing priority"
54
55 string eventId = 5; // required, "event key that is unique to the event source"
56 string eventName = 6; // required, "unique event name"
57 string eventType = 7; // "for example - guest05, platform"
58
59 uint64 lastEpochMicrosec = 8; // required, "the latest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds"
60 uint64 startEpochMicrosec = 9; // required, "the earliest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds"
61
62 string nfNamingCode = 10; // "4 character network function type, aligned with vnf naming standards"
63 string nfcNamingCode = 11; // "3 character network function component type, aligned with vfc naming standards"
64 string nfVendorName = 12; // " Vendor Name providing the nf "
65
66 bytes reportingEntityId = 13; // "UUID identifying the entity reporting the event, for example an OAM VM; must be populated by the ATT enrichment process"
67 string reportingEntityName = 14; // required, "name of the entity reporting the event, for example, an EMS name; may be the same as sourceName should match A&AI entry"
68 bytes sourceId = 15; // "UUID identifying the entity experiencing the event issue; must be populated by the ATT enrichment process"
69 string sourceName = 16; // required, "name of the entity experiencing the event issued use A&AI entry"
70 string timeZoneOffset = 17; // "Offset to GMT to indicate local time zone for the device"
kjaniake2844092018-11-14 15:42:03 +010071 string vesEventListenerVersion = 18; // required, "Version of the VesEvent Listener", current value "7.2"
Filip Krzywkacbd2ded2018-09-25 14:43:18 +020072
73 reserved "InternalHeaderFields"; // "enrichment fields for internal VES Event Listener service use only, not supplied by event sources"
74 reserved 100;
75}