Skip to content

Commit

Permalink
Updated protofile for the new types
Browse files Browse the repository at this point in the history
  • Loading branch information
weberr13 committed May 30, 2014
1 parent 607bba8 commit 1a32f35
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions protofiles/LogMessage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,24 @@ message LogMessage {
JSON = 1;
RAW = 2;
}
enum SystemSubtype {
RESTART = 0;
FATAL_ERROR = 1;
UPGRADE = 2;
INDEX_DELETE = 3;
CONFIG_CHANGE = 4;
ADMIN_PASSWD_CHANGE = 5;
USER_ADD = 6;
USER_DEL = 7;
PCAP_DOWNLOAD = 8;
UNKNOWN = 9;
}

optional LogType outputType = 1;
repeated SourceType inputType = 2;
repeated string inputData = 3;
repeated SystemSubtype systemSubType = 4;
repeated string eventName = 5;
}


0 comments on commit 1a32f35

Please sign in to comment.