Splunk Search

How to mask the bank balance to be shown in splunk logs?

LBG_Ankit
New Member

Hi,
How can I mask the bank balance in splunk? it is showing something like this:

mybal=2426.88,availableBal=2426.88 and I need to replace numbers with #. Please suggest, I am not good in REGEX.

Thanks in advance.

Tags (2)
0 Karma
1 Solution

493669
Super Champion

try in props.conf:

[<your sourcetypeName>]
SEDCMD-Anon = s/mybal=\d+\.?\d+/mybal=xxxx/g s/availableBal=\d+\.?\d+/availableBal=xxxx/g

For reference https://docs.splunk.com/Documentation/Splunk/latest/Data/Anonymizedata#Anonymize_data_with_a_sed_scr...
Here SEDCMD will mask the data at index time extraction

View solution in original post

0 Karma

493669
Super Champion

try in props.conf:

[<your sourcetypeName>]
SEDCMD-Anon = s/mybal=\d+\.?\d+/mybal=xxxx/g s/availableBal=\d+\.?\d+/availableBal=xxxx/g

For reference https://docs.splunk.com/Documentation/Splunk/latest/Data/Anonymizedata#Anonymize_data_with_a_sed_scr...
Here SEDCMD will mask the data at index time extraction

0 Karma

LBG_Ankit
New Member

thank you it is working....:)

0 Karma

richgalloway
SplunkTrust
SplunkTrust

See the docs at http://docs.splunk.com/Documentation/Splunk/7.1.2/Data/Anonymizedata
A sed string like "s/(\d+.\d\d)/xxxx.xx/g" should work.

---
If this reply helps you, Karma would be appreciated.

LBG_Ankit
New Member

Thanks Rich..it is working for me...:)

0 Karma

somesoni2
Revered Legend

Or s/([bB]al\=)(\d+|\d+\.\d+)/\1##.##.

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...