Skip to content

Commit 4a83f2d

Browse files
feat: add event level field on raccoon event request (#189)
1 parent f3c3db6 commit 4a83f2d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

gotocompany/raccoon/v1beta1/raccoon.proto

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,24 @@ message Event {
7373
ingestion systems to distribute or perform other functions.
7474
*/
7575
string type = 2;
76+
/*
77+
`event_name` denotes the name of the event.
78+
Example: "BookingConfirmed", "HomePageLoaded", etc.
79+
*/
80+
string event_name = 3;
81+
/*
82+
`product` denotes the product or business from which the event originates.
83+
Example: "GOFOOD", "GOBIZ", "GOPAY".
84+
*/
85+
string product = 4;
86+
/*
87+
`event_timestamp` denotes the exact time the event occurred
88+
on the client or producer side.
89+
Note:
90+
This is not the time when the event is sent to Raccoon;
91+
that is represented separately by `SendEventRequest.sent_time`.
92+
*/
93+
google.protobuf.Timestamp event_timestamp = 5;
7694
}
7795

7896
/*

0 commit comments

Comments
 (0)