<?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: Join Search Hitting Row Limit - Stats Alternative in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248095#M74034</link>
    <description>&lt;P&gt;Hi @chimell, thank you for cominhg back to me with this.&lt;/P&gt;

&lt;P&gt;Unfortunately this doesn't return any results. For clarification the detail.IdaUser is only on the "auditSource=auth-frontend".&lt;/P&gt;

&lt;P&gt;But please don't spend anymore time on this because I've been fortunate enough to receive a solution from @javiergn.&lt;/P&gt;

&lt;P&gt;Many thanks for all your help and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jan 2016 14:40:34 GMT</pubDate>
    <dc:creator>IRHM73</dc:creator>
    <dc:date>2016-01-29T14:40:34Z</dc:date>
    <item>
      <title>Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248069#M74008</link>
      <description>&lt;P&gt;HI, I wonder whether someone may be able to help me please.&lt;/P&gt;

&lt;P&gt;I'm trying to put together a query which looks for two specific patterns of auditSource and auditType for given "SessionID".&lt;/P&gt;

&lt;P&gt;I've put together the query below but it is slow to run and suffers from the data row limit, so is not returning all of the events.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main auditSource=auth-frontend auditType=Login
    | rename tags.X-Session-ID as sessionID
    | join sessionID [search index=main auditSource=per-frontend auditType=RequestReceived
    | rename tags.X-Session-ID as sessionID
    | table sessionID]
    | stats dc(detail.User)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In know from help already received and form research I've undertaken that you can use the 'Stats' command in the place of Join, but despite spending quite sometime on this now, I'm unable to get this to work.&lt;/P&gt;

&lt;P&gt;I just wondered whether someone may be able to look at this please and offer some guidance on how I may overcome this.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 14:50:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248069#M74008</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-26T14:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248070#M74009</link>
      <description>&lt;P&gt;If you want to maintain the structure and keep using join, then simply apply some field filtering and see how that helps:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main auditSource=auth-frontend auditType=Login
| fields _time, tags.X-Session-ID, detail.User
| rename tags.X-Session-ID as sessionID
| join sessionID [
    search index=main auditSource=per-frontend auditType=RequestReceived
    | fields tags.X-Session-ID
    | rename tags.X-Session-ID as sessionID
    | table sessionID
]
| stats dc(detail.User)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Alternatively you should be able to replace the join with stats and that should help too. See the following posts for help. If you can't manage to work it out by yourself let me know and I'll try to help:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/34107/joining-two-searches-with-and-without-stats-command.html"&gt;https://answers.splunk.com/answers/34107/joining-two-searches-with-and-without-stats-command.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/822/simulating-a-sql-join-in-splunk.html"&gt;https://answers.splunk.com/answers/822/simulating-a-sql-join-in-splunk.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Javier&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 14:57:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248070#M74009</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-01-26T14:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248071#M74010</link>
      <description>&lt;P&gt;Hi @javiergn, many thanks for coming back to me with this, I'll take a look at the guidance you've kindly provided.&lt;/P&gt;

&lt;P&gt;Kind Regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 15:15:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248071#M74010</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-26T15:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248072#M74011</link>
      <description>&lt;P&gt;Hi @javiergn, I'm sorry to trouble you again, but I wonder whether you may be able to help.&lt;/P&gt;

&lt;P&gt;Using the two posts you provided links for I put together the following query but the problem is, is that it is not returning any data.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(auditSource=auth-frontend auditType=Login)OR(auditSource=per-frontend auditType=RequestReceived)
| rename tags.X-Session-ID as sessionID
| table sessionID
| stats dc(detail.IdaUser)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Could you have a look at it please and see where I've gone wrong.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 15:44:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248072#M74011</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-26T15:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248073#M74012</link>
      <description>&lt;P&gt;I think you forgot the index name and also be careful when using table as you got rid of the User field by doing that and therefore you can't use it afterwards. You also need to group by the common field (look at your join above), in this case as part of your stats:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main ((auditSource=auth-frontend auditType=Login) OR (auditSource=per-frontend auditType=RequestReceived))
| stats dc(detail.IdaUser) by tags.X-Session-ID
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 26 Jan 2016 15:52:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248073#M74012</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-01-26T15:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248074#M74013</link>
      <description>&lt;P&gt;Hi thank you for coming back to me with this but unfortunately it's not working.&lt;/P&gt;

&lt;P&gt;I think the issue is that it is not extracting those records which have both sets of parameters. In addition  it is listing the 'Session ID' in the table rather than the count of the detail.IdaUser&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 07:25:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248074#M74013</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-27T07:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248075#M74014</link>
      <description>&lt;P&gt;Hi IRHM73&lt;BR /&gt;
Just test this search i think that it will help you&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| set union [search index=main auditSource=auth-frontend auditType=Login | fields tags.X-Session-ID] [search  index=main auditSource=per-frontend auditType=RequestReceived  | fields tags.X-Session-ID]| rename tags.X-Session-ID as sessionID| table sessionID
| stats dc(detail.User)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jan 2016 08:59:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248075#M74014</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2016-01-27T08:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248076#M74015</link>
      <description>&lt;P&gt;Hi @chimnell, thank you very much for taking the time to reply to my post.&lt;/P&gt;

