Skip to content

Commit

Permalink
Merge pull request elastic#436 from Tom-Artale/config-update-anubis-g…
Browse files Browse the repository at this point in the history
…odispatch

In-process creating beans
  • Loading branch information
Tom Artale authored and Tom Artale committed Oct 28, 2015
2 parents 4188ef8 + 8f6b597 commit 59546f3
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
4 changes: 2 additions & 2 deletions protofiles/configelements/AnubisConfig.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ message AnubisConfig {
}

message RelayConfig {
optional string mediatorQueue = 1;
optional int32 mediatorQueueSize = 2;
optional string inputQueue = 1;
optional int32 inputQueueSize = 2;
optional int32 timeoutReceiveMs = 3;
}

Expand Down
4 changes: 2 additions & 2 deletions protofiles/configelements/ConfigType.proto
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ message ConfigTypeMsg {
ClusterNodeConfig = 21;
ElasticSearchServerConfig = 22;
HeartThrobConfig = 23;
AnubisConfig = 24;
// AnubisConfig = 24;
AnubisClientConfig = 25;
GoDispatchConfig = 26;
GoDispatchClientConfig = 27;
// GoDispatchClientConfig = 27;
}
}
13 changes: 13 additions & 0 deletions protofiles/configelements/ux/AnubisClientConfigUX.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package configelements.ux;

import "ConfigUX.proto";

option java_package = "com.logrhythm.configelements.ux";
option java_outer_classname = "AnubisClientConfigUXMsg";

message AnubisClientConfigUX {

optional ConfigUX inputQueue = 1;
optional ConfigUX ackQueue = 2;

}
20 changes: 20 additions & 0 deletions protofiles/configelements/ux/GoDispatchConfigUX.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package configelements.ux;

import "ConfigUX.proto";

option java_package = "com.logrhythm.configelements.ux";
option java_outer_classname = "GoDispatchConfigUXMsg";


message GoDispatchConfigUX {

message Endpoint {
optional ConfigUX queue = 1;
optional ConfigUX queueSize = 2;
}

optional Endpoint inputQueue = 1;
optional ConfigUX receiveLogTimeoutMs = 2;
optional ConfigUX maxInFlightBatches = 3;
optional ConfigUX sendToRecorder = 4;
}

0 comments on commit 59546f3

Please sign in to comment.