<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to join multiple events based on one common value with different filters? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557192#M158252</link>
    <description>&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval _raw="2021-06-19 04:18:56.975 \"TELEGRAMID=[42], PIC=[78379], AlibiID=[00020210619041750108444], HostPIC=[&amp;lt;Null!&amp;gt;], HostData=[&amp;lt;Null!&amp;gt;], OriginalDestination=[51], OriginalDestinationState=[1], LastDestination=[51], LastDestinationState=[1], ActualDestination=[51], DestinationTranslateState=[1], AltDestination1=[0], AltDestination2=[0], AltDestination3=[0], AltDestination4=[0], AltDestination5=[0], BarcodeScannerDataState=[6], BarcodeScannerData=[00008851780400826944], EntrancePoint=[0050.11.01], EntranceState=[1], ExitPoint=[0050.32.19], ExitState=[1], BarcodeScannerId=[501], FixedWindow=[115], NumberOfWindows=[1], Length=[478], Width=[368], CircleCounter=[0], Height=[0], ParcelBlockedStatus=[0], DivertFailedReason=[0]\""
| rex "OriginalDestination=\[(?&amp;lt;OriginalDestination&amp;gt;[^\]]+)"
| rex "OriginalDestinationState=\[(?&amp;lt;OriginalDestinationState&amp;gt;[^\]]+)"
| rex "EntrancePoint=\[(?&amp;lt;EntrancePoint&amp;gt;[^\]]+)"
| rex "EntranceState=\[(?&amp;lt;EntranceState&amp;gt;[^\]]+)"
| rex "ExitPoint=\[(?&amp;lt;Chute&amp;gt;[^\]]+)"
| rex "ExitState=\[(?&amp;lt;ExitState&amp;gt;[^\]]+)"
| rex "BarcodeScannerId=\[(?&amp;lt;BarcodeScanner&amp;gt;[^\]]+)"
| rex "BarcodeScannerDataState=\[(?&amp;lt;BarcodeScannerDataState&amp;gt;[^\]]+)"
| rex "BarcodeScannerData=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"
| rex "Length=\[(?&amp;lt;Length&amp;gt;[^\]]+)"
| rex "Width=\[(?&amp;lt;Width&amp;gt;[^\]]+)"
| rex "Height=\[(?&amp;lt;Height&amp;gt;[^\]]+)"
| append
    [| makeresults 
    | eval _raw="2021-06-19 04:18:57.005 \"TELEGRAMID=[CONTAINERSTATUS], LpnNumber=[00008851780400826944], ContainerState=[DIVERTED], Divert=[PALLETIZE], ReasonCode=[DS], ActualWeight=[&amp;lt;Null!&amp;gt;], LocationBarcode=[6302000000], WcsLocation=[6300051], PalletId=[12640000010000289912], TaskId=[&amp;lt;Null!&amp;gt;], ScannerId=[51], MsgDbId=[564761760]\""
    | rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"
    | rex "PalletId=\[(?&amp;lt;ChuteHolder&amp;gt;[^\]]+)"
    | rex "LpnNumber=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"
    | rex "WcsLocation=\[(?&amp;lt;WcsLocation&amp;gt;[^\]]+)"
    | rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"]
| stats values(*) as * by LPN&lt;/LI-CODE&gt;&lt;P&gt;PalletId appears to have been extracted as ChuteHolder in your original post. Which columns have no data?&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jun 2021 13:07:32 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2021-06-25T13:07:32Z</dc:date>
    <item>
      <title>How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557131#M158217</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;SPAN&gt;I've written a query query below which joins 2 different event types from same source with different filters.&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="100%"&gt;source="C:\\Logs\\*" host="myHost" index="dumpchutes" "TELEGRAMID=[42]" "LastDestination=[51]"&lt;BR /&gt;| rex "OriginalDestination=\[(?&amp;lt;OriginalDestination&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "OriginalDestinationState=\[(?&amp;lt;OriginalDestinationState&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "EntrancePoint=\[(?&amp;lt;EntrancePoint&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "EntranceState=\[(?&amp;lt;EntranceState&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "ExitPoint=\[(?&amp;lt;Chute&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "ExitState=\[(?&amp;lt;ExitState&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "BarcodeScannerId=\[(?&amp;lt;BarcodeScanner&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "BarcodeScannerDataState=\[(?&amp;lt;BarcodeScannerDataState&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "BarcodeScannerData=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "Length=\[(?&amp;lt;Length&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "Width=\[(?&amp;lt;Width&amp;gt;[^\]]+)"&lt;BR /&gt;| rex "Height=\[(?&amp;lt;Height&amp;gt;[^\]]+)"&lt;BR /&gt;| join LPN&lt;BR /&gt;[ search index="dumpchutes" source="C:\\Logs\\*" "TELEGRAMID=[CONTAINERSTATUS]" "ContainerState=[DIVERTED]" "Divert=[PALLETIZE]" "ReasonCode=[DS]"&lt;BR /&gt;|rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"&lt;BR /&gt;|rex "PalletId=\[(?&amp;lt;ChuteHolder&amp;gt;[^\]]+)"&lt;BR /&gt;|rex "LpnNumber=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"&lt;BR /&gt;|rex "WcsLocation=\[(?&amp;lt;WcsLocation&amp;gt;[^\]]+)"&lt;BR /&gt;|rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"&lt;BR /&gt;]&lt;BR /&gt;|table _time Chute ChuteHolder LPN Length Width Height | dedup LPN&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having a number of issues here:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Using joins is too slow .&lt;/LI&gt;&lt;LI&gt;is there another way instead of using join?&lt;/LI&gt;&lt;LI&gt;is it better to save this both searches into 2 tables and then join them in the search part?&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Fri, 25 Jun 2021 07:40:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557131#M158217</guid>
      <dc:creator>Sentira</dc:creator>
      <dc:date>2021-06-25T07:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557143#M158222</link>
      <description>&lt;LI-CODE lang="markup"&gt;source="C:\\Logs\\*" host="myHost" index="dumpchutes" "TELEGRAMID=[42]" "LastDestination=[51]"
| rex "OriginalDestination=\[(?&amp;lt;OriginalDestination&amp;gt;[^\]]+)"
| rex "OriginalDestinationState=\[(?&amp;lt;OriginalDestinationState&amp;gt;[^\]]+)"
| rex "EntrancePoint=\[(?&amp;lt;EntrancePoint&amp;gt;[^\]]+)"
| rex "EntranceState=\[(?&amp;lt;EntranceState&amp;gt;[^\]]+)"
| rex "ExitPoint=\[(?&amp;lt;Chute&amp;gt;[^\]]+)"
| rex "ExitState=\[(?&amp;lt;ExitState&amp;gt;[^\]]+)"
| rex "BarcodeScannerId=\[(?&amp;lt;BarcodeScanner&amp;gt;[^\]]+)"
| rex "BarcodeScannerDataState=\[(?&amp;lt;BarcodeScannerDataState&amp;gt;[^\]]+)"
| rex "BarcodeScannerData=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"
| rex "Length=\[(?&amp;lt;Length&amp;gt;[^\]]+)"
| rex "Width=\[(?&amp;lt;Width&amp;gt;[^\]]+)"
| rex "Height=\[(?&amp;lt;Height&amp;gt;[^\]]+)"
| dedup LPN
| table _time Chute LPN Length Width Height
| append
[ search index="dumpchutes" source="C:\\Logs\\*" "TELEGRAMID=[CONTAINERSTATUS]" "ContainerState=[DIVERTED]" "Divert=[PALLETIZE]" "ReasonCode=[DS]"
|rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"
|rex "PalletId=\[(?&amp;lt;ChuteHolder&amp;gt;[^\]]+)"
|rex "LpnNumber=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"
|rex "WcsLocation=\[(?&amp;lt;WcsLocation&amp;gt;[^\]]+)"
|rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"
|table ChuteHolder LPN | dedup LPN
]
| stats values(*) as * by LPN&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 25 Jun 2021 08:50:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557143#M158222</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-25T08:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557160#M158236</link>
      <description>&lt;P&gt;Thank you, but is not working for me.&amp;nbsp; My goal is to create the following view. 1 to many relation.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="141"&gt;&lt;P&gt;Timestamp&lt;/P&gt;&lt;/TD&gt;&lt;TD width="73"&gt;&lt;P&gt;Dump Holder&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;Dump Chute&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;Pallet group&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;Deactivated reason&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;Number of Parcel&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="141"&gt;&lt;P&gt;2021-06-18 21:05:45&lt;/P&gt;&lt;/TD&gt;&lt;TD width="73"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;Full&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="141"&gt;&lt;P&gt;2021-06-18 21:06:45&lt;/P&gt;&lt;/TD&gt;&lt;TD width="73"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;Full&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;6&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="141"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="73"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="141"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="73"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="141"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="73"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="103"&gt;&lt;P&gt;Dump Holder&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;Parcel Parcode&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;Length&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;Width&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;Height&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;Parcel Type&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="103"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;0111235&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;478&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;368&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;100&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;Standard&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="103"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;0111236&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;35&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;19&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;Env&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="103"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;0111237&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;61&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;36&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;Env&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="103"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;..&lt;/P&gt;&lt;/TD&gt;&lt;TD width="102"&gt;&lt;P&gt;..&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;..&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;..&lt;/P&gt;&lt;/TD&gt;&lt;TD width="91"&gt;&lt;P&gt;..&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 10:12:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557160#M158236</guid>
      <dc:creator>Sentira</dc:creator>
      <dc:date>2021-06-25T10:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557164#M158240</link>
      <description>&lt;P&gt;Which part of it is not working for you? Not all the fields in your goal match those in your search. Perhaps you can share some anonymised events from your sources?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 10:23:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557164#M158240</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-25T10:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557179#M158246</link>
      <description>&lt;P&gt;I have use your solution but I got Columns without data.&amp;nbsp; When first an row is selected from table 1 then I want to show all data in the second table below.&amp;nbsp;PalletId is missing in first event and to get this i linked them by LpnNumber from second event and&amp;nbsp;BarcodeScannerData from first event.&amp;nbsp;&lt;BR /&gt;Once this done, I will join this overview with another 2 Tables later (it is not defined here yet)&lt;BR /&gt;&lt;BR /&gt;Please see 2 example events. first event is for&amp;nbsp;TELEGRAMID=[42] and second is for&amp;nbsp;TELEGRAMID=[CONTAINERSTATUS].&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="100%"&gt;2021-06-19 04:18:56.975 "TELEGRAMID=[42], PIC=[78379], AlibiID=[00020210619041750108444], HostPIC=[&amp;lt;Null!&amp;gt;], HostData=[&amp;lt;Null!&amp;gt;], OriginalDestination=[51], OriginalDestinationState=[1], LastDestination=[51], LastDestinationState=[1], ActualDestination=[51], DestinationTranslateState=[1], AltDestination1=[0], AltDestination2=[0], AltDestination3=[0], AltDestination4=[0], AltDestination5=[0], BarcodeScannerDataState=[6], BarcodeScannerData=[00008851780400826944], EntrancePoint=[0050.11.01], EntranceState=[1], ExitPoint=[0050.32.19], ExitState=[1], BarcodeScannerId=[501], FixedWindow=[115], NumberOfWindows=[1], Length=[478], Width=[368], CircleCounter=[0], Height=[0], ParcelBlockedStatus=[0], DivertFailedReason=[0]"&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="100%"&gt;2021-06-19 04:18:57.005 "TELEGRAMID=[CONTAINERSTATUS], LpnNumber=[00008851780400826944], ContainerState=[DIVERTED], Divert=[PALLETIZE], ReasonCode=[DS], ActualWeight=[&amp;lt;Null!&amp;gt;], LocationBarcode=[6302000000], WcsLocation=[6300051], PalletId=[12640000010000289912], TaskId=[&amp;lt;Null!&amp;gt;], ScannerId=[51], MsgDbId=[564761760]"&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 25 Jun 2021 11:17:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557179#M158246</guid>
      <dc:creator>Sentira</dc:creator>
      <dc:date>2021-06-25T11:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557184#M158249</link>
      <description>&lt;P&gt;See if you can avoid join by getting LPN1 and LPN2 and coalescing them.&amp;nbsp; Then do a stats to get the values needed.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;source="C:\\Logs\\*" host="myHost" index="dumpchutes" ("TELEGRAMID=[42]" "LastDestination=[51]") OR ("TELEGRAMID=[CONTAINERSTATUS]" "ContainerState=[DIVERTED]" "Divert=[PALLETIZE]" "ReasonCode=[DS]")
| rex "OriginalDestination=\[(?&amp;lt;OriginalDestination&amp;gt;[^\]]+)"
| rex "OriginalDestinationState=\[(?&amp;lt;OriginalDestinationState&amp;gt;[^\]]+)"
| rex "EntrancePoint=\[(?&amp;lt;EntrancePoint&amp;gt;[^\]]+)"
| rex "EntranceState=\[(?&amp;lt;EntranceState&amp;gt;[^\]]+)"
| rex "ExitPoint=\[(?&amp;lt;Chute&amp;gt;[^\]]+)"
| rex "ExitState=\[(?&amp;lt;ExitState&amp;gt;[^\]]+)"
| rex "BarcodeScannerId=\[(?&amp;lt;BarcodeScanner&amp;gt;[^\]]+)"
| rex "BarcodeScannerDataState=\[(?&amp;lt;BarcodeScannerDataState&amp;gt;[^\]]+)"
| rex "BarcodeScannerData=\[(?&amp;lt;LPN1&amp;gt;[^\]]+)"
| rex "Length=\[(?&amp;lt;Length&amp;gt;[^\]]+)"
| rex "Width=\[(?&amp;lt;Width&amp;gt;[^\]]+)"
| rex "Height=\[(?&amp;lt;Height&amp;gt;[^\]]+)"
| rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"
| rex "PalletId=\[(?&amp;lt;ChuteHolder&amp;gt;[^\]]+)"
| rex "LpnNumber=\[(?&amp;lt;LPN2&amp;gt;[^\]]+)"
| rex "WcsLocation=\[(?&amp;lt;WcsLocation&amp;gt;[^\]]+)"
| rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"
| eval LPN=coalesce(LPN1,LPN2)
| stats values(*) as * by LPN&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 25 Jun 2021 12:20:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557184#M158249</guid>
      <dc:creator>jijulukose</dc:creator>
      <dc:date>2021-06-25T12:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557192#M158252</link>
      <description>&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval _raw="2021-06-19 04:18:56.975 \"TELEGRAMID=[42], PIC=[78379], AlibiID=[00020210619041750108444], HostPIC=[&amp;lt;Null!&amp;gt;], HostData=[&amp;lt;Null!&amp;gt;], OriginalDestination=[51], OriginalDestinationState=[1], LastDestination=[51], LastDestinationState=[1], ActualDestination=[51], DestinationTranslateState=[1], AltDestination1=[0], AltDestination2=[0], AltDestination3=[0], AltDestination4=[0], AltDestination5=[0], BarcodeScannerDataState=[6], BarcodeScannerData=[00008851780400826944], EntrancePoint=[0050.11.01], EntranceState=[1], ExitPoint=[0050.32.19], ExitState=[1], BarcodeScannerId=[501], FixedWindow=[115], NumberOfWindows=[1], Length=[478], Width=[368], CircleCounter=[0], Height=[0], ParcelBlockedStatus=[0], DivertFailedReason=[0]\""
| rex "OriginalDestination=\[(?&amp;lt;OriginalDestination&amp;gt;[^\]]+)"
| rex "OriginalDestinationState=\[(?&amp;lt;OriginalDestinationState&amp;gt;[^\]]+)"
| rex "EntrancePoint=\[(?&amp;lt;EntrancePoint&amp;gt;[^\]]+)"
| rex "EntranceState=\[(?&amp;lt;EntranceState&amp;gt;[^\]]+)"
| rex "ExitPoint=\[(?&amp;lt;Chute&amp;gt;[^\]]+)"
| rex "ExitState=\[(?&amp;lt;ExitState&amp;gt;[^\]]+)"
| rex "BarcodeScannerId=\[(?&amp;lt;BarcodeScanner&amp;gt;[^\]]+)"
| rex "BarcodeScannerDataState=\[(?&amp;lt;BarcodeScannerDataState&amp;gt;[^\]]+)"
| rex "BarcodeScannerData=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"
| rex "Length=\[(?&amp;lt;Length&amp;gt;[^\]]+)"
| rex "Width=\[(?&amp;lt;Width&amp;gt;[^\]]+)"
| rex "Height=\[(?&amp;lt;Height&amp;gt;[^\]]+)"
| append
    [| makeresults 
    | eval _raw="2021-06-19 04:18:57.005 \"TELEGRAMID=[CONTAINERSTATUS], LpnNumber=[00008851780400826944], ContainerState=[DIVERTED], Divert=[PALLETIZE], ReasonCode=[DS], ActualWeight=[&amp;lt;Null!&amp;gt;], LocationBarcode=[6302000000], WcsLocation=[6300051], PalletId=[12640000010000289912], TaskId=[&amp;lt;Null!&amp;gt;], ScannerId=[51], MsgDbId=[564761760]\""
    | rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"
    | rex "PalletId=\[(?&amp;lt;ChuteHolder&amp;gt;[^\]]+)"
    | rex "LpnNumber=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"
    | rex "WcsLocation=\[(?&amp;lt;WcsLocation&amp;gt;[^\]]+)"
    | rex "LocationBarcode=\[(?&amp;lt;LocationBarcode&amp;gt;[^\]]+)"]
| stats values(*) as * by LPN&lt;/LI-CODE&gt;&lt;P&gt;PalletId appears to have been extracted as ChuteHolder in your original post. Which columns have no data?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 13:07:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557192#M158252</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-25T13:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557197#M158254</link>
      <description>&lt;P&gt;I miss the following columns. LPN (first row below)&amp;nbsp; &lt;SPAN&gt;00008851780400696790&amp;nbsp;&lt;/SPAN&gt;has data for all columns in events available, but it is not visible here.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sentira_0-1624627412449.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/14821i3677E770674256AA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Sentira_0-1624627412449.png" alt="Sentira_0-1624627412449.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 13:25:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557197#M158254</guid>
      <dc:creator>Sentira</dc:creator>
      <dc:date>2021-06-25T13:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to join multiple events based on one common value with different filters?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557208#M158258</link>
      <description>&lt;P&gt;That would seem to suggest that the rex extract didn't work for these LPNs. Try this to see what you get&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;source="C:\\Logs\\*" host="myHost" index="dumpchutes" "TELEGRAMID=[42]" "LastDestination=[51]" 00008851780400696790
| rex "OriginalDestination=\[(?&amp;lt;OriginalDestination&amp;gt;[^\]]+)"
| rex "OriginalDestinationState=\[(?&amp;lt;OriginalDestinationState&amp;gt;[^\]]+)"
| rex "EntrancePoint=\[(?&amp;lt;EntrancePoint&amp;gt;[^\]]+)"
| rex "EntranceState=\[(?&amp;lt;EntranceState&amp;gt;[^\]]+)"
| rex "ExitPoint=\[(?&amp;lt;Chute&amp;gt;[^\]]+)"
| rex "ExitState=\[(?&amp;lt;ExitState&amp;gt;[^\]]+)"
| rex "BarcodeScannerId=\[(?&amp;lt;BarcodeScanner&amp;gt;[^\]]+)"
| rex "BarcodeScannerDataState=\[(?&amp;lt;BarcodeScannerDataState&amp;gt;[^\]]+)"
| rex "BarcodeScannerData=\[(?&amp;lt;LPN&amp;gt;[^\]]+)"
| rex "Length=\[(?&amp;lt;Length&amp;gt;[^\]]+)"
| rex "Width=\[(?&amp;lt;Width&amp;gt;[^\]]+)"
| rex "Height=\[(?&amp;lt;Height&amp;gt;[^\]]+)"&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 25 Jun 2021 14:17:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-join-multiple-events-based-on-one-common-value-with/m-p/557208#M158258</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-25T14:17:01Z</dc:date>
    </item>
  </channel>
</rss>

