grpc updated and dixed exception events to working order
This commit is contained in:
parent
84ff1f4275
commit
6b8857328e
3 changed files with 14 additions and 8 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue