I have a splunk UF on a Linux server. (4.3.6)
I want to send the local log files to 2 separate splunk instances, so both get a copy of the exact same data. (not autoLB across 2, not send different data to each one)
how can I do this from a UF?
Outputs.conf has two groups defined called Location1 and Location2
like this
1)specify multiple groups:
[monitor:///app/logs/work/*]
_TCP_ROUTING=Location1;Location2
index = test1
sourcetype = work
2) repeat same monitor stanza:
[monitor:///app/logs/work/*]
_TCP_ROUTING=Location1
index = test1
sourcetype = work
[monitor:///app/logs/work/*]
_TCP_ROUTING=Location2
index = test1
sourcetype = work
3) I though of using indexAndForward but I don’t want any transforms/props to take place from say Location1 before it sends to Location2, and I don’t really want Location 1 to be a dependency for Location2.
Advice please
... View more