&lt;P&gt;Whilst you were sending this, I did update the description which may help i.e. part of the issue I have with the working query is that it hits the data row limit.&lt;/P&gt;

&lt;P&gt;I have tried the query you kindly sent and although it runs it doesn't return any results.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 09:15:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248076#M74015</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-27T09:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248077#M74016</link>
      <description>&lt;P&gt;Hi, could you post an example of your data source 1 (auth-frontend), data source 2 (per-frontend) and then the outcome you are expecting after joining both?&lt;BR /&gt;
Otherwise I'm going to keep trying without too much success I'm afraid.&lt;/P&gt;

&lt;P&gt;Based on your last comment, if you want to both group by Session-ID and count the distinct users, I would try this instead, but it would really help if you could post some examples as I mentioned above:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main ((auditSource=auth-frontend auditType=Login) OR (auditSource=per-frontend auditType=RequestReceived))
 | stats count by tags.X-Session-ID, detail.IdaUser
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
J&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 09:21:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248077#M74016</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-01-27T09:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248078#M74017</link>
      <description>&lt;P&gt;look  very well your data and re test this search it work well&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 10:18:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248078#M74017</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2016-01-27T10:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248079#M74018</link>
      <description>&lt;P&gt;Hi @chimnell thank you for this. I've just tried the query again and it's still not working I'm afraid. The results are shown as zero.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 10:25:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248079#M74018</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-27T10:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248080#M74019</link>
      <description>&lt;P&gt;Hi thank you for coming back to me with this.&lt;/P&gt;

&lt;P&gt;I appreciate your comment in respect of the data, but unfortunately by data is restricted. &lt;/P&gt;

&lt;P&gt;I've looked back at my original query and perhaps it wasn't as explicit as it should have been, so I'll give it another shot.&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;For each tags.X-Session-ID which contain:
auditSource=per-frontend and auditType=RequestReceived then 
auditSource=auth-frontend and auditType=Login&lt;/LI&gt;
&lt;LI&gt;Count distinct values from the detail.IdaUser field.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;I'm not sure whether this helps.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 10:55:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248080#M74019</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-27T10:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248081#M74020</link>
      <description>&lt;P&gt;tags.X-Session-ID is it a field  ?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 12:57:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248081#M74020</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2016-01-27T12:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248082#M74021</link>
      <description>&lt;P&gt;Hi @chimnell, thank you for coming back to me with this and my apologies for not coming back to you sooner.&lt;/P&gt;

&lt;P&gt;Yes I can confirm that "tags.X-Session-ID" is a field.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 06:27:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248082#M74021</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-28T06:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248083#M74022</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;

&lt;P&gt;I understand data might be restricted but it's probably worth obfuscating it in order for us to better understand what you are trying to achieve.&lt;/P&gt;

&lt;P&gt;Based on your comments 1 and 2 above, I'm pretty sure you still need to group by "tags.X-Session-ID" first (comment 1) and then either use dc or count.&lt;/P&gt;

&lt;P&gt;Anyway, if you could post three tables that represent your data as follows, it would definitely help:&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;auth-frontend&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;tags.X-Session-ID, detail.IdaUser
100, User1
100, User2
101, User2
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;per-frontend&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;tags.X-Session-ID
100
101
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;result&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;whatever you are trying to achieve
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Jan 2016 10:00:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248083#M74022</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2016-01-28T10:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248084#M74023</link>
      <description>&lt;P&gt;HI IRHM73&lt;BR /&gt;
I added  detail.User field in fields command&lt;BR /&gt;
Just re test and let know if it works&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | set union [search index=main auditSource=auth-frontend auditType=Login | fields tags.X-Session-ID detail.User] [search  index=main auditSource=per-frontend auditType=RequestReceived  | fields tags.X-Session-ID detail.User]| rename tags.X-Session-ID as sessionID| table sessionID| stats dc(detail.User)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Jan 2016 10:22:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248084#M74023</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2016-01-28T10:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248085#M74024</link>
      <description>&lt;P&gt;Hi @chimnell,&lt;/P&gt;

&lt;P&gt;Thank you for taking the time to come back to me with this.&lt;/P&gt;

&lt;P&gt;I have tried the query you kindly provided, but unfortunately it is still returning zero results.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 10:51:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248085#M74024</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-28T10:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248086#M74025</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;
Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=main (auditSource=auth-frontend auditType=Login) OR (auditSource=per-frontend auditType=RequestReceived)| rename tags.X-Session-ID as sessionID | table sessionID | stats dc(detail.User)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Jan 2016 11:36:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248086#M74025</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2016-01-28T11:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248087#M74026</link>
      <description>&lt;P&gt;Hi @chimnell thank you for this, but unfortunately its' returning a zero total.&lt;/P&gt;

&lt;P&gt;It's certainly a tricky one is this. I've been racking my brain for a couple of days on this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 11:49:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248087#M74026</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2016-01-28T11:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Join Search Hitting Row Limit - Stats Alternative</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248088#M74027</link>
      <description>&lt;P&gt;give me some values of detail.User field&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 12:03:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Join-Search-Hitting-Row-Limit-Stats-Alternative/m-p/248088#M74027</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2016-01-28T12:03:42Z</dc:date>
    </item>
  </channel>
</rss>

