add event proto for runtiem

This commit is contained in:
Asim Aslam
2019-12-17 18:17:32 +00:00
parent c2d59c1f4d
commit c61e12d5ee
2 changed files with 117 additions and 44 deletions

View File

@@ -21,6 +21,13 @@ message Service {
map<string,string> metadata = 4;
}
message Event {
string type = 1;
int64 timestamp = 2;
string service = 3;
string version = 4;
}
message CreateOptions {
// command to pass in
repeated string command = 1;