Hi ,
I am using logstash 5.6.3 and trying to push mysql table data to aws ES service(which is open to My Server . I have followed the following plugin to integrate AWS ES service
But this is not working out i am getting timeout error while sending records to aws ES
configuration file:
output {
amazon_es {
hosts => ["s-XXXXXXXXXXX.es.amazonaws.com"]
region => "us-east-1"
index => "test-migrate"
document_type => "data"
flush_size => 500
}
}
~