Getting Data In

Are there any ways to whitelist specific fields from json format logs during data-onboarding?

vincentwhn
Engager

Due to privacy concerns, I would like to modify the _raw content during the data onboarding phase in order to implement a whitelist for JSON fields. Through testing, I found that I can achieve this using SEDCMD. However, SEDCMD applies to the entire sourcetype.

Is there any way to use SEDCMD while applying it only to specific events within same sourcetype?

Labels (1)
Tags (2)
0 Karma

PickleRick
SplunkTrust
SplunkTrust

Don't use regexes to manipulate structured data. It will cause pain sooner or later.

Use a tool which can understand the json structure. If you're on Splunk 10 you can use Edge Processor.

0 Karma

vincentwhn
Engager

I am still using Splunk 9.3.......

Can you share more about Edge Processor? Thanks.

0 Karma

vincentwhn
Engager

Thanks a lot. Will take a look at it.

0 Karma

vjdev
Path Finder

Hello,

Mask using regex , Filter using regex and EVAL can be achievable. 

This can help you lot. 
https://help.splunk.com/en/splunk-cloud-platform/get-started/splunk-validated-architectures/getting-...

  • Mask, redact, remove, or otherwise change raw data before indexing
  • Tag, add, lookup, or otherwise augment raw data before indexing

    Thank You!
0 Karma

vjdev
Path Finder

Hello,

 

Hope below example help for you!

1st Option Transform.

[session-anonymizer]
REGEX = (?m)^(.*)SessionId=\w+(\w{4}[&"].*)$
FORMAT = $1SessionId=########$2
DEST_KEY = _raw

2nd option is Ingest actions.

If both not helpful, explain more about the requirement . 

Thank you!

vincentwhn
Engager

Thanks for your assist.

"Could you share more about Ingest actions?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...