Splunk Search

How to Nullified a field

azleeshah
Explorer

Im trying to nullified  data in "status" field  for any value match as "InActive" based on accounttype . Appreciate help on appropriate SPL  Thanks

accounttype                status           count
Human_Account       Active            1333
Human_Account       InActive          106
Generic_Account     Active                50
Service_Account      InActive          540

Labels (1)
0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@azleeshah 

You can eval the field and define logic as per your requirement. Please check below search.

YOUR_SEARCH
| eval status=if(accounttype=="Human_Account" and status="InActive",null(),status)

 

Here, I have nullified status column if account type is Human_Account and status is InActive.

You can change if condition as per your requirement.

My Sample Search :

 

| makeresults | eval _raw="accounttype,status,count
Human_Account,Active,1333
Human_Account,InActive,106
Generic_Account,Active,50
Service_Account,InActive,540" | multikv forceheader=1
|table accounttype                status           count
| rename comment as "Upto now is for sample data only"
| eval status=if(accounttype=="Human_Account" and status="InActive",null(),status)

 

Screenshot 2022-04-12 at 10.08.37 AM.png

 

 

Thanks
KV



If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

View solution in original post

kamlesh_vaghela
SplunkTrust
SplunkTrust

@azleeshah 

You can eval the field and define logic as per your requirement. Please check below search.

YOUR_SEARCH
| eval status=if(accounttype=="Human_Account" and status="InActive",null(),status)

 

Here, I have nullified status column if account type is Human_Account and status is InActive.

You can change if condition as per your requirement.

My Sample Search :

 

| makeresults | eval _raw="accounttype,status,count
Human_Account,Active,1333
Human_Account,InActive,106
Generic_Account,Active,50
Service_Account,InActive,540" | multikv forceheader=1
|table accounttype                status           count
| rename comment as "Upto now is for sample data only"
| eval status=if(accounttype=="Human_Account" and status="InActive",null(),status)

 

Screenshot 2022-04-12 at 10.08.37 AM.png

 

 

Thanks
KV



If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

azleeshah
Explorer

@kamlesh_vaghela  thanks so much sir - the SPL works as intended

0 Karma
Get Updates on the Splunk Community!

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to Officially Supported Splunk ...