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
Copy file name to clipboardExpand all lines: README.md
+1
Original file line number
Diff line number
Diff line change
@@ -162,6 +162,7 @@ Use the below schema to configure Splunk Connect for Kafka
162
162
|`splunk.sources`| Splunk event source metadata for Kafka topic data. The same configuration rules as indexes can be applied. If left unconfigured, the default source binds to the HEC token. |`""`|
163
163
|`splunk.sourcetypes`| Splunk event sourcetype metadata for Kafka topic data. The same configuration rules as indexes can be applied here. If left unconfigured, the default sourcetype binds to the HEC token. |`""`|
164
164
|`splunk.flush.window`| The interval in seconds at which the events from kafka connect will be flushed to Splunk. |`30`|
165
+
|`splunk.validation.disable`| Disable validating splunk configurations before creating task. |`false`|
165
166
|`splunk.hec.ssl.validate.certs`| Valid settings are `true` or `false`. Enables or disables HTTPS certification validation. |`true`|
166
167
|`splunk.hec.http.keepalive`| Valid settings are `true` or `false`. Enables or disables HTTP connection keep-alive. |`true`|
167
168
|`splunk.hec.max.http.connection.per.channel`| Controls how many HTTP connections will be created and cached in the HTTP pool for one HEC channel. |`2`|
staticfinalStringMAX_BATCH_SIZE_CONF = "splunk.hec.max.batch.size"; // record count
@@ -128,6 +129,7 @@ public final class SplunkSinkConnectorConfig extends AbstractConfig {
128
129
staticfinalStringSSL_VALIDATE_CERTIFICATES_DOC = "Valid settings are true or false. Enables or disables HTTPS "
129
130
+ "certification validation. By default, this is set to true.";
130
131
staticfinalStringENABLE_COMPRESSSION_DOC = "Valid settings are true or false. Used for enable or disable gzip-compression. By default, this is set to false.";
132
+
staticfinalStringDISABLE_VALIDATION_DOC = "Disable validating splunk configurations before creating task.";
131
133
// Acknowledgement Parameters
132
134
// Use Ack
133
135
staticfinalStringACK_DOC = "Valid settings are true or false. When set to true Splunk Connect for Kafka will "
@@ -218,6 +220,7 @@ public final class SplunkSinkConnectorConfig extends AbstractConfig {
218
220
finalintsocketTimeout;
219
221
finalbooleanvalidateCertificates;
220
222
finalbooleanenableCompression;
223
+
finalbooleandisableValidation;
221
224
finalintlbPollInterval;
222
225
223
226
finalbooleanack;
@@ -304,6 +307,7 @@ public final class SplunkSinkConnectorConfig extends AbstractConfig {
0 commit comments