Hi
I have this Filebeat configuration :
- input_type: log
# Paths that should be crawled and fetched. Glob based paths.
paths:
- /home/ohk/data/nginx.log
document_type: nginx #line 22
multiline.pattern: ["^(\b(?:\d{1,3}\.){3}\d{1,3}\b)"]
multiline.negate: false
multiline.match: after
#############################################################
paths:
- /home/ohk/data/api.log
document_type: api
multiline.pattern: ["^(INFO in )"]
multiline.negate: false
multiline.match: after
when I try to start my filebeat service I get this error:
Exiting: error loading config file: yaml: line 22: found unknown escape character
I marked line 22 in the example above, and I checked that all indents are spaces only. Do you have any idea about this unknown escape character ?
Thank you in advance,