João Duarte
João Duarte
we're seeing this also in logstash in many places (e.g. https://travis-ci.org/logstash-plugins/logstash-patterns-core/jobs/265018856#L440-L451) , the easiest way to reproduce is: ``` /tmp/jars_deps % ruby -v jruby 9.1.10.0 (2.3.3) 2017-05-25 b09c48a Java HotSpot(TM)...
Here's another interesting trigger, not sure if the issue is exactly the same: ```ruby class A; attr_reader :id end puts A.new.object_id.inspect ``` ``` ❯ JRUBY_OPTS="-Xreify.classes=true" ./vendor/jruby/bin/jruby -v jruby 9.4.6.0 (3.1.4)...
this need is being tracked here: https://github.com/elastic/logstash/issues/8662 it should be documented on the main logstash documentation and linked to from this plugin's docs
> @jsvd, what changes should I make to input-snmp and input-snmp-trap settings in https://github.com/elastic/logstash/blame/main/rakelib/plugins-metadata.json? Once we flip the integration to become the default, we should make the individual plugins non...
buildkite test this
I kicked off the exhaustive test suite for this PR here: https://buildkite.com/elastic/logstash-exhaustive-tests-pipeline/builds/497
@roaksoax we need to ensure docker acceptance tests run for this flavor too, which is done by editing https://github.com/elastic/logstash/blob/main/.buildkite/scripts/exhaustive-tests/generate-steps.py#L163 We can see in https://buildkite.com/elastic/logstash-exhaustive-tests-pipeline/builds/497#018fc51a-285f-4bab-80c7-faf981432b4b that wolfi wasn't tested
This is likely a result of ordering on logstash 6+ not being guaranteed when inserting into the queue between inputs and filters+outputs. Proper fix requires synchronization across all threads, essentially...
Should be easy to leverage the converters feature in the csv library. Changing line: ```ruby values = CSV.parse_line(source, :col_sep => @separator, :quote_char => @quote_char) ``` to: ```ruby values = CSV.parse_line(source,...
WRT the initial issue, the example doesn't seem to be wellformed csv: https://csvlint.io/validation/5ae2c74704a9ea0004000048 Also, a csv linter in go only accepts the file with a flag to "try to parse...