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: src/main/java/com/splunk/kafka/connect/SplunkSinkConnectorConfig.java
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -146,14 +146,16 @@ public final class SplunkSinkConnectorConfig extends AbstractConfig {
146
146
+ "latency metadata will be indexed along with raw data. This setting only works in "
147
147
+ "conjunction with /event HEC endpoint (\"splunk.hec.raw\" : \"false\"). By default"
148
148
+ ", this is set to false.";
149
-
staticfinalStringHEC_EVENT_FORMATTED_DOC = "Ensures events already formatted correctly for HEC are parsed "
150
-
+ "correctly in the connector, before being sent to Splunk";
149
+
staticfinalStringHEC_EVENT_FORMATTED_DOC = "Ensures events that are pre-formatted into the properly formatted HEC "
150
+
+ "JSON format as per http://dev.splunk.com/view/event-collector/SP-CAAAE6P have meta-data and event data indexed "
151
+
+ "correctly by Splunk.";
151
152
// TBD
152
153
staticfinalStringSSL_TRUSTSTORE_PATH_DOC = "Path on the local disk to the certificate trust store.";
153
154
staticfinalStringSSL_TRUSTSTORE_PASSWORD_DOC = "Password for the trust store.";
154
155
155
156
staticfinalStringHEADER_SUPPORT_DOC = "Setting will enable Kafka Record headers to be used for meta data override";
156
-
staticfinalStringHEADER_CUSTOM_DOC = "Setting will enable look for Record headers with these values and pass them ";
157
+
staticfinalStringHEADER_CUSTOM_DOC = "Setting will enable look for Record headers with these values and add them"
158
+
+ "to each event if present. Custom headers are configured separated by comma for multiple headers. ex, (\"custom_header_1,custom_header_2,custom_header_3\").";
157
159
staticfinalStringHEADER_INDEX_DOC = "Header to use for Splunk Header Index";
158
160
staticfinalStringHEADER_SOURCE_DOC = "Header to use for Splunk Header Source";
159
161
staticfinalStringHEADER_SOURCETYPE_DOC = "Header to use for Splunk Header Sourcetype";
0 commit comments