Hi!
I'm currently adding rollup jobs where filtering isn't an option. I have various cases, some would be a simple match for one field (I'd monitor the count), others would require bucketing, cardinality and a final sum aggregation on those. The extent of Elasticsearch's capability and built-in features always amazes me and I learn a new thing every week. Today I stumbled upon filtered aliases. As far as I got it seems, that - without adding an extra tool (e.g., Curator plugin) to the stack - I can't add a "view" for a daily index. I don't want to apply the view for all indices because that'd be a huge waste of resources (one index ~150GB).
The question would be if there's a way in Elasticsearch to automatically add a filtered alias to daily indices?
Thank you!