forked from logrhythm/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request elastic#422 from Paul-Oldenburg/anubis_config
Initial commit of Anubis config
- Loading branch information
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package configelements; | ||
|
||
option java_package = "com.logrhythm.configelements"; | ||
option java_outer_classname = "AnubisClientConfigMsg"; | ||
|
||
message AnubisClientConfig { | ||
|
||
optional string msgQueue = 1; | ||
optional string ackidQueue = 2; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package configelements; | ||
|
||
option java_package = "com.logrhythm.configelements"; | ||
option java_outer_classname = "AnubisConfigMsg"; | ||
|
||
message AnubisConfig { | ||
|
||
message GigawattDBConfig { | ||
optional string name = 1; | ||
optional uint64 batchLimBytes = 2; | ||
optional int32 batchLimRows = 3; | ||
optional int32 dbMaxRows = 4; | ||
} | ||
|
||
message RelayConfig { | ||
optional string mediatorQueue = 1; | ||
optional int32 mediatorQueueSize = 2; | ||
optional int32 timeoutAutoSendMs = 3; | ||
optional int32 timeoutReceiveMs = 4; | ||
} | ||
|
||
message BiffConfig { | ||
optional string ackidQueue = 1; | ||
optional int32 ackidQueueSize = 2; | ||
} | ||
|
||
message MessageRetryConfig { | ||
optional int32 tryIntervalSecs = 1; | ||
optional int32 ageForOldSecs = 2; | ||
} | ||
|
||
optional GigawattDBConfig gigawattDBConfig= 1; | ||
optional RelayConfig relayConfig = 2; | ||
optional BiffConfig biffConfig = 3; | ||
optional MessageRetryConfig messageRetryConfig = 4; | ||
|
||
} |