<?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: User visited url and do transaction and get the data, order by time in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589517#M205284</link>
    <description>&lt;P&gt;That doesn't answer the question - I changed the order of the second E and the first J - what do you expect to happen in this situation?&lt;/P&gt;</description>
    <pubDate>Thu, 17 Mar 2022 13:20:13 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2022-03-17T13:20:13Z</dc:date>
    <item>
      <title>How to create a search for when User visits url, do a transaction, and get the data based on time?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589255#M205206</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;I am trying to pull a result per customer, where he/she has visited url based on time_order&lt;/P&gt;
&lt;P&gt;I did something like this , I got the result but it is in alphabetical order what I am looking is time_order&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;my_search 
| transaction user_id startswith=http_uri="/" endswith=http_uri="random.html"
| table user_id http_uri&lt;/LI-CODE&gt;
&lt;P&gt;Also is there any other way other than transaction,I am not sure.&lt;/P&gt;
&lt;P&gt;please guide on how this can be achieved. thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 14:53:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589255#M205206</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-16T14:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url do transaction and get the data based on time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589258#M205209</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;my_search 
| sort 0 user_id _time
| table user_id http_uri&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 16 Mar 2022 09:58:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589258#M205209</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-16T09:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url do transaction and get the data based on time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589274#M205213</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;If I do this I will all the http_uri .&lt;/P&gt;&lt;P&gt;let's say http_uri contains A - Z links, I only want how the user visited from E - J links in order by time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 12:08:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589274#M205213</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-16T12:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url do transaction and get the data based on time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589290#M205216</link>
      <description>&lt;P&gt;You could use streamstats to count the instances of E by user. Then reverse the events and use streamstats to count the instances of J by user. Then find the maximum value of J count by user. Then subtract J count from the max J count +1. Then where E count equals adjusted J count, you have the events between E and the next J&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 12:50:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589290#M205216</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-16T12:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url do transaction and get the data based on time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589320#M205218</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, I understood but now sure how to put this on query. Can you please help me.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 13:11:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589320#M205218</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-16T13:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url do transaction and get the data based on time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589331#M205221</link>
      <description>&lt;P&gt;Slight tweak to what I outlined, but try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| sort 0 _time
| streamstats count(eval(url="URL/E")) as eCount global=f by user
| reverse
| streamstats count(eval(url="URL/J")) as jCount global=f by user eCount
| eventstats max(jCount) as jMax by user eCount
| eval jCount=if(jMax&amp;gt;0,jMax-jCount+1,0)
| reverse
| where eCount &amp;gt; 0 AND jCount=1&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 16 Mar 2022 13:45:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589331#M205221</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-16T13:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589442#M205251</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;thank you for this, but this is not what I am looking for is - to calculate the duration period b/w first(url/E) to first(url/J) or last(url/J) and then order it by _time. for example :&amp;nbsp;&lt;/P&gt;&lt;P&gt;The user - CD_123 visited from url/E - url/J and took the duration 20seconds which is correct&amp;nbsp; --- I know this can be calculated by transaction command but in some cases when you see the user - CD_125 - user visited url/E twice and url/J twice and because of that duration shows as 2 seconds which is incorrect. I am not sure how to pull this. sorry for all the confusion.&lt;/P&gt;&lt;P&gt;user&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;duration&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;url&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;TABLE width="306px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="151.203px" height="25px"&gt;CD_123&lt;/TD&gt;&lt;TD width="105.375px" height="25px"&gt;20&lt;/TD&gt;&lt;TD width="48.4219px" height="25px"&gt;url/E&lt;BR /&gt;url/F&lt;BR /&gt;url/H&lt;BR /&gt;url/I&lt;BR /&gt;url/J&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="151.203px" height="25px"&gt;CD_124&lt;/TD&gt;&lt;TD width="105.375px" height="25px"&gt;5&lt;/TD&gt;&lt;TD width="48.4219px" height="25px"&gt;url/E&lt;BR /&gt;url/F&lt;BR /&gt;url/I&lt;BR /&gt;url/J&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="151.203px" height="25px"&gt;CD_125&lt;/TD&gt;&lt;TD width="105.375px" height="25px"&gt;2&lt;/TD&gt;&lt;TD width="48.4219px" height="25px"&gt;&lt;P&gt;url/E&lt;BR /&gt;url/F&lt;BR /&gt;url/H&lt;BR /&gt;url/E&lt;BR /&gt;url/I&lt;BR /&gt;url/J&lt;BR /&gt;url/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 17 Mar 2022 05:10:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589442#M205251</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-17T05:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589458#M205257</link>
      <description>&lt;P&gt;User CD_125 is a very good example. What exactly do you want from such a sequence? You say what you are getting is wrong without explaining why it is wrong.&lt;/P&gt;&lt;P&gt;Also, without timing being shown, I can't tell where the 2 seconds is coming from. Is it from the first E to the first J or the first E to the last J or the second E to the first J etc. and which of these do you want?&lt;/P&gt;&lt;P&gt;For example, what do you want from the following sequence for the same user&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;url/E&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;url/F&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;url/H&lt;BR /&gt;url/J&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;url/E&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;url/I&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;url/J&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please clarify your requirements&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 07:35:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589458#M205257</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-17T07:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589463#M205260</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My requirement would be to get the duration from first url/E to first url/J also if we can get from first url/E to last url/J&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 07:53:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589463#M205260</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-17T07:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589467#M205263</link>
      <description>&lt;LI-CODE lang="markup"&gt;| sort 0 _time
| streamstats dc(eval(url="URL/E")) as eCount global=f by user
| reverse
| streamstats count(eval(url="URL/J")) as jCount dc(eval(url="URL/J")) as jDCount global=f by user eCount
| eventstats max(jCount) as jMax by user eCount
| eval jeCount=if(jMax&amp;gt;0,jMax-jCount+1,0)&lt;/LI-CODE&gt;&lt;P&gt;eCount=1 AND jeCount=1 gives you first E to first J&lt;/P&gt;&lt;P&gt;eCount=1 AND jDCount=1 gives you first E to last J&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 08:38:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589467#M205263</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-17T08:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589476#M205270</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;not the desired output what I looking for.&lt;/P&gt;&lt;P&gt;Any possibilities of doing it with transaction command&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 09:33:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589476#M205270</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-17T09:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589477#M205271</link>
      <description>&lt;P&gt;In what way is it not what you were looking for?&lt;/P&gt;&lt;P&gt;To be honest, the transaction command has limitations which why I prefer doing it old school for greater flexibility!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 09:39:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589477#M205271</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-17T09:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589502#M205278</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;so basically if we take this data of the user - CD_125&lt;/P&gt;&lt;P&gt;USER_ID.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TIMESTAMP.&amp;nbsp; &amp;nbsp; &amp;nbsp;URL&lt;/P&gt;&lt;TABLE width="364px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:36&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/E&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_!25&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:38&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/F&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:39&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/H&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:41&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:43&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/E&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:44&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/I&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:45&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what I am looking here is total duration of first URL/E to first URL/J and last URL/E to last URL/J. The output would look like this&amp;nbsp;&lt;/P&gt;&lt;TABLE width="306px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="151.203px" height="25px"&gt;CD_125&lt;/TD&gt;&lt;TD width="105.375px" height="25px"&gt;5&lt;/TD&gt;&lt;TD width="48.4219px" height="25px"&gt;&lt;P&gt;url/E&lt;BR /&gt;url/F&lt;BR /&gt;url/H&lt;BR /&gt;url/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CD_125&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;url/E&lt;BR /&gt;url/I&lt;BR /&gt;url/J&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>Thu, 17 Mar 2022 12:06:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589502#M205278</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-17T12:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589511#M205280</link>
      <description>&lt;P&gt;What would you expect from this sequence?&lt;/P&gt;&lt;P&gt;USER_ID.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TIMESTAMP.&amp;nbsp; &amp;nbsp; &amp;nbsp;URL&lt;/P&gt;&lt;TABLE width="364px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:36&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/E&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_!25&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:38&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/F&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:39&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/H&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:41&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/E&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:43&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:44&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/I&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="145.117px" height="40px"&gt;CD_125&lt;/TD&gt;&lt;TD width="160.359px" height="40px"&gt;05:30:45&lt;/TD&gt;&lt;TD width="57.5234px" height="40px"&gt;&lt;P&gt;URL/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 17 Mar 2022 12:51:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589511#M205280</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-17T12:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589515#M205283</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;I got that result using table. Below is the output what I am looking for.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The output what I am expecting is this :&lt;/P&gt;&lt;TABLE width="306px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="151.203px" height="25px"&gt;CD_125&lt;/TD&gt;&lt;TD width="105.375px" height="25px"&gt;5&lt;/TD&gt;&lt;TD width="48.4219px" height="25px"&gt;&lt;P&gt;url/E&lt;BR /&gt;url/F&lt;BR /&gt;url/H&lt;BR /&gt;url/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CD_125&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;url/E&lt;BR /&gt;url/I&lt;BR /&gt;url/J&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 17 Mar 2022 13:10:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589515#M205283</guid>
      <dc:creator>bijodev1</dc:creator>
      <dc:date>2022-03-17T13:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: User visited url and do transaction and get the data, order by time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589517#M205284</link>
      <description>&lt;P&gt;That doesn't answer the question - I changed the order of the second E and the first J - what do you expect to happen in this situation?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 13:20:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-search-for-when-User-visits-url-do-a-transaction/m-p/589517#M205284</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-03-17T13:20:13Z</dc:date>
    </item>
  </channel>
</rss>

