<?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: eventstats into multi-value list limit of max values in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421500#M121054</link>
    <description>&lt;P&gt;@wfskmoney &lt;BR /&gt;
This can help you.&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/Multivaluefunctions#Description"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/Multivaluefunctions#Description&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2019 12:34:57 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2019-06-13T12:34:57Z</dc:date>
    <item>
      <title>eventstats into multi-value list limit of max values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421499#M121053</link>
      <description>&lt;P&gt;Is there a limit of max values in a multi-value field listSummary  for &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eventstats list(variable) as listSummary by &amp;lt;group&amp;gt; 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2019 11:00:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421499#M121053</guid>
      <dc:creator>wfskmoney</dc:creator>
      <dc:date>2019-06-13T11:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: eventstats into multi-value list limit of max values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421500#M121054</link>
      <description>&lt;P&gt;@wfskmoney &lt;BR /&gt;
This can help you.&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/Multivaluefunctions#Description"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/Multivaluefunctions#Description&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 12:34:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421500#M121054</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2019-06-13T12:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: eventstats into multi-value list limit of max values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421501#M121055</link>
      <description>&lt;P&gt;Hi @wfskmoney ,&lt;BR /&gt;
As per the document reference by @kamlesh_vaghela (&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/Multivaluefunctions#Description"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/Multivaluefunctions#Description&lt;/A&gt;), the list(X) command has a limit of 100 values returned.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 14:13:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421501#M121055</guid>
      <dc:creator>jnudell_2</dc:creator>
      <dc:date>2019-06-13T14:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: eventstats into multi-value list limit of max values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421502#M121056</link>
      <description>&lt;P&gt;yet I noticed that my frequency summaries are accurate even after using lists on aggregated results with more than 100. Does this mean that Splunk in memory still processes all events, just doesnt display them in a table? In my case use mvdedup at the end.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| table contractId amountInCHFCat
| eventstats count as HTamountCounts by contractId amountInCHFCat | eventstats list(amountInCHFCat) as amountLabels, list(HTamountCounts) as HTamountCounts by contractId | eval HTamountCounts=mvzip(amountLabels,HTamountCounts,"|")
| eval amountLabels = mvdedup(amountLabels)
| eval HTamountCounts = mvdedup(HTamountCounts)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Jun 2019 11:24:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421502#M121056</guid>
      <dc:creator>wfskmoney</dc:creator>
      <dc:date>2019-06-14T11:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: eventstats into multi-value list limit of max values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421503#M121057</link>
      <description>&lt;P&gt;however I realized that my frequency counts are correct even after using list aggregation on more than 100 values. Could it be that Splunk in memory processes all the records, just doesnt display them in table in an MV field? I use mvdedup at the end.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    | table contractId amountInCHFCat
    | eventstats count as HTamountCounts by contractId amountInCHFCat | eventstats list(amountInCHFCat) as amountLabels, list(HTamountCounts) as HTamountCounts by contractId | eval HTamountCounts=mvzip(amountLabels,HTamountCounts,"|")
    | eval amountLabels = mvdedup(amountLabels)
    | eval HTamountCounts = mvdedup(HTamountCounts)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Jun 2019 11:26:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421503#M121057</guid>
      <dc:creator>wfskmoney</dc:creator>
      <dc:date>2019-06-14T11:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: eventstats into multi-value list limit of max values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421504#M121058</link>
      <description>&lt;P&gt;Hi @wfskmoney ,&lt;BR /&gt;
You're better off using values instead of list and dedup if you want unique values of amountInCHFCat.&lt;BR /&gt;
&lt;PRE&gt;| table contractId amountInCHFCat&lt;BR /&gt;
| eventstats count as HTamountCounts by contractId amountInCHFCat &lt;BR /&gt;
| eventstats values(amountInCHFCat) as amountLabels, values(HTamountCounts) as HTamountCounts by contractId &lt;BR /&gt;
| eval HTamountCounts=mvzip(amountLabels,HTamountCounts,"|")&lt;BR /&gt;
| eval amountLabels = mvdedup(amountLabels)&lt;BR /&gt;
| eval HTamountCounts = mvdedup(HTamountCounts)&lt;/PRE&gt;&lt;/P&gt;

&lt;P&gt;Of course, you can use list in addition to values if your mvzip doesn't work the way you want it to after that.&lt;BR /&gt;
In regards to your other observation, 100 might be the visible display limit, but the other limit in eventstats is memory based (the default is 200MB per search using eventstats).  This is usually enough for most applications, but I have seen instances where the memory limit is reached (which you can see as a max_mem message in the search.log for the search job).&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2019 12:53:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421504#M121058</guid>
      <dc:creator>jnudell_2</dc:creator>
      <dc:date>2019-06-14T12:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: eventstats into multi-value list limit of max values</title>
      <link>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421505#M121059</link>
      <description>&lt;P&gt;thanks, yes I figured in memory it should be fine. So it is possible to use list() if I dont table out&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 14:38:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/eventstats-into-multi-value-list-limit-of-max-values/m-p/421505#M121059</guid>
      <dc:creator>wfskmoney</dc:creator>
      <dc:date>2019-06-25T14:38:29Z</dc:date>
    </item>
  </channel>
</rss>

