Hi, I was wondering if there was a way to exclude an indice from using a mapping template?
For example, I have the following indices:
logstash-firewall-%{DATE}
logstash-beats-%{DATE}
logstash-syslog-%{DATE}
I want to map for logstash-firewall and logstash-syslog, but not for logstash-beats -- I have a separate template for that. My problem is that if I try to use something like logstash-* for the index_pattern for the non-beats indices, and I try to match on the beats indice with an index_pattern of logstash-beats-*, the mappings will be merged. I've tried using order, but that doesn't seem to help.
In the end, my goal is to have the template for logstash-beats to override any mapping for logstash-*.
Any advice would be appreciated.
Thanks,
Cappy