Splunk Search

search same id from different source type and fieldname

diag
New Member

I have same requestid such req123 that belong to different field name( f1 and f2 ) from two sourcetype A and B

I would like to make SPL search like below , how to make it ?

sourceype=A OR sourcetype B | "if f1(requestid)=f2(requestid) | table requestid user city work team .....

Tags (1)
0 Karma

diag
New Member

I don;t know what's eval command I need to here but I like to make SPL like before

sourcetype A , field_a(requestid) field_a2 , field_a3 ,field_a4

sourcetype B, field_b(requestid) field_b2, field_b3, filed_b4

(what kind of eval or join i need to use here ) ?????

where field_a(requestid)=field_b(requestid)

table field_a(requestid) field_b(requestid) field_a3 ,field_a4 ,filed_b4

0 Karma

solarboyz1
Builder

Check out the coalesce function of eval

(sourcetype=A AND f1=) OR (sourcetype=B AMD f2=) | eval requestid=coalesce(f1,f2) | table requestid user city work team .....

0 Karma

solarboyz1
Builder

Corrected text of search:

(sourcetype=A AND f1=*) OR (sourcetype=B AMD f2=*) | eval requestid=coalesce(f1,f2) | table requestid user city work team ..... 
0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...