<?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: subsearch join in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581343#M10294</link>
    <description>&lt;P&gt;CID still empty&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jan 2022 15:13:16 GMT</pubDate>
    <dc:creator>sarit_s</dc:creator>
    <dc:date>2022-01-17T15:13:16Z</dc:date>
    <item>
      <title>subsearch join</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581339#M10290</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have a field that does not return results when searching for specific string.&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need to combine two searches so i will be able to return this field + other results from the search with the specific string&lt;/P&gt;&lt;P&gt;this is my query :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype=clientlogs OR sourcetype="client-logs-api" 
Categories="Login"
| stats count(eval( Message="Unable to load " OR Message="Unable to load from SDK")) as Faliure, values(Message) as Message values(IPAddress) as IPAddress, values(Url) as url by Country SessionGuid 

| appendpipe 
    [ stats sum(Faliure) as Faliure 
    | fillnull value=0 Faliure 
    | eval Country="TOTAL" ] 
| appendpipe 
    [ stats count(SessionGuid) as FailedSessions 
    | eval Country="TOTAL",Faliure="Faliure"] 
]
| table SessionGuid IPAddress Country Faliure Message FailedSessions url 
| sort - Faliure&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need to add the field CID which return no results when searching for the message at the beginning of the query&amp;nbsp;&lt;/P&gt;&lt;P&gt;how can i join them together so i will see in the table also the values of CID ?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 14:35:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581339#M10290</guid>
      <dc:creator>sarit_s</dc:creator>
      <dc:date>2022-01-17T14:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: subsearch join</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581340#M10291</link>
      <description>&lt;P&gt;I am not sure I understand the requirement - do you want a list of CID where Categories != "Login" or a list of CID where message = "Unable to load " OR message = "Unable to load from SDK" or a list of CID where message != "Unable to load " AND message != "Unable to load from SDK" or something else?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 15:01:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581340#M10291</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-01-17T15:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: subsearch join</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581341#M10292</link>
      <description>&lt;P&gt;I want list of CID's when&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype=clientlogs OR sourcetype="client-logs-api"&lt;/LI-CODE&gt;&lt;P&gt;and add it to the table&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 15:02:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581341#M10292</guid>
      <dc:creator>sarit_s</dc:creator>
      <dc:date>2022-01-17T15:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: subsearch join</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581342#M10293</link>
      <description>&lt;LI-CODE lang="markup"&gt;| append [search sourcetype=clientlogs OR sourcetype="client-logs-api"
| stats values(CID) as CID]&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 17 Jan 2022 15:09:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581342#M10293</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-01-17T15:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: subsearch join</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581343#M10294</link>
      <description>&lt;P&gt;CID still empty&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 15:13:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581343#M10294</guid>
      <dc:creator>sarit_s</dc:creator>
      <dc:date>2022-01-17T15:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: subsearch join</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581353#M10295</link>
      <description>&lt;P&gt;So CID doesn't exist in these sourcetypes?&lt;/P&gt;&lt;P&gt;If it does, how would you list them?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 16:26:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581353#M10295</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-01-17T16:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: subsearch join</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581355#M10296</link>
      <description>&lt;P&gt;It does.&amp;nbsp;&lt;BR /&gt;if im searching only for those sourcetyps i can find CID&lt;/P&gt;&lt;P&gt;but when i append this search with the rest it returns empty&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 16:30:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/subsearch-join/m-p/581355#M10296</guid>
      <dc:creator>sarit_s</dc:creator>
      <dc:date>2022-01-17T16:30:05Z</dc:date>
    </item>
  </channel>
</rss>

