-
Notifications
You must be signed in to change notification settings - Fork 979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PATH pattern does not combine well with comma delimination #13
Comments
I find that remove all the |
heymatthew
pushed a commit
to catalyst/logstash-patterns-core
that referenced
this issue
Feb 23, 2015
If UNIXPATH is set to using the lazy quantifier, then it stops backtracking correctly when combined with other greedy regexes. This fixes issue logstash-plugins#13
purbon
pushed a commit
that referenced
this issue
Sep 7, 2015
If UNIXPATH is set to using the lazy quantifier, then it stops backtracking correctly when combined with other greedy regexes. This fixes issue #13
Fixed in 06de0c1 |
kares
added a commit
to kares/logstash-patterns-core
that referenced
this issue
Nov 26, 2020
adapted matching behavior (extracted from logstash-plugins#13) NOTE: original fix does not really resolve logstash-plugins#13 06de0c1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a logfile whose lines may include snippets along the line of
a=/some/path, b=some/other/path
. As an ELK user interested in these logs I would like to parse them with LogStash.The logstash configuration:
when given
a=/some/path, b=/some/other/path
LogStash gives the output:I expect b to bind to
some/other/path
:The text was updated successfully, but these errors were encountered: