[[older-than]] == --older-than [float] Summary ~~~~~~~ IMPORTANT: This flag only functions within the scope of <> or <>. Filter indices "older than" a given number of <>. The indices must also have a <>. [float] Flags ~~~~~ * `--older-than` Include only indices older than _n_ <> * <> Unit of time to reckon by. Can be one of `hours`, `days`, `weeks`, or `months` * <> http://strftime.org[Python strftime] string to match your index definition. 2014.07.15 would be `%Y.%m.%d` [float] Example ~~~~~~~ Delete hourly Logstash indices older than 48 hours: ----------------------------------------------------------------------------------------------------- curator delete indices --time-unit hours --older-than 48 --timestring '%Y.%m.%d.%H' --prefix logstash -----------------------------------------------------------------------------------------------------