Backfill with previous indexed data

using logstash, is it available ?

input {
  elasticsearch {
    hosts => "localhost"
    index => "logs"
    query => '{ "sort": [ "timeinfo" ] }'
  }
}
filter {
 if [location] == "" {
   // how to get previous data in here?
  }
}

I resolved this issue with Aggregate filter.

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