grpc updated and dixed exception events to working order

This commit is contained in:
bharnden 2019-03-19 21:26:06 -07:00
parent 84ff1f4275
commit 6b8857328e
3 changed files with 14 additions and 8 deletions

View file

@ -257,9 +257,9 @@ message ExceptionEventsRequest {
message ExceptionEvent {
int32 node = 1;
int32 session = 2;
string level = 3;
ExceptionLevel level = 3;
string source = 4;
float date = 5;
string date = 5;
string text = 6;
string opaque = 7;
}
@ -661,6 +661,14 @@ enum MobilityAction {
MOBILITY_STOP = 2;
}
enum ExceptionLevel {
EXCEPTION_DEFAULT = 0;
FATAL = 1;
ERROR = 2;
WARNING = 3;
NOTICE = 4;
}
message Hook {
SessionState state = 1;
string file = 2;