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
@@ -164,6 +164,7 @@ Use the below schema to configure Splunk Connect for Kafka
164
164
|`splunk.hec.max.retries`| Amount of times a failed batch will attempt to resend before dropping events completely. Warning: This will result in data loss, default is `-1` which will retry indefinitely |`-1`|
165
165
|`splunk.hec.backoff.threshhold.seconds`| The amount of time Splunk Connect for Kafka waits to attempt resending after errors from a HEC endpoint." |`60`|
166
166
|`splunk.hec.lb.poll.interval`| Specify this parameter(in seconds) to control the polling interval(increase to do less polling, decrease to do more frequent polling) |`120`|
167
+
|`splunk.hec.enable.compression`| Valid settings are true or false. Used for enable or disable gzip-compression. |`false`|
@@ -108,6 +112,7 @@ public final class SplunkSinkConnectorConfig extends AbstractConfig {
108
112
+ "Socket timeout.By default, this is set to 60 seconds.";
109
113
staticfinalStringSSL_VALIDATE_CERTIFICATES_DOC = "Valid settings are true or false. Enables or disables HTTPS "
110
114
+ "certification validation. By default, this is set to true.";
115
+
staticfinalStringENABLE_COMPRESSSION_DOC = "Valid settings are true or false. Used for enable or disable gzip-compression. By default, this is set to false.";
111
116
// Acknowledgement Parameters
112
117
// Use Ack
113
118
staticfinalStringACK_DOC = "Valid settings are true or false. When set to true Splunk Connect for Kafka will "
@@ -189,6 +194,7 @@ public final class SplunkSinkConnectorConfig extends AbstractConfig {
189
194
finalintnumberOfThreads;
190
195
finalintsocketTimeout;
191
196
finalbooleanvalidateCertificates;
197
+
finalbooleanenableCompression;
192
198
finalintlbPollInterval;
193
199
194
200
finalbooleanack;
@@ -259,6 +265,7 @@ public final class SplunkSinkConnectorConfig extends AbstractConfig {
0 commit comments