<?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: Splunk query issue in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470270#M192122</link>
    <description>&lt;P&gt;Sorry for the inproper information.&lt;/P&gt;

&lt;P&gt;Basically the RelatedCorrelationId is my required Output.&lt;/P&gt;

&lt;P&gt;Where i need to get all the interlinked records of Id and corelationalId. Basically parent child relationship. i need to get all that records in one place.&lt;/P&gt;

&lt;P&gt;Hope it explains.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Santosh&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jun 2020 04:41:13 GMT</pubDate>
    <dc:creator>santosh11</dc:creator>
    <dc:date>2020-06-03T04:41:13Z</dc:date>
    <item>
      <title>Splunk query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470268#M192120</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;

&lt;P&gt;I have two columns Id and relationalId below is the sample of it.&lt;/P&gt;

&lt;P&gt;Id  CorrelationalId&lt;BR /&gt;
1       2&lt;BR /&gt;&lt;BR /&gt;
2      3&lt;BR /&gt;&lt;BR /&gt;
3     4                          &lt;/P&gt;

&lt;P&gt;i am looking to get as an output&lt;/P&gt;

&lt;P&gt;RelatedCorrelationalId&lt;BR /&gt;&lt;BR /&gt;
1 2 3 4                                    &lt;/P&gt;

&lt;P&gt;Please can someone guide me on the above issue.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Santosh&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 04:26:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470268#M192120</guid>
      <dc:creator>santosh11</dc:creator>
      <dc:date>2020-06-03T04:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470269#M192121</link>
      <description>&lt;P&gt;Can you explain How RelatedCorelationalId field is getting populated?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 04:28:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470269#M192121</guid>
      <dc:creator>493669</dc:creator>
      <dc:date>2020-06-03T04:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470270#M192122</link>
      <description>&lt;P&gt;Sorry for the inproper information.&lt;/P&gt;

&lt;P&gt;Basically the RelatedCorrelationId is my required Output.&lt;/P&gt;

&lt;P&gt;Where i need to get all the interlinked records of Id and corelationalId. Basically parent child relationship. i need to get all that records in one place.&lt;/P&gt;

&lt;P&gt;Hope it explains.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Santosh&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 04:41:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470270#M192122</guid>
      <dc:creator>santosh11</dc:creator>
      <dc:date>2020-06-03T04:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470271#M192123</link>
      <description>&lt;P&gt;@santosh11 Try below query-&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval RelatedCorrelationalId = mvappend(Id, CorrelationalId)| stats count by RelatedCorrelationalId | table RelatedCorrelationalId
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Below is using sample data-&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|makeresults|eval Id="1", CorrelationalId="2"
|append[|makeresults|eval Id="2", CorrelationalId="3"]
|append[|makeresults|eval Id="3", CorrelationalId="4"]
|fields - _time| eval RelatedCorrelationalId = mvappend(Id, CorrelationalId)| stats count by RelatedCorrelationalId | table RelatedCorrelationalId
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Let me know if it helps!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 04:48:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470271#M192123</guid>
      <dc:creator>493669</dc:creator>
      <dc:date>2020-06-03T04:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470272#M192124</link>
      <description>&lt;P&gt;I am trying that now will update you on the status. Thank you for the response.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 04:57:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-query-issue/m-p/470272#M192124</guid>
      <dc:creator>santosh11</dc:creator>
      <dc:date>2020-06-03T04:57:31Z</dc:date>
    </item>
  </channel>
</rss>

