diff --git a/protofiles/ConfigType.proto b/protofiles/ConfigType.proto index 6699753b6f889..ef9883a64b14b 100644 --- a/protofiles/ConfigType.proto +++ b/protofiles/ConfigType.proto @@ -23,4 +23,5 @@ enum ConfigType { InfluxConfig = 13; EventManagerClientConfig = 14; ColumboClientConfig = 15; + VitalsClientConfig = 16; } diff --git a/protofiles/VitalsClientConfig.proto b/protofiles/VitalsClientConfig.proto new file mode 100644 index 0000000000000..58198828ea352 --- /dev/null +++ b/protofiles/VitalsClientConfig.proto @@ -0,0 +1,9 @@ +package protoMsg; + +option java_package = "com.logrhythm.configelements"; +option java_outer_classname = "VitalsClientConfigMsg"; + +message VitalsClientConfig { + optional string insertInputQueue = 1; + optional string accumulatorQueue = 2; +}