Hi,
I am using ELK GA 5.0.0. I have a logstash instance to pull data from a kafka topic, like below;
kafka{
group_id => "kafkagroupA"
topics => ["kafkatopicA"]
bootstrap_servers => "192.168.0.1:9091,192.168.0.2:9093,192.168.0.3:9092"
codec => json
}
due to some config errors, my logs of past 2 days hasn't entered elasticsearch, but logstash was consuming. Now, I have corrected the config, and logs are coming fine. How can I get the old logs (past 2 days)? It is there in Kafka topic. I cant change the consumer group (group_id
). Is there any way to achieve this?
Thanks in advance.