Hi, I have 2 input files. access and error nginx log files. in one of them I need just specific lines.
I thought this might work but it doesn't.
paths:
- /var/log/nginx/myapp-access.log
fields: {log_type: myapp-media}
path:
- /var/log/nginx/myapp-error.log
fields: {log_type: myapp-media-error}
include_lines: ['dl-apk']
The include_lines: ['dl-apk']
seems to apply for both of input files, not only for the second one.
How should I config this ?
Thanx