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
+2
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,8 @@ Use the below schema to configure Splunk Connect for Kafka
149
149
|`splunk.hec.ssl.trust.store.path`| Location of Java KeyStore. |`""`|
150
150
|`splunk.hec.ssl.trust.store.password`| Password for Java KeyStore. |`""`|
151
151
|`splunk.hec.json.event.formatted`| Set to `true` for events that are already in HEC format. Valid settings are `true` or `false`. |`false`|
152
+
|`splunk.hec.max.outstanding.events`| Maximum amount of un-acknowledged events kept in memory by connector. Will trigger back-pressure event to slow down collection if reached. |`1000000`|
153
+
|`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`|
log.info("handled {} failed batches with {} events", failed.size(), failedEvents);
143
145
if (failedEvents * 10 > connectorConfig.maxOutstandingEvents) {
144
-
Stringmsg = String.format("failed events reach 10 %% of max outstanding events %d, pause the pull for a while", connectorConfig.maxOutstandingEvents);
146
+
Stringmsg = String.format("failed events have reached 10 %% of max outstanding events %d, pausing the pull of events for a while", connectorConfig.maxOutstandingEvents);
0 commit comments