Splunk Search

How to rewrite the id with a type value of 2 to the id value with a type value of 1 for data with the same axid value?

tehong
Explorer

Hi experts,

Could you please advise me about SPL?

Given the data below, I would like to rewrite the id with a type value of 2 to the id value with a type value of 1 for data with the same axid value.

----------------------
axid, id, type
----------------------
0001,abc,1
0001,def,2
0001,ghi,2
0002,jkl,1
0002,mno,2
0002,pqr,2

Expected results follow

----------------------
axid, id, type
----------------------
0001,abc,1
0001,abc,2
0001,abc,2
0002,jkl,1
0002,jkl,2
0002,jkl,2

Thanks in adance!!

Labels (1)
Tags (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| eval type1id=if(type=1,id,null())
| eventstats values(type1id) as id by axid

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| eval type1id=if(type=1,id,null())
| eventstats values(type1id) as id by axid

tehong
Explorer

Perfect Thanks Whisperer!

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

What Is Splunk? Here’s What You Can Do with Splunk

Hey Splunk Community, we know you know Splunk. You likely leverage its unparalleled ability to ingest, index, ...

Level Up Your .conf25: Splunk Arcade Comes to Boston

With .conf25 right around the corner in Boston, there’s a lot to look forward to — inspiring keynotes, ...

Manual Instrumentation with Splunk Observability Cloud: How to Instrument Frontend ...

Although it might seem daunting, as we’ve seen in this series, manual instrumentation can be straightforward ...