Everything goes into the default "main" index now.
I'm thinking of moving IIS log events into a new index called "iis" and Windows WMI events into a new index called "wmi".
Other than having to add the "index=" clause to my searches, dashboards, etc. is there any disadvantage to keeping these events in separate indexes?
(The docs indicate the advantages: control user access, accommodate varying retention policies, speed searches in certain situations)
Generally the answer here is "no up to a point". Separate indexes usually make life easier, not harder. If you configure things correctly, you don't even need to specify "index=" - simply define the indexes as "default searched" and it should just work.
Additional indexes are great until you go overboard with it. Each index searched can add some delay to a search. So, if you have 723 indexes you've probably went too far.
Also each index increases the number of open files that splunkd must keep. There is a finite limit here, so you'll need to know when to adjust it.
The number of indexes is pretty much a "Golidlocks" setting - too many is bad, too few is bad. You want to be "just right".
Generally the answer here is "no up to a point". Separate indexes usually make life easier, not harder. If you configure things correctly, you don't even need to specify "index=" - simply define the indexes as "default searched" and it should just work.
Additional indexes are great until you go overboard with it. Each index searched can add some delay to a search. So, if you have 723 indexes you've probably went too far.
Also each index increases the number of open files that splunkd must keep. There is a finite limit here, so you'll need to know when to adjust it.
The number of indexes is pretty much a "Golidlocks" setting - too many is bad, too few is bad. You want to be "just right".
Thanks for the tip about adding the indexes as "default searched" !
The only disadvantage is knowing which indexes you have available. This is easily solvable by adding the indexes to the default search for the appropriate roles, but that's the only downside that I can think of. You've listed some of the advantages already, but it's also important to note that separating indexes allows for greater ease in the scaling of indexing volume across your cluster, if you ever end up needing it.