Question
FluentD tail truncating log message
I am using Fluend as a sidecar of a Coldfusion application in Azure AKS. I am facing issues with some log messages getting truncated.
I am using this docker image fluent/fluentd-kubernetes-daemonset:v1.16-debian-elasticsearch8-1.
FluentD configuration:
apiVersion: v1
kind: ConfigMap
metadata:
name: fluentdconf
data:
fluent.conf: |
<source>
@TyPe tail
path /opt/coldfusion/cfusion/logs/*.log
path_key tailed_path
pos_file /var/app/file.log.pos
tag aks.coldfusionlog
max_line_size 50MB
<parse>
@TyPe none
</parse>
</source>
<match aks.coldfusionlog>
@TyPe stdout
</match>