<?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 in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603641#M49596</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247271"&gt;@madhukar3us&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Could you please provide more information? Are these values on the same field? Could you also share some log samples?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jun 2022 17:23:24 GMT</pubDate>
    <dc:creator>danielcj</dc:creator>
    <dc:date>2022-06-28T17:23:24Z</dc:date>
    <item>
      <title>Subsearch: How to create a search which returns multiple values?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603631#M49595</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a search query which returns multiple values. For example, the search query returns abc, def, ghi.&lt;/P&gt;
&lt;P&gt;I need to take this as input and&amp;nbsp; i need to perform a search of these values. The logs contains the abc-123-678, def-678+943 , ghi-678-123 and i need to search the events that contains these strings.&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 17:43:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603631#M49595</guid>
      <dc:creator>madhukar3us</dc:creator>
      <dc:date>2022-06-28T17:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Subsearch</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603641#M49596</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247271"&gt;@madhukar3us&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Could you please provide more information? Are these values on the same field? Could you also share some log samples?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 17:23:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603641#M49596</guid>
      <dc:creator>danielcj</dc:creator>
      <dc:date>2022-06-28T17:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Subsearch</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603642#M49597</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247271"&gt;@madhukar3us&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;if you need to use the result of a subquery to search&amp;nbsp; as text in the main search, you have to follow this approach&lt;/P&gt;&lt;P&gt;supposing that the field in the subsearch containing the values to search is "my_field"&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;your_main_search [ search your_secondary_search  rename my_field AS query | fields query ]&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 17:25:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603642#M49597</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-06-28T17:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Subsearch: How to create a search which returns multiple values?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603703#M49603</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;I suppose that you need join command for example :&lt;BR /&gt;&lt;SPAN&gt;index=index1&amp;nbsp;abc=123-678&amp;nbsp; def=678+943 , ghi=678-123&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;|&amp;nbsp;fields abc,def,ghi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;|&amp;nbsp;join&amp;nbsp;type=inner abc,def,ghi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;[|&amp;nbsp;search&amp;nbsp;index=index2]&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 06:57:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Subsearch-How-to-create-a-search-which-returns-multiple-values/m-p/603703#M49603</guid>
      <dc:creator>marysan</dc:creator>
      <dc:date>2022-06-29T06:57:54Z</dc:date>
    </item>
  </channel>
</rss>

