<?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: How to search the results produced by the multireport command? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263104#M78956</link>
    <description>&lt;P&gt;Give this a try as well (may be little faster)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main | stats values(Proj_repo) as Projects by Author | eventstats values(Author) as Team by Projects | stats values(Team) as Team by Author | eval MemberCount=mvcount(Team)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 24 May 2016 17:04:39 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2016-05-24T17:04:39Z</dc:date>
    <item>
      <title>How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263099#M78951</link>
      <description>&lt;P&gt;I have the following search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="main" |rename Proj_repo AS Project | multireport [ stats values(Project) AS Projects BY Author ][ stats values(Author) AS Team BY Project ] 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;that provides a combined result set for which I need to search each Author against Team to get a combined set of Team values for the author (in other words, everyone the author has worked with).&lt;/P&gt;

&lt;P&gt;I've tried various forms of &lt;STRONG&gt;foreach&lt;/STRONG&gt; and &lt;STRONG&gt;map&lt;/STRONG&gt;, but to no avail. I've additionally tried comma delimiting the Team values since it's a mutlivalue field.&lt;/P&gt;

&lt;P&gt;Suggestions on how to search the results of the multireport? Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 15:44:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263099#M78951</guid>
      <dc:creator>jlkokko</dc:creator>
      <dc:date>2016-05-24T15:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263100#M78952</link>
      <description>&lt;P&gt;Give this a try&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main | stats count by Proj_repo Author |rename Proj_repo AS Project | eventstats values(Author) as Authors by Project | stats values(Authors) as Team by Author
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2016 16:04:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263100#M78952</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-05-24T16:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263101#M78953</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Exactly&lt;/STRONG&gt; what I needed. Can you explain the need for stats count? I'm not sure I understand its use in the equation.&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 16:09:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263101#M78953</guid>
      <dc:creator>jlkokko</dc:creator>
      <dc:date>2016-05-24T16:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263102#M78954</link>
      <description>&lt;P&gt;As the first count is not displayed, I simplified it a bit and added the counts on the end:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main | eventstats values(Author) as Authors by Proj_repo | stats values(Authors) as Team by Author | eval People = mvcount(Team)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2016 16:21:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263102#M78954</guid>
      <dc:creator>jlkokko</dc:creator>
      <dc:date>2016-05-24T16:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263103#M78955</link>
      <description>&lt;P&gt;The stats count was to remove the duplicate combination of Project and Author. You can use dedup command as well. I generally prefer to remove unwanted results as soon as possible, to avoid extra processing.&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2016 17:02:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263103#M78955</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-05-24T17:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263104#M78956</link>
      <description>&lt;P&gt;Give this a try as well (may be little faster)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main | stats values(Proj_repo) as Projects by Author | eventstats values(Author) as Team by Projects | stats values(Team) as Team by Author | eval MemberCount=mvcount(Team)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2016 17:04:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263104#M78956</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-05-24T17:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263105#M78957</link>
      <description>&lt;P&gt;Do you have a link to the documentation on multireport?  I don't see it here: &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.1/SearchReference/WhatsInThisManual"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.1/SearchReference/WhatsInThisManual&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 20:14:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263105#M78957</guid>
      <dc:creator>landen99</dc:creator>
      <dc:date>2019-12-31T20:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to search the results produced by the multireport command?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263106#M78958</link>
      <description>&lt;P&gt;multireport is unlikely to be documented unfortunately, they are more likely to create a new search command...&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2020 08:54:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-the-results-produced-by-the-multireport-command/m-p/263106#M78958</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2020-01-02T08:54:01Z</dc:date>
    </item>
  </channel>
</rss>

