blob: 0f9e5e1fe8d74dc75723403a0812f978a567cac9 [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
23message VesEvent {
24 CommonEventHeader commonEventHeader=1; // required
25
26 bytes eventFields=2; // required, payload
27 // this field contains a domain-specific GPB message
28 // the field being opaque (bytes), the decoding of the payload occurs in a separate step
29 // the name of the GPB message for domain XYZ is XYZFields
30 // e.g. for domain==HVMEAS, the GPB message is HVMEASFields
31}
32
33// VES CommonEventHeader adapted to GPB (Google Protocol Buffers)
34// Aligned with VES 7.0.1 schema, and extending to hvMeas Domain.
35
36message CommonEventHeader
37{
38 string version = 1; // required, "version of the gpb common event header"
39 string domain = 2; // required, "the eventing domain associated with the event", allowed values:
40 // FAULT, HEARTBEAT, MEASUREMENT, MOBILE_FLOW, OTHER, PNFREGISTRATION, SIP_SIGNALING,
41 // STATE_CHANGE, SYSLOG, THRESHOLD_CROSSING_ALERT, VOICE_QUALITY, HVMEAS
42
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"
71 string vesEventListenerVersion = 18; // required, "Version of the VesEvent Listener"
72
73 reserved "InternalHeaderFields"; // "enrichment fields for internal VES Event Listener service use only, not supplied by event sources"
74 reserved 100;
75}