Looking at your outputs.conf, you have configured this search-head to forward any events it gathers back to your indexers:
OutputApp [tcpout:indexers]
OutputApp autoLB = true
OutputApp disabled = false
OutputApp indexAndForward = false
OutputApp server = server1:9997,server2:9997,server3:9997,server4:9997,server5:9997
This is a very good practice in general, particularly if the search-head is doing a lot of summarization jobs, as it will spread the resulting events across your indexers and you will leverage distributed search even when searching against your summary indexes.
The reason why you cannot find any events usually destined to _internal for this search-head has to do with the forwardedindex default settings in $SPLUNK_HOME/etc/system/default/outputs.conf :
OutputApp [tcpout]
(...)
system forwardedindex.0.whitelist = .*
system forwardedindex.1.blacklist = _.*
system forwardedindex.2.whitelist = _audit
system forwardedindex.filter.disable = false
(...)
From outputs.conf.spec:
#----Index Filter Settings.
forwardedindex.<n>.whitelist = <regex>
forwardedindex.<n>.blacklist = <regex>
* These filters determine which events get forwarded, based on the indexes they belong to.
* This is an ordered list of whitelists and blacklists, which together decide if events should be forwarded to an index.
* The order is determined by <n>. <n> must start at 0 and continue with positive integers, in sequence. There cannot be any gaps in the sequence. (For example, forwardedindex.0.whitelist, forwardedindex.1.blacklist, forwardedindex.2.whitelist, ...).
* The filters can start from either whitelist or blacklist. They are tested from forwardedindex.0 to forwardedindex.<max>.
* You should not normally need to change these filters from their default settings in $SPLUNK_HOME/system/default/outputs.conf.
forwardedindex.filter.disable = [true|false]
* If true, disables index filtering. Events for all indexes are then forwarded.
* Defaults to false.
This explanation is actually somewhat incomplete (don't worry, we're getting the spec file fixed in a future release): When events destined to a given index are filtered away from forwarding by a forwardedindex directive they are neither forwarded nor indexed!.
This is why you cannot find any _internal events recorded by your search-head anywhere.
To correct this, add the following configuration to $SPLUNK_HOME/etc/system/local/outputs.conf:
[tcpout]
forwardedindex.3.whitelist = _internal
Note that we are considering to change this default behavior in the future and whitelist _internal for forwarding just like _audit is today.
... View more