I'm trying to ship tomcat access logs using filebeat. The problem is that filebeat doesn't read log messages. I've tested many things and finally found out the problem is caused by the files suffix!!!
- type: log
enabled: true
paths:
- C:\foo\bar\localhost_access_log.2018-04-30.txt
When I change the suffix to .log filebeat ships messages. I know this sounds silly but really what is happen!!!
Any thoughts?