Hello Support I am getting very close to my answer 2023/10/17 200943 application run finished with error: failed to get config: cannot resolve the configuration: cannot retrieve the configuration: yaml: line 15: did not find expected key: I am using yaml lint so I know my script and config is good it has been validate, I am also using regex 101 with GoLang to validate my regex patterns
filelog:
include: [ /tmp/startServer.log ]
start_at: beginning
operators:
- type: regex_parser
regex: ^\[(?P<time>\d+\/\d+\/\d+ \d{2}\d+\d{2}:\d{3} UTC)\](?P<body>.*)
timestamp:
parse_from: attributes.time
layout: "%Y-%m-%d'T'%H:%M:%S'.'%z"
- type: remove
field: attributes.time
- type: regex_parser
regex: ^(?P<body>.*)
tcplog/docker:
listen_address: "0.0.0.0:2255"
operators:
- type: regex_parser
regex: '(\S+\d+\D+)(S\+\d+\d+)[0-9]\D+\W+\S+([a-z]+\W+\S+\D+)(?P<bod>.*)>.*|(?P<timestamp>\S+)|parseTimestamp(field=timestamp)'
layout: '%Y-%m-%d,%H:%M:%S.%z'
- type: move
from: attributes["body"]
to: body
- type: remove
field: attributes.timestamp