<?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 Limit the number of row in a multivalue column in a dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583949#M47851</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need to limit the number of value shown in a multivalue column in a dashboard. This was possible using advanced xml using this option:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;module name="SimpleResultsTable"&amp;gt;                                                               
 &amp;lt;param name="allowTransformedFieldSelect"&amp;gt;True&amp;lt;/param&amp;gt;                                                               
 &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;But I fail to see how to do it in simple xml now that advanced xml is deprecated&lt;/P&gt;&lt;P&gt;it should look like something like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-02-07 145941.png" style="width: 116px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/17840iCE83763C0A0AFBDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-02-07 145941.png" alt="Screenshot 2022-02-07 145941.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;There is a way to do this using classic dashboard on newer version of splunk that no longer support advanced xml?&lt;/P&gt;</description>
    <pubDate>Mon, 07 Feb 2022 14:07:28 GMT</pubDate>
    <dc:creator>BakaFon</dc:creator>
    <dc:date>2022-02-07T14:07:28Z</dc:date>
    <item>
      <title>Limit the number of row in a multivalue column in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583949#M47851</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need to limit the number of value shown in a multivalue column in a dashboard. This was possible using advanced xml using this option:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;module name="SimpleResultsTable"&amp;gt;                                                               
 &amp;lt;param name="allowTransformedFieldSelect"&amp;gt;True&amp;lt;/param&amp;gt;                                                               
 &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;But I fail to see how to do it in simple xml now that advanced xml is deprecated&lt;/P&gt;&lt;P&gt;it should look like something like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-02-07 145941.png" style="width: 116px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/17840iCE83763C0A0AFBDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-02-07 145941.png" alt="Screenshot 2022-02-07 145941.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;There is a way to do this using classic dashboard on newer version of splunk that no longer support advanced xml?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 14:07:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583949#M47851</guid>
      <dc:creator>BakaFon</dc:creator>
      <dc:date>2022-02-07T14:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Limit the number of row in a multivalue column in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583952#M47853</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/242785"&gt;@BakaFon&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you could insert in your stats command the distinct count of values for your field and, if it exceeds the limit display only the first two or three,&lt;/P&gt;&lt;P&gt;so if the field is dest_ip and you want to display only the first three, you could use something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=your_index
| stats values(ip_dest) AS ip_dest dc(ip_dest) AS dc_ip_dest By host
| eval ip_dest=if(dc_ip_dest&amp;gt;3,"More IP dest",ip_dest)&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 14:14:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583952#M47853</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-02-07T14:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Limit the number of row in a multivalue column in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583954#M47854</link>
      <description>&lt;P&gt;I forgot to mention that if I click on the more value it actually expand and show&amp;nbsp; them all so I can't use your solution because I won't be be to read all the values&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 14:19:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583954#M47854</guid>
      <dc:creator>BakaFon</dc:creator>
      <dc:date>2022-02-07T14:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Limit the number of row in a multivalue column in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583956#M47856</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/242785"&gt;@BakaFon&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I implemented the feature you want, making on click a drilldown in another dashboard or in another panel where all the results are displayed.&lt;/P&gt;&lt;P&gt;You can do this passing the filter parameters of your search buit without the check on the number of multivalues.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 14:23:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limit-the-number-of-row-in-a-multivalue-column-in-a-dashboard/m-p/583956#M47856</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-02-07T14:23:16Z</dc:date>
    </item>
  </channel>
</rss>

