Skip to content

Commit cc84007

Browse files
committed
Fix bug causing logs to be collected multiple times
1 parent d9c3c1b commit cc84007

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

charts/templates/configmap.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ data:
3232
{{- if .Values.logging.trackFiles.errorLogs }}
3333
[INPUT]
3434
Name tail
35-
Path {{ .Values.persistence.mountPath }}/Logs/*Error*
35+
Path {{ .Values.persistence.mountPath }}/Logs/*ErrorLog.txt
3636
Read_from_head true
3737
Tag kube.marklogic.logs.error
3838
Path_Key path
@@ -41,7 +41,7 @@ data:
4141
{{- if .Values.logging.trackFiles.accessLogs }}
4242
[INPUT]
4343
Name tail
44-
Path {{ .Values.persistence.mountPath }}/Logs/*Access*
44+
Path {{ .Values.persistence.mountPath }}/Logs/*AccessLog.txt
4545
Read_from_head true
4646
tag kube.marklogic.logs.access
4747
Path_Key path
@@ -50,7 +50,7 @@ data:
5050
{{- if .Values.logging.trackFiles.requestLogs }}
5151
[INPUT]
5252
Name tail
53-
Path {{ .Values.persistence.mountPath }}/Logs/*Request*
53+
Path {{ .Values.persistence.mountPath }}/Logs/*RequestLog.txt
5454
Read_from_head true
5555
tag kube.marklogic.logs.request
5656
Path_Key path

0 commit comments

Comments
 (0)