问题:安装插件慢
root@ip-172-31-2-121:/work/opt/logstash# bin/logstash-plugin install logstash-output-kinesis
Validating logstash-output-kinesis
Installing logstash-output-kinesis
WARNING: SSLSocket#session= is not supported


解决:

更换为国内源

[ec2-user@ip-xxx-xxx-xxx-xxx logstash-2.3.0]$ cat Gemfile | grep source  
source "https://rubygems.org"需要将gem source修改为国内的源,  
  
[ec2-user@ip-xxx-xxx-xxx-xxx logstash-2.3.0]$ vim Gemfile  
  
# This is a Logstash generated Gemfile.  
# If you modify this file manually all comments and formatting will be lost.  
  
#source "https://rubygems.org"  
source "https://ruby.taobao.org/"  
......执行