tarun kumar Sharma
tarun kumar Sharma

Reputation: 917

Kinesis read from logstash

How can we implement aws Kinesis to read from logstash ?

Do we have to install the plugins for Kinesis in Logstash on EC2 ?If so how?

Upvotes: 0

Views: 1589

Answers (1)

Raghav
Raghav

Reputation: 511

You need to install logstash-output-kinesis plugin on the logstash server on EC2 instance and then configure the data to be sent to Kinesis

The complete configuration on how to supply authentication, etc are provided on logstash-output-kinesis

The output side of your configuration [in simple case] would then be

output {
  kinesis {
    stream_name => "logs-stream"
    region => "ap-southeast-2"
  }
}

Upvotes: 2

Related Questions