Last active
March 25, 2021 21:05
-
-
Save ryanfaircloth/72c350347932b406937643160dd2398d to your computer and use it in GitHub Desktop.
Splunk High Volume 2s2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This will get used for anything that for some reason skips transforms like hec event such data is cooked and should lb well enough | |
[tcpout] | |
defaultGroup = target-0 | |
#only used by default | |
[target-0] | |
server= idx1, idx2, idx3, idx4 | |
autoLBVolume=20MB | |
#Only used by randomizer | |
[target-1] | |
server= idx1, idx2, idx3, idx4 | |
autoLBVolume=20MB | |
[target-2] | |
server= idx1, idx2, idx3, idx4 | |
autoLBVolume=20MB | |
[target-3] | |
server= idx1, idx2, idx3, idx4 | |
autoLBVolume=20MB | |
[target-4] | |
server= idx1, idx2, idx3, idx4 | |
autoLBVolume=20MB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[default] | |
TRANSFORMS-output-randomizer=transform-random-output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[transform-random-output] | |
REGEX=. | |
DEST_KEY=_TCP_ROUTING | |
INGEST_EVAL = random=random() % 4 | |
FORMAT=target-$random$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment