<?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: Multisearch or union for this case in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614876#M213683</link>
    <description>&lt;P&gt;How do you correlate the events with customerName to the events with userId?&lt;/P&gt;&lt;P&gt;There is nothing in your search to suggest that you wanted to do that!&lt;/P&gt;</description>
    <pubDate>Wed, 28 Sep 2022 07:02:39 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2022-09-28T07:02:39Z</dc:date>
    <item>
      <title>Multisearch or union for this case- How to show for 5 user id's?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614702#M213634</link>
      <description>&lt;P&gt;i All&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are query splunk like this :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(index=Prod sourcetype=ProdApp (host=Prod01 OR Prod02) source="/prodlib/SPLID" "Response" ERR-12120)
| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"
| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"
| spath input=my_json output=customerName path=response.login.customerName
| spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode
| dedup customerName
| table customerName,responseCode
| append [search index=Prod sourcetype=ProdApp (host=Prod01 OR Prod02) source="/prodlib/SPLID" "Request")
| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"
| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"
| spath input=my_json output=userId path=data.userId
| dedup userId
| table userId]&lt;/LI-CODE&gt;
&lt;P&gt;I will try to join both source from Request and Response, and result like below attachment :&lt;/P&gt;
&lt;P&gt;My question&amp;nbsp; is, how show for 5 user id's ? (in blue line)&lt;BR /&gt;Because i already try join both sources, the user id shown not related for the customer name (in black line)&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Picture" style="width: 686px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21694iC64A0DA5AE39F4FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 1.PNG" alt="Picture" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Picture&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 14:13:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614702#M213634</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-27T14:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614742#M213656</link>
      <description>&lt;P&gt;The table is displaying the events as separate rows - in order to align the userID rows with the customer Name/Response Code rows, you could do something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(index=Prod sourcetype=ProdApp (host=Prod01 OR Prod02) source="/prodlib/SPLID" "Response" ERR-12120)
| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"
| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"
| spath input=my_json output=customerName path=response.login.customerName
| spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode
| dedup customerName
| table customerName,responseCode
| streamstats count as row
| append [search index=Prod sourcetype=ProdApp (host=Prod01 OR Prod02) source="/prodlib/SPLID" "Request")
| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"
| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"
| spath input=my_json output=userId path=data.userId
| dedup userId
| table userId
| streamstats count as row]
| stats values(*) as * by row
| fields - row&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 27 Sep 2022 12:19:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614742#M213656</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-09-27T12:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614851#M213678</link>
      <description>&lt;PRE&gt;(index=Prod sourcetype=ProdApp (host=Prod01 OR Prod02) source="/prodlib/SPLID" "Response" ERR-12120)
| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"
| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"
| spath input=my_json output=customerName path=response.login.customerName
| spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode
| dedup customerName
| table customerName,responseCode
| streamstats count as row
| append [search index=Prod sourcetype=ProdApp (host=Prod01 OR Prod02) source="/prodlib/SPLID" "Request")
| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"
| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"
| spath input=my_json output=userId path=data.userId
| dedup userId
| table userId
| streamstats count as row]
| stats values(*) as * by row
| fields - row&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi IT Whisper&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I already try for above script. but the result like this&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture 2.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21716i31F1DB9FDE3754A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 2.PNG" alt="Capture 2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;1. Why only two customer name and response code for this ? And there is wrong user id for above script (red line). Example for number 1, for Ikbal the username should be IKBAL110294, not DANIAAS086&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture 3.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21718i2BC5DF54E4D7673E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 3.PNG" alt="Capture 3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And i hope for below snapshoot from my script, red line is filled all for user id and should be 29 rows for today&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture 4.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21717i96A62F5C8E258302/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 4.PNG" alt="Capture 4.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is my script , pls help for filled all user id in above screenshoot(redline)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;(index=prd-splid sourcetype=prd-splid-app (host=Prod11 OR host=Prod12 OR host=Prod011 OR host=Prod12) source="/prodlib/SPLID/logs/spl-message-*.log" "Response" "-/spl-banking/services/id/security/v1/login" SPL-PRD-99999) | rex "^(?:[^\[\n]*\[){6}(?P&lt;U&gt;\w+)" | rex field=_raw "(?\{.*)" | spath input=my_json output=customerName path=response.login.customerName | spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode | dedup customerName | table customerName,responseCode | append [search index=prd-splid sourcetype=prd-splid-app (host=Prod11 OR host=Prod12 OR host=Prod011 OR host=Prod012) source="/prodlib/SPLID/logs/spl-message-*.log" ("Request" "-/spl-banking/services/id/security/v1/login") | rex "^(?:[^\[\n]*\[){6}(?P&lt;U&gt;\w+)" | rex field=_raw "(?\{.*)" | spath input=my_json output=userId path=data.userId | dedup userId | table userId]&lt;/U&gt;&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 03:42:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614851#M213678</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-28T03:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614876#M213683</link>
      <description>&lt;P&gt;How do you correlate the events with customerName to the events with userId?&lt;/P&gt;&lt;P&gt;There is nothing in your search to suggest that you wanted to do that!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 07:02:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614876#M213683</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-09-28T07:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614877#M213684</link>
      <description>&lt;P&gt;I will corellate customerName and user id with this source. For customerName with Response source, and for UserId with Request source, will joining Request and Response for got the both info&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(index=prd-splid sourcetype=prd-splid-app (host=Prod11 OR host=Prod12 OR host=Prod011 OR host=Prod12) source="/prodlib/SPLID/logs/spl-message-*.log" "&lt;STRONG&gt;Response&lt;/STRONG&gt;" "-/spl-banking/services/id/security/v1/login" SPL-PRD-99999)&lt;BR /&gt;| rex "^(?:[^\[\n]*\[){6}(?P&lt;/SPAN&gt;&lt;U&gt;\w+)"&lt;BR /&gt;| rex field=_raw "(?\{.*)"&lt;BR /&gt;| spath input=my_json output=customerName path=response.login.customerName&lt;BR /&gt;| spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode&lt;BR /&gt;| dedup customerName | table customerName,responseCode&lt;BR /&gt;| append&lt;BR /&gt;[search index=prd-splid sourcetype=prd-splid-app (host=Prod11 OR host=Prod12 OR host=Prod011 OR host=Prod012) source="/prodlib/SPLID/logs/spl-message-*.log" ("&lt;STRONG&gt;Request&lt;/STRONG&gt;" "-/spl-banking/services/id/security/v1/login")&lt;BR /&gt;| rex "^(?:[^\[\n]*\[){6}(?P\w+)"&lt;BR /&gt;| rex field=_raw "(?\{.*)"&lt;BR /&gt;| spath input=my_json output=userId path=data.userId&lt;BR /&gt;| dedup userId | table userId]&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 07:10:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614877#M213684</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-28T07:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614888#M213686</link>
      <description>&lt;P&gt;In your example "&lt;SPAN&gt;Ikbal" does not match "IKBAL110294" and therefore these fields cannot be used to correlate the events - unless you have some additional manipulations done on one or both of the fields until the values match.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 07:29:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614888#M213686</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-09-28T07:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614921#M213693</link>
      <description>&lt;P&gt;Each name or CIF have a different User ID.&lt;/P&gt;&lt;P&gt;For this example(Ikbal), he has the userid IKBAL110294 which he got from the Response login.&lt;BR /&gt;So I want to combine the customer name in the Request login(blueline) with the UserID in the Response login(redline)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Will join this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Will join this" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21733iDFF4C016083D3389/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 5.PNG" alt="Capture 5.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="and this" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21734iA14418F7932D768F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 6.PNG" alt="and this" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;and this&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And my expexted result like this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="And my exprected result like this" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21732iB2C900866685EC9D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 7.PNG" alt="And my exprected result like this" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;And my exprected result like this&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 09:01:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614921#M213693</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-28T09:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614942#M213701</link>
      <description>&lt;P&gt;Why are you not extracting userId from here?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1664358810441.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21735i35521EE660279605/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1664358810441.png" alt="ITWhisperer_0-1664358810441.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 09:53:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614942#M213701</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-09-28T09:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614946#M213703</link>
      <description>&lt;P&gt;I don't know how to get the userid(blueline) from here, because it's outside of the Response or Request source(before -/spl..., i don't know how to get the data)&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture 8.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21736i1B612F8DA64550FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 8.PNG" alt="Capture 8.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 09:59:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614946#M213703</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-28T09:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614950#M213706</link>
      <description>&lt;LI-CODE lang="markup"&gt;| rex "^.+(\[[^\]]+\].*){4}\[(?&amp;lt;userid&amp;gt;[^\]]+)\]"&lt;/LI-CODE&gt;&lt;P&gt;Does this work?&lt;/P&gt;&lt;P&gt;If not, please can you share the log events in a code block &amp;lt;/&amp;gt; rather than a screenshot?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 10:07:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/614950#M213706</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-09-28T10:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615088#M213753</link>
      <description>&lt;P&gt;Not able to work&lt;BR /&gt;&lt;BR /&gt;I already input like this from your script, but still error&lt;BR /&gt;&lt;BR /&gt;(index=prd-splid sourcetype=prd-splid-app (host=Prod11 OR host=Prod12 OR host=Prod011 OR host=Prod012) source="/prodlib/SPLID/logs/spl-message-*.log" "Response" "-/spl-banking/services/id/security/v1/login" SPL-PRD-99999)&lt;BR /&gt;| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"&lt;BR /&gt;| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"&lt;BR /&gt;| spath input=my_json output=customerName path=response.login.customerName&lt;BR /&gt;| spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode&lt;BR /&gt;| dedup customerName&lt;BR /&gt;| table customerName,responseCode&lt;BR /&gt;| streamstats count as row&lt;BR /&gt;| append [search index=prd-splid sourcetype=prd-splid-app (host=Prod11 OR host=Prod12 OR host=Prod011 OR host=Prod012) source="/prodlib/SPLID/logs/spl-message-*.log" ("Request" "-/spl-banking/services/id/security/v1/login")&lt;BR /&gt;| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"&lt;BR /&gt;| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"&lt;BR /&gt;| spath input=my_json output=userId path=data.userId&lt;BR /&gt;| dedup userId&lt;BR /&gt;| table userId&lt;BR /&gt;| streamstats count as row]&lt;BR /&gt;| stats values(*) as * by row&lt;BR /&gt;| fields - row&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This is my script&lt;BR /&gt;&lt;BR /&gt;(index=prd-splid sourcetype=prd-splid-app (host=LXSPLPIDV11 OR host=LXSPLPIDV12 OR host=LXSPLPIDV011 OR host=LXSPLPIDV012) source="/prodlib/SPLID/logs/spl-message-*.log" "Response" "-/spl-banking/services/id/security/v1/login" SPL-PRD-99999)&lt;BR /&gt;| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"&lt;BR /&gt;| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"&lt;BR /&gt;| spath input=my_json output=customerName path=response.login.customerName&lt;BR /&gt;| spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode&lt;BR /&gt;| dedup customerName&lt;BR /&gt;| table customerName,responseCode&lt;BR /&gt;| append [search index=prd-splid sourcetype=prd-splid-app (host=Prod11 OR host=Prod12 OR host=Prod011 OR host=Prod012) source="/prodlib/SPLID/logs/spl-message-*.log" ("Request" "-/spl-banking/services/id/security/v1/login")&lt;BR /&gt;| rex "^.+(\[[^\]]+\].*){4}\[(?&amp;lt;userid&amp;gt;[^\]]+)\]"&lt;BR /&gt;| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"&lt;BR /&gt;| spath input=my_json output=userId path=data.userId&lt;BR /&gt;| dedup userId&lt;BR /&gt;| table userId]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 04:24:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615088#M213753</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-29T04:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615286#M213831</link>
      <description>&lt;P&gt;Hi IT Whisper&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me or give some clue for this ?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 03:50:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615286#M213831</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-30T03:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615312#M213840</link>
      <description>&lt;LI-CODE lang="markup"&gt;(index=prd-splid sourcetype=prd-splid-app (host=LXSPLPIDV11 OR host=LXSPLPIDV12 OR host=LXSPLPIDV011 OR host=LXSPLPIDV012) source="/prodlib/SPLID/logs/spl-message-*.log" "Response" "-/spl-banking/services/id/security/v1/login" SPL-PRD-99999)
| rex "^(?:[^\[\n]*\[){6}(?P&amp;lt;u&amp;gt;\w+)"
| rex "^.+(\[[^\]]+\].*){4}\[(?&amp;lt;userid&amp;gt;[^\]]+)\]"
| rex field=_raw "(?&amp;lt;my_json&amp;gt;\{.*)"
| spath input=my_json output=customerName path=response.login.customerName
| spath input=my_json output=responseCode path=response.responseHeader.responseContext.responseCode
| dedup customerName
| table userid,customerName,responseCode&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 30 Sep 2022 07:10:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615312#M213840</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-09-30T07:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615349#M213847</link>
      <description>&lt;P&gt;There this error&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture 9.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21786iD2D7BAE4C490DA87/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 9.PNG" alt="Capture 9.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 09:31:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615349#M213847</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-09-30T09:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615374#M213866</link>
      <description>&lt;P&gt;Please paste your sample events into a code block &amp;lt;/&amp;gt; rather than a graphic so we can test the solution more easily.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 12:02:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615374#M213866</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-09-30T12:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615569#M213928</link>
      <description>&lt;P&gt;Like this ?&lt;BR /&gt;&lt;BR /&gt;(index=prd-splid sourcetype=prd-splid-app (host=LXSPLPIDV11 OR host=LXSPLPIDV12 OR host=LXSPLPIDV011 OR host=LXSPLPIDV012) source="/prodlib/SPLID/logs/spl-message-*.log" "Response" "-/spl-banking/services/id/security/v1/login" SPL-PRD-99999)&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 02:41:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615569#M213928</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-10-03T02:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615588#M213932</link>
      <description>&lt;P&gt;No, please paste the events not the SPL using the code block &amp;lt;/&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1664780761445.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21819iEFE31152151BB246/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1664780761445.png" alt="ITWhisperer_0-1664780761445.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 07:06:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615588#M213932</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-10-03T07:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615751#M213972</link>
      <description>&lt;P&gt;Like this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;command: regex="^.+(\[[^\]]+\].*){4}\[(?&amp;lt;userid&amp;gt;[^\]]+)\]"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[LXSPKPIDV01] Streamed search execute failed because: Error in 'rex' command: regex="^.+(\[[^\]]+\].*){4}\[(?&amp;lt;userid&amp;gt;[^\]]+)\]" has exceeded configured match_limit, consider raising the value in limits.conf.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 01:53:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615751#M213972</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-10-04T01:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615769#M213981</link>
      <description>&lt;P&gt;No, more like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;2022-09-28 10:11:26.484 [default ...&lt;/LI-CODE&gt;&lt;P&gt;so we can include in our test of a solution for you&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 07:24:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615769#M213981</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-10-04T07:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: Multisearch or union for this case</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615786#M213985</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&amp;lt;&amp;gt;&lt;BR /&gt;2022-10-04&lt;/SPAN&gt; &lt;SPAN class=""&gt;11:23:11.160&lt;/SPAN&gt;&lt;SPAN&gt; [&lt;/SPAN&gt;&lt;SPAN class=""&gt;default&lt;/SPAN&gt; &lt;SPAN class=""&gt;task-45&lt;/SPAN&gt;&lt;SPAN&gt;] &lt;/SPAN&gt;&lt;SPAN class=""&gt;INFO&lt;/SPAN&gt;&lt;SPAN&gt; [&lt;/SPAN&gt;&lt;SPAN class=""&gt;SPLMessage&lt;/SPAN&gt;&lt;SPAN&gt;][&lt;/SPAN&gt;&lt;SPAN class=""&gt;TWiUqanHFodo0UrDyrdkN3TXJD-5nry3r9N49A4N&lt;/SPAN&gt;&lt;SPAN&gt;][&lt;/SPAN&gt;&lt;SPAN class=""&gt;11&lt;/SPAN&gt;&lt;SPAN&gt;][&lt;/SPAN&gt;&lt;SPAN class=""&gt;Android-SPL&lt;/SPAN&gt;&lt;SPAN&gt;][&lt;/SPAN&gt;&lt;SPAN class=""&gt;VIVIARVIANY01&lt;/SPAN&gt;&lt;SPAN&gt;][&lt;/SPAN&gt;&lt;SPAN class=""&gt;ID&lt;/SPAN&gt;&lt;SPAN&gt;][&lt;/SPAN&gt;&lt;SPAN class=""&gt;3.0&lt;/SPAN&gt;&lt;SPAN&gt;][&lt;/SPAN&gt;&lt;SPAN class=""&gt;1852ms&lt;/SPAN&gt;&lt;SPAN&gt;][] &lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;-/spl-banking/services/id/security/v1/login&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;-&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Response&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; {"&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;response&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;{"&lt;/SPAN&gt;&lt;SPAN class=""&gt;responseHeader&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;{"&lt;/SPAN&gt;&lt;SPAN class=""&gt;responseContext&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;{"&lt;/SPAN&gt;&lt;SPAN class=""&gt;responseCode&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;SPL-PRD-99999&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;responseDescription&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;Kami&lt;/SPAN&gt; &lt;SPAN class=""&gt;tidak&lt;/SPAN&gt; &lt;SPAN class=""&gt;dapat&lt;/SPAN&gt; &lt;SPAN class=""&gt;melanjutkan&lt;/SPAN&gt; &lt;SPAN class=""&gt;permintaanmu.&lt;/SPAN&gt; &lt;SPAN class=""&gt;Coba&lt;/SPAN&gt; &lt;SPAN class=""&gt;kembali&lt;/SPAN&gt; &lt;SPAN class=""&gt;ya.&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;serviceResponseTimeInGMT&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;Tue&lt;/SPAN&gt; &lt;SPAN class=""&gt;Oct&lt;/SPAN&gt; &lt;SPAN class=""&gt;04&lt;/SPAN&gt; &lt;SPAN class=""&gt;04:23:10&lt;/SPAN&gt; &lt;SPAN class=""&gt;GMT&lt;/SPAN&gt; &lt;SPAN class=""&gt;2022&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;referenceNumber&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;20221004042311158&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;systemDate&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:1664857391159&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;challenge&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;cZtpwwmGW6Q=&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;pubKey&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;30820122300d06092a864886f70d01010105000382010f003082010a0282010100ac92dacc038f81d974e9134ea89bcf8a506962c494d7a8ca7a2931b5f9bdf7fb9b7b5d333b170cd427e3a3a062a7ca319d4817b8a7628a15ace5cfc468a78bcb26b7f69f0155406f4e47cfed6b80d4ead331da0607ce940e00b560878634fce7268d67749c45560c10a14a11808bad0f53b27d4a0037bedb3d885b2259925c813230a0a2438d7c3e87294cf3cfee62b4f635c607dc053ff0636d7251b6ed15665dc7ee498b2318db44c07104ddbc8824d7b8b639eaba8b09e115000f6e450a03aaa9f7da0b800bd6396303a14b8dd9b8e3cf78f1d78d84df8940b9d4fcb9825549903a658551a55b6eb99b4cc3c2a463f881586f09b0d26c379b985f9c900d990203010001&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;pubKeyIndex&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;"},"&lt;/SPAN&gt;&lt;SPAN class=""&gt;requesterContext&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;{"&lt;/SPAN&gt;&lt;SPAN class=""&gt;unityFlag&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;sessionId&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;0zCMYGYrcstrZZRkCodgvfkxOSJWaCtMO4HdB0rq&lt;/SPAN&gt;&lt;SPAN&gt;"}},"&lt;/SPAN&gt;&lt;SPAN class=""&gt;login&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;{"&lt;/SPAN&gt;&lt;SPAN class=""&gt;pfmAvailable&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:true&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;insightsAvailable&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:true&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;verifyPin&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:true&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;userHashKey&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;8&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN class=""&gt;nvMI569nIpkVfAPZ5SWso8VW&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN class=""&gt;lbcdDkuQBeyP7Ges=&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;softTokenSerialNumber&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;VKD2AD363E9A&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;firstPartyAccess&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;Y&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;activationTime&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:0&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;lastLoginTime&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;04&lt;/SPAN&gt; &lt;SPAN class=""&gt;Oct&lt;/SPAN&gt; &lt;SPAN class=""&gt;2022&lt;/SPAN&gt; &lt;SPAN class=""&gt;11:22&lt;/SPAN&gt; &lt;SPAN class=""&gt;AM&lt;/SPAN&gt;&lt;SPAN&gt; ","&lt;/SPAN&gt;&lt;SPAN class=""&gt;segment&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;P&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;softTokenState&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;ACTIVE&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;twoFAMode&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;S&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;forceChangeUserIdentity&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;forceChangePassword&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;concurrentSessions&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:1&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;stt&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:0&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;maskedMobileNumber&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"********&lt;/SPAN&gt;&lt;SPAN class=""&gt;8187&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;maskedEmail&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;dondalop&lt;/SPAN&gt;&lt;SPAN&gt;****&lt;/SPAN&gt;&lt;SPAN class=""&gt;@Anonymous.com&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;customerName&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;VIVI&lt;/SPAN&gt; &lt;SPAN class=""&gt;ARVIANY&lt;/SPAN&gt;&lt;SPAN&gt; ","&lt;/SPAN&gt;&lt;SPAN class=""&gt;securityInformation&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;{"&lt;/SPAN&gt;&lt;SPAN class=""&gt;assignmentDate2&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"","&lt;/SPAN&gt;&lt;SPAN class=""&gt;tokenStatus&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"","&lt;/SPAN&gt;&lt;SPAN class=""&gt;preferredLanguage&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;E&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;lastLoginTime&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;04&lt;/SPAN&gt; &lt;SPAN class=""&gt;Oct&lt;/SPAN&gt; &lt;SPAN class=""&gt;2022&lt;/SPAN&gt; &lt;SPAN class=""&gt;11:22&lt;/SPAN&gt; &lt;SPAN class=""&gt;AM&lt;/SPAN&gt;&lt;SPAN&gt; ","&lt;/SPAN&gt;&lt;SPAN class=""&gt;softTokenFlag&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:true&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;softTokenSerialNumber&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;VKD2AD363E9A&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;softTokenTfaDown&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;softTokenState&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;ACTIVE&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;firstPartyAccess&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;Y&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;concurrentSessions&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:1&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;firstLoginDate&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;28092022&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;firstLoginTime&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;085655&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;ssoSessionToken&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;70001_PUsXPbHvIlUFtKLIckbQjSimsaR_LUGkUZEm2KqgTMgd707Nu_bMoluUcNn6XWUPojGhlOgoUwO0QPShh8-9brWokMuiJ_hBXhVtokxXFw-KoEf-GuxE5FbiiPpTLeD3IK1zOtLAFDu_pxYeBwJKjLNhP0EAmvEK-GbK0hzW5EnMpl0jZkd-S69nPqoRopKZmTveYEXn5-AWghl-B-fG1NqcjTepH-8GjwDbe-dGv2aIbLS1ZUQJ_jo1LUfmRFYWXzICFNPK3mzLV5TWas8JmQeuYKoNFg20nMxBMGqbe38LyZejg6KFrDE4b3EJKVEXbqkNcxZXClu_nQFj_yF7J_LKTWiqpXcmHNr9hVviKO-UCQ1hlULk-8_y2b2Kj_oN-R8TLHuMW2htD57IQ&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;userLoginTime&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;1664857389552&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;timeToSTActivation&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:0&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;twoFAStatus&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;blackOutTime&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;30&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;activationTime&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:0&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;assignmentDate&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"","&lt;/SPAN&gt;&lt;SPAN class=""&gt;twoFAMode&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;S&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;tokenActivated&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;forceChangeUserIdentity&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;N&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;forceChangePassword&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;N&lt;/SPAN&gt;&lt;SPAN&gt;","&lt;/SPAN&gt;&lt;SPAN class=""&gt;lastLoginTimeStamp&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;2022-10-04&lt;/SPAN&gt; &lt;SPAN class=""&gt;11:22:51.0&lt;/SPAN&gt;&lt;SPAN&gt;"}},"&lt;/SPAN&gt;&lt;SPAN class=""&gt;dbcx&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;timeout&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;partialTimeout&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;hasEcomProduct&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;bundle&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;twoFAEnabled&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;,"&lt;/SPAN&gt;&lt;SPAN class=""&gt;twoFaEnabled&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;:false&lt;/SPAN&gt;&lt;SPAN&gt;}}&lt;BR /&gt;&amp;lt;/&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 09:27:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Multisearch-or-union-for-this-case-How-to-show-for-5-user-id-s/m-p/615786#M213985</guid>
      <dc:creator>untitledman27</dc:creator>
      <dc:date>2022-10-04T09:27:21Z</dc:date>
    </item>
  </channel>
</rss>

