Skip to content

Commit d686158

Browse files
authored
added separator config documentation (#809)
1 parent 15d8023 commit d686158

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,9 @@ Configure apache tomcat multiline logs using the following steps:
177177

178178
2. Add the multiline filter to your deployment's [logging configmap](https://github.com/splunk/splunk-connect-for-kubernetes/blob/develop/manifests/splunk-kubernetes-logging/configMap.yaml), using the [customFilters](https://github.com/splunk/splunk-connect-for-kubernetes/blob/develop/helm-chart/splunk-connect-for-kubernetes/values.yaml#L440) parameter.
179179

180-
3. Save your changes.
180+
3. Update `separator` config if required. `""` is the default separator.
181+
182+
4. Save your changes.
181183

182184
# Managing SCK Log Ingestion by Using Annotations
183185

helm-chart/splunk-connect-for-kubernetes/charts/splunk-kubernetes-logging/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ charEncodingUtf8: false
177177
# format: "<format_of_the_timestamp>"
178178
# multiline:
179179
# firstline: "<regexp_to_detect_firstline_of_multiline>"
180-
# flushInterval 5
180+
# flushInterval: 5
181+
# separator: ""
181182
# sourcetype: "<sourcetype_of_logs>"
182183
# limitRecentlyModified: <time_duration>
183184
# ```
@@ -226,6 +227,7 @@ charEncodingUtf8: false
226227
# - `firstline`: a Regular Expression used to detect the first line of a multiline log.
227228
# - `endline`: a Regular Expression used to detect the end line of a multiline log.
228229
# - `flushInterval`: The number of seconds after which the last received event log will be flushed, default value: 5.
230+
# - `separator`: The separator of lines. This *only* works for `container` source.
229231
#
230232
# = sourcetype =
231233
# sourcetype of each kind of log can be defined using the `sourcetype` field.

helm-chart/splunk-connect-for-kubernetes/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ splunk-kubernetes-logging:
256256
# format: "<format_of_the_timestamp>"
257257
# multiline:
258258
# firstline: "<regexp_to_detect_firstline_of_multiline>"
259-
# flushInterval 5
259+
# flushInterval: 5
260+
# separator: ""
260261
# sourcetype: "<sourcetype_of_logs>"
261262
# limitRecentlyModified: <time_duration>
262263
# ```
@@ -305,6 +306,7 @@ splunk-kubernetes-logging:
305306
# - `firstline`: a Regular Expression used to detect the first line of a multiline log.
306307
# - `endline`: a Regular Expression used to detect the end line of a multiline log.
307308
# - `flushInterval`: The number of seconds after which the last received event log will be flushed, default value: 5s.
309+
# - `separator`: The separator of lines. This *only* works for `container` source.
308310
#
309311
# = sourcetype =
310312
# sourcetype of each kind of log can be defined using the `sourcetype` field.

0 commit comments

Comments
 (0)