You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PUT requests in AWS S3 access logs may include a hyphen in place of an IP address, so the %{IP:aws.s3access.remote_ip} grok pattern for the message field defined in filebeat-7.13.3-aws-s3access-pipeline results in the following error: “Provided Grok expressions do not match field value”.
Modifying the pattern to (?:-|%{IP:aws.s3access.remote_ip}) resolves the issue.
PUT requests in AWS S3 access logs may include a hyphen in place of an IP address, so the
%{IP:aws.s3access.remote_ip}
grok pattern for themessage
field defined infilebeat-7.13.3-aws-s3access-pipeline
results in the following error: “Provided Grok expressions do not match field value”.Modifying the pattern to
(?:-|%{IP:aws.s3access.remote_ip})
resolves the issue.The text was updated successfully, but these errors were encountered: