-
-
Notifications
You must be signed in to change notification settings - Fork 376
Conversation
Taken from #410 (comment)
Co-Authored-By: Adam Spiers adam@spiers.net
Co-Authored-By: Nicolas Bock nicolasbock@gmail.com
Signed-off-by: Nicolas Bock nicolasbock@gmail.com
Co-Authored-By: Adam Spiers
Co-Authored-By: Nicolas Bock
Signed-off-by: Nicolas Bock
|
This is marked as a Draft, is there anything else you want to do? |
|
It's working but I wanted to give myself a bit more time with it to see if everything is in there. Unfortunately the performance is not great. Loading a 4GiB log file takes upwards of 10 minutes. Fortunately I will test it out today a bit more and then give it or |
| "rabbitmq_log": { | ||
| "regex": { | ||
| "connection": { | ||
|
"pattern" : "^=(? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if the performance issue could be mitigated by tweaking this a bit. For example changing the .+ inside <(? to [^>]+ so that the regexp matching engine doesn't have to do any backtracking. Just a guess, not sure if it will help!