Splunk Search

left join multivalue

sfatnass
Contributor

hi,

i try to use left join to match between two index.

index="myfirst_Index"   

|  rex max_match=0 field=multivalued_field "(.*?)(GET|POST)(?(.*?))$"  

|join type=left URL1  [|search index=mysecond_index  |eval URL1=URL |fields URL1 element1]
| table multivalued_field URL1 element1

when multivalued_field contain only one value the join work fine and i obtain what i need on element1, but when i have multi value no match found.

how can i do to correct my request ?

thx

0 Karma

javiergn
Super Champion

You could try to expand your multivalued field before the join:

index="myfirst_Index"
| rex max_match=0 field=multivalued_field "(.?)(GET|POST)(?(.?))$"
| mvexpand URL1
| join type=left URL1 [|search index=mysecond_index |eval URL1=URL |fields URL1 element1]
| table multivalued_field URL1 element1

Careful when using join though (performance, limits in outputs, etc).
See the following answers:

https://answers.splunk.com/answers/221304/alternatives-to-join-with-two-matching-event-field.html
https://answers.splunk.com/answers/387510/what-are-alternatives-to-using-the-join-command-fo.html
https://answers.splunk.com/answers/129424/how-to-compare-fields-over-multiple-sourcetypes-without-jo...

Thanks,
J

0 Karma

sfatnass
Contributor

your solution not help me really i have to conserve URL1 like multivalue, because i need to get element1 like multivalued field.
otherwise if i use lookup and not index for mysecond_index how can i do?

0 Karma

javiergn
Super Champion

Then use mvexpand first, then join, then back to multivalue by using stats values or something similar.

Or use one of the join alternatives I linked in my previoius answers. It'll be a bit more complicated to implement but it will be faster

0 Karma

sfatnass
Contributor

the request using stats don't work

0 Karma

javiergn
Super Champion

Hi, could you modify your question and include the query between code labels?
Otherwise when you post that it'll trim special HTML characters.

0 Karma
Get Updates on the Splunk Community!

Fall Into Learning with New Splunk Education Courses

Every month, Splunk Education releases new courses to help you branch out, strengthen your data science roots, ...

Super Optimize your Splunk Stats Searches: Unlocking the Power of tstats, TERM, and ...

By Martin Hettervik, Senior Consultant and Team Leader at Accelerate at Iver, Splunk MVPThe stats command is ...

How Splunk Observability Cloud Prevented a Major Payment Crisis in Minutes

Your bank's payment processing system is humming along during a busy afternoon, handling millions in hourly ...