updates to grpc event streaming, client can now listen to a subset of desired events
This commit is contained in:
parent
47e087b365
commit
47cc20b567
4 changed files with 293 additions and 211 deletions
|
@ -266,6 +266,7 @@ message AddSessionServerResponse {
|
|||
|
||||
message EventsRequest {
|
||||
int32 session_id = 1;
|
||||
repeated EventType.Enum events = 2;
|
||||
}
|
||||
|
||||
message ThroughputsRequest {
|
||||
|
@ -742,6 +743,17 @@ message ServiceFileConfig {
|
|||
string data = 4;
|
||||
}
|
||||
|
||||
message EventType {
|
||||
enum Enum {
|
||||
SESSION = 0;
|
||||
NODE = 1;
|
||||
LINK = 2;
|
||||
CONFIG = 3;
|
||||
EXCEPTION = 4;
|
||||
FILE = 5;
|
||||
}
|
||||
}
|
||||
|
||||
message MessageType {
|
||||
enum Enum {
|
||||
NONE = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue