I find elastcisearch is not creating the index based on the below logstash configuration . have installed netflow-codec through logstash-plugin .
logstash config:
[root@SERVER logstash]# cat /etc/logstash/conf.d/logstash.conf
input {
udp {
host => "6.6.1.8"
port => 7995
codec => netflow {
netflow_definitions => "/usr/share/logstash/vendor/bundle/jruby/1.9/gems/logstash-codec-netflow-3.1.2/lib/logstash/codecs/netflow/netflow.yaml"
versions => [9]
}
type => "netflow"
}
}
output {
stdout { codec => rubydebug }
elasticsearch { hosts => "localhost:9200"
index => "logstash_netflow-aci"
}
}
i am expecting index "logstash_netflow-aci" , but it is not created .
current indexes :
[root@SERVER projects]# curl 'localhost:9200/_cat/indices?v'
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
yellow open filebeat-2016.11.09 HaQPZXwBTAqF9SBw1inHVA 5 1 18 0 50.3kb 50.3kb
yellow open packetbeat-2016.11.09 UNWnQX57SiOvvYDig-wK9Q 5 1 302742 0 72.8mb 72.8mb
yellow open packetbeat-2016.11.04 I6L8v6mnSQSRCKfT1rUgsg 5 1 182967 0 47.4mb 47.4mb
yellow open packetbeat-2016.11.07 FUDGIRt0TtmnAfcazN1VrA 5 1 617096 0 155.1mb 155.1mb
yellow open packetbeat-2016.11.08 21PV_dgZTjuazEMojFhZTQ 5 1 622560 0 155.9mb 155.9mb
yellow open packetbeat-2016.11.06 opa0TFirRCmGShE6dMWxXw 5 1 612271 0 148.5mb 148.5mb
yellow open filebeat-2016.11.05 azluDE6aQHGuMJ0Frp_oOQ 5 1 1820 0 631.9kb 631.9kb
yellow open packetbeat-2016.11.05 sTXOiFcRS_Sx4-fx-9Pyyg 5 1 600593 0 151.3mb 151.3mb
yellow open .kibana IjH7gZFCTRqv_Yrbi0S7ZA 1 1 88 42 160.8kb 160.8kb
any throughts on debug/logs which i can look at it to isolate the issue ?