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
Logstash version (e.g. bin/logstash --version) any
Logstash installation source (e.g. built from source, with a package manager: DEB/RPM, expanded from tar or zip archive, docker)
How is Logstash being run (e.g. as a service/service manager: systemd, upstart, etc. Via command line, docker/kubernetes)
Plugins installed: (bin/logstash-plugin list --verbose)
JVM (e.g. java -version):
If the affected version of Logstash is 7.9 (or earlier), or if it is NOT using the bundled JDK or using the 'no-jdk' version in 7.10 (or higher), please provide the following information:
JVM version (java -version)
JVM installation source (e.g. from the Operating System's package manager, from source, etc).
Value of the LS_JAVA_HOME environment variable if set.
OS version (uname -a if on a Unix-like system):
Description of the problem including expected versus actual behavior:
When BufferedTokenizer is used to dice the input, after a buffer full error, the input should be consumed till next separator and start correctly with the data after that separator
Logstash information:
Please include the following information:
bin/logstash --version) anyPlugins installed: (
bin/logstash-plugin list --verbose)JVM (e.g.
java -version):If the affected version of Logstash is 7.9 (or earlier), or if it is NOT using the bundled JDK or using the 'no-jdk' version in 7.10 (or higher), please provide the following information:
java -version)LS_JAVA_HOMEenvironment variable if set.OS version (
uname -aif on a Unix-like system):Description of the problem including expected versus actual behavior:
When BufferedTokenizer is used to dice the input, after a buffer full error, the input should be consumed till next separator and start correctly with the data after that separator
Steps to reproduce:
Mostly inspired by logstash-plugins/logstash-codec-json_lines#45 (comment)
bin/logstash-plugin install --no-verifyProvide logs (if relevant):
Logstash generates 3 ebents:
Instead of 2, one with the
_jsonparsetoobigfailureerror for the message made ofaand then a valid withbs.The extended motivation is explained in logstash-plugins/logstash-codec-json_lines#45 (comment)