- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hey,
I am running a local instance of splunk for testing purposes. The aim is toAnonymize certain parts of the data that can be searched.
In my files there were no props.conf or transforms.conf so I created these two files in this folder
'C:\Program Files\Splunk\etc\system\local'
The data I am looking to anonymize is simple
testfield: 123
- Either by removing it completely or removing the unit.
If anyone could help with what exactly should go in the transforms.conf and the props.conf files that would be greatly appreciated.
Thank you,
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Assuming you want to anonymize the '123' in your test data, you could use the following configuration:
props.conf
[your_sourcetype]
TRANSFORMS-anonymize = testdata_anonymizer
transforms.conf
[testdata_anonymizer]
REGEX = (?m)^testfield:\s+(.*)$
FORMAT = testfield:\sxxxx
DEST_KEY = _raw
This will strip all off your event after the 'testfield: ' string, and replace it with 'xxxx'
If you want to keep some of the data, you have to modify the regex accordingly.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Assuming you want to anonymize the '123' in your test data, you could use the following configuration:
props.conf
[your_sourcetype]
TRANSFORMS-anonymize = testdata_anonymizer
transforms.conf
[testdata_anonymizer]
REGEX = (?m)^testfield:\s+(.*)$
FORMAT = testfield:\sxxxx
DEST_KEY = _raw
This will strip all off your event after the 'testfield: ' string, and replace it with 'xxxx'
If you want to keep some of the data, you have to modify the regex accordingly.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thank you very much! It worked! It removed all of the other data and just left
testfield:\sxxxx
So I will try figure out some way of modifying the regex to just Anoymize the testfield, but thank you so much for your helpful comment 🙂
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Sir,
Are you able to modify the regex to replace only 123 data . not all other fields in the even. IF yes Could you please provide the regex. Thanks in advance for your help .
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

You can modify the regex to capture only the next three digits after 'testfield:' this way:
REGEX = (?m)testfield:\s+(\d{3})
FORMAT = testfield:\sxxxx
This will capture any string 'testfield:' followed by a space and three digits.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

This Splunk doc should get you started.
http://docs.splunk.com/Documentation/Splunk/6.2.8/Data/Anonymizedatausingconfigurationfiles
