Logstash cheat sheet: Difference between revisions

Line 334: Line 334:
./bin/plugin install --version=2.0.2 logstash-input-redis
./bin/plugin install --version=2.0.2 logstash-input-redis
</syntaxhighlight>
</syntaxhighlight>
===2015/08/21 LS 1.5.4 のバグ===
:Logstash 1.5.4 で配布されている logstash-input-lumberjack 1.0.4 で、
<pre>
The error reported is:
  uninitialized constant Concurrent::Delay::Executor
</pre>
1.0.5 で fix : https://github.com/ph/logstash-input-lumberjack/commit/a3499b25cb2f03587ce8598c0df70fc80ce9beeb
<syntaxhighlight lang="bash">
cd /opt/logstash
./bin/plugin update --version=1.0.5 logstash-input-lumberjack
</syntaxhighlight>
:もちろん LS 1.5.5 や LS 2.0.0 は大丈夫
===2015/11/06 LS 2.0.0 のバグ===
:jruby concurrent-ruby が 0.9.2 になって
<pre>
RuntimeError: Logstash expects concurrent-ruby version 0.9.1 and version 0.9.2 is installed, please verify this patch: /opt/logstash/vendor/bundle/jruby/1.9/gems/logstash-core-2.0.0-java/lib/logstash/patches/silence_concurrent_ruby_warning.rb
</pre>
[https://github.com/elastic/logstash/commit/972e13d52e103dfaf5f8ab5c33ceb852402cde49 Since concurrent-ruby 0.9.2 this patch isnt necessary. · elastic/logstash@972e13d]
:logstash-input-beats 0.9.5 で FIX


== lightweight shipper ==
== lightweight shipper ==