For reading from all UFs, enabling listen on 9997 will suffice.
Inputs.conf
[splunktcp:9997]
For outputs.conf to send it to indexers and aswell as to 3rd party (3rd party meaning non splunk instance..correct??)
outputs.conf
[tcpout]
defaultGroup = default-autolb-group , thridparty_group
#Splunk indexers
[tcpout:default-autolb-group]
server = idx1:9997,idx2:9997,idx3:9997
autoLB = true
#send to 3rd party (non splunk instances)
[tcpout:thridparty_group]
server = ip1:port, ip2:port
autoLB = true
sendCookedData = false
P.S: sendCookedData = false will send the raw events and untouched prior to sending
... View more