You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Message format. For detailed explanation, see https://github.com/wizecore/graylog2-output-syslog",
222
254
ConfigurationField.Optional.NOT_OPTIONAL)
223
255
);
224
256
225
-
226
257
configurationRequest.addField(newTextField("maxlen", "Maximum message length", "", "Maximum message (body) length. Longer messages will be truncated. If not specified defaults to 16384 bytes.", ConfigurationField.Optional.OPTIONAL));
258
+
259
+
configurationRequest.addField(newTextField("keystore", "Key store", "", "Path to Java keystore (required for SSL over TCP). Must contain private key and cert for this client.", ConfigurationField.Optional.OPTIONAL));
260
+
configurationRequest.addField(newTextField("keystorePassword", "Key store password", "", "", ConfigurationField.Optional.OPTIONAL));
261
+
262
+
configurationRequest.addField(newTextField("truststore", "Trust store", "", "Path to Java keystore (required for SSL over TCP). Optional (if not set, equals to key store). Must contain peers we trust connecting to.", ConfigurationField.Optional.OPTIONAL));
263
+
configurationRequest.addField(newTextField("truststorePassword", "Trust store password", "", "", ConfigurationField.Optional.OPTIONAL));
0 commit comments