Problem with logstash input kinesis plugin while reading data from the stream

Caught exception while sync'ing Kinesis shards and leases

com.amazonaws.services.kinesis.model.ResourceNotFoundException: Stream aws-xxx-xxx-xxxx-kinesis-xxxxxx under account xxxxxxxxxx not found. (Service: AmazonKinesis; Status Code: 400; Error Code: ResourceNotFoundException;

my conf file content are as below:
input {
kinesis {
region => "XX"
profile => "XX"
kinesis_stream_name => "kinesis-firehose"
add_field => ["type", "kinesistest"]
codec => json { }
}
}

output {
stdout { codec => rubydebug }
if ([@metadata][beat] != "metricbeat" and [@metadata][beat] != "winlogbeat" and [@metadata][beat] != "heartbeat" and [@metadata][beat] != "filebeat" and [type] == "kinesistest") {
elasticsearch {

hosts => '${XXX}'
user => "${XXX}"
password => "${XXX}"
index => "kinesis"

}
}

}

@dadoonet , I saw you commenting on such a post in the past. Any clues?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.