<?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: Creating a table from diff source in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501085#M61676</link>
    <description>&lt;P&gt;H,&lt;/P&gt;

&lt;P&gt;Do you have any specific requirements?&lt;BR /&gt;
If not, please check on the join and append options.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/SplunkCloud/8.0.0/SearchReference/Join"&gt;https://docs.splunk.com/Documentation/SplunkCloud/8.0.0/SearchReference/Join&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.0/SearchReference/Append"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.0/SearchReference/Append&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/SplunkInvestigate/Current/SearchReference/JoinCommandUsage"&gt;https://docs.splunk.com/Documentation/SplunkInvestigate/Current/SearchReference/JoinCommandUsage&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Please try and let us know!!&lt;/P&gt;</description>
    <pubDate>Wed, 04 Dec 2019 15:09:21 GMT</pubDate>
    <dc:creator>dindu</dc:creator>
    <dc:date>2019-12-04T15:09:21Z</dc:date>
    <item>
      <title>Creating a table from diff source</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501084#M61675</link>
      <description>&lt;P&gt;HI Team, &lt;/P&gt;

&lt;P&gt;I would like to create a table in a dashboard from two difference results. &lt;/P&gt;

&lt;P&gt;Eg: Blue stack results and Green stack results has to display on a same table like below. &lt;/P&gt;

&lt;P&gt;Green   /t                        Blue&lt;BR /&gt;&lt;BR /&gt;
Service Call_count  Service Call_count&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:14:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501084#M61675</guid>
      <dc:creator>marinewcreater</dc:creator>
      <dc:date>2020-09-30T03:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a table from diff source</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501085#M61676</link>
      <description>&lt;P&gt;H,&lt;/P&gt;

&lt;P&gt;Do you have any specific requirements?&lt;BR /&gt;
If not, please check on the join and append options.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/SplunkCloud/8.0.0/SearchReference/Join"&gt;https://docs.splunk.com/Documentation/SplunkCloud/8.0.0/SearchReference/Join&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.0/SearchReference/Append"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.0/SearchReference/Append&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/SplunkInvestigate/Current/SearchReference/JoinCommandUsage"&gt;https://docs.splunk.com/Documentation/SplunkInvestigate/Current/SearchReference/JoinCommandUsage&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Please try and let us know!!&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 15:09:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501085#M61676</guid>
      <dc:creator>dindu</dc:creator>
      <dc:date>2019-12-04T15:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a table from diff source</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501086#M61677</link>
      <description>&lt;P&gt;index = avb source = "&lt;EM&gt;blue&lt;/EM&gt; | stats count by Service, Call_count&lt;BR /&gt;
index = avb source = "&lt;EM&gt;Green&lt;/EM&gt; | stats count by Service, Call_count&lt;/P&gt;

&lt;P&gt;Is it possible to display both results in same table, as Header Green / Blue and next line header as Service / Call_count&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:15:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501086#M61677</guid>
      <dc:creator>marinewcreater</dc:creator>
      <dc:date>2020-09-30T03:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a table from diff source</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501087#M61678</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
Please check whether  the below snippet is what you are looking for.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  index=avb source="blue" 
 |eval Blue_Green="Blue"
 |stats count as "Service_Call Count" by Service, Call_count ,Blue_Green
 |append [ search index=avb source="Green"
 |eval Blue_Green="Green"
 |stats count as "Service_Call Count" by Service, Call_count,Blue_Green]
  |fields - Service,Call_count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Dec 2019 16:40:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Creating-a-table-from-diff-source/m-p/501087#M61678</guid>
      <dc:creator>dindu</dc:creator>
      <dc:date>2019-12-04T16:40:21Z</dc:date>
    </item>
  </channel>
</rss>

