<?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 do I use a Paginator inside a HiddenPostProcess? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97550#M5366</link>
    <description>&lt;P&gt;VMware... 2.0? Or an update to 1.x?&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jan 2013 10:10:09 GMT</pubDate>
    <dc:creator>Jason</dc:creator>
    <dc:date>2013-01-28T10:10:09Z</dc:date>
    <item>
      <title>How do I use a Paginator inside a HiddenPostProcess?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97547#M5363</link>
      <description>&lt;P&gt;Or any type of PostProcess, for that matter? The Paginator appears to take the number of table rows from the original HiddenSavedSearch, not the search properly transformed by my HiddenPostProcess. Do I have to somehow pass it a new row count?&lt;/P&gt;

&lt;P&gt;My apologies if it looks horrible; it's likely just an automatic translation from Simple XML.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;          &amp;lt;module name="HiddenSearch"&amp;gt;
            &amp;lt;param name="search"&amp;gt;search... | stats count by foo bar&amp;lt;/param&amp;gt;
            &amp;lt;!-- say this returns 3000 table lines. --&amp;gt;    
            &amp;lt;module name="HiddenPostProcess" layoutPanel="panel_row1_col1" group="Rows of Foo" autoRun="False"&amp;gt;
              &amp;lt;param name="search"&amp;gt;
                  search foo="narroweddown" | stats sum(count) by bar | head 30 
              &amp;lt;/param&amp;gt;
              &amp;lt;!-- should only have 30 rows, not 3000! --&amp;gt;
              &amp;lt;param name="groupLabel"&amp;gt;Tags by Device&amp;lt;/param&amp;gt;
              &amp;lt;module name="ViewstateAdapter"&amp;gt;
                &amp;lt;param name="suppressionList"&amp;gt;
                  &amp;lt;item&amp;gt;displayRowNumbers&amp;lt;/item&amp;gt;
                  &amp;lt;item&amp;gt;drilldown&amp;lt;/item&amp;gt;
                  &amp;lt;item&amp;gt;count&amp;lt;/item&amp;gt;
                &amp;lt;/param&amp;gt;
                &amp;lt;module name="HiddenFieldPicker"&amp;gt;
                  &amp;lt;param name="strictMode"&amp;gt;True&amp;lt;/param&amp;gt;
                  &amp;lt;module name="JobProgressIndicator"/&amp;gt;
                  &amp;lt;module name="Paginator"&amp;gt;
                    &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&amp;gt;
                    &amp;lt;param name="count"&amp;gt;10&amp;lt;/param&amp;gt;
                    &amp;lt;!-- How do I get this to show only 3 pages of 10, not 10+, since there are only 30 rows returned by the postprocess? --&amp;gt;
                    &amp;lt;module name="EnablePreview"&amp;gt;
                      &amp;lt;param name="display"&amp;gt;False&amp;lt;/param&amp;gt;
                      &amp;lt;param name="enable"&amp;gt;True&amp;lt;/param&amp;gt;
                      &amp;lt;module name="SimpleResultsTable"&amp;gt;
                        &amp;lt;param name="displayRowNumbers"&amp;gt;true&amp;lt;/param&amp;gt;
                        &amp;lt;param name="entityName"&amp;gt;results&amp;lt;/param&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;
                        &amp;lt;module name="Gimp"/&amp;gt;
                      &amp;lt;/module&amp;gt;
                      &amp;lt;module name="ViewRedirectorLink"&amp;gt;
                        &amp;lt;param name="viewTarget"&amp;gt;restricted_results_view&amp;lt;/param&amp;gt;
                        &amp;lt;param name="popup"&amp;gt;True&amp;lt;/param&amp;gt;
                      &amp;lt;/module&amp;gt;
                    &amp;lt;/module&amp;gt;
                  &amp;lt;/module&amp;gt;
                &amp;lt;/module&amp;gt;
              &amp;lt;/module&amp;gt;
            &amp;lt;/module&amp;gt;
          &amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Jan 2013 23:00:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97547#M5363</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2013-01-23T23:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a Paginator inside a HiddenPostProcess?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97548#M5364</link>
      <description>&lt;P&gt;Pretty sure this is a limitation. Sideview Utils has its own modules that fix this&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2013 19:20:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97548#M5364</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2013-01-24T19:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a Paginator inside a HiddenPostProcess?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97549#M5365</link>
      <description>&lt;P&gt;The core postprocess module can not be used with a paginator.  Sideview's PostProcess/pager module works around this core limitation.  VMware will ship with a patch in the core paginator module that fixes this limitation and we are working with the core team to get this functionality back into our core product.  &lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2013 19:41:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97549#M5365</guid>
      <dc:creator>bbingham</dc:creator>
      <dc:date>2013-01-24T19:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a Paginator inside a HiddenPostProcess?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97550#M5366</link>
      <description>&lt;P&gt;VMware... 2.0? Or an update to 1.x?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:10:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97550#M5366</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2013-01-28T10:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a Paginator inside a HiddenPostProcess?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97551#M5367</link>
      <description>&lt;P&gt;VMware 2.0&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2013 18:27:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97551#M5367</guid>
      <dc:creator>bbingham</dc:creator>
      <dc:date>2013-01-28T18:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a Paginator inside a HiddenPostProcess?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97552#M5368</link>
      <description>&lt;P&gt;Any idea where? I see a SOLNPostProcess in SA-Utils from VMW2.0.1 but nothing related to a paginator. I'll try that post process and see if it fixes the paginator in an &lt;EVENTS&gt; module.&lt;/EVENTS&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2013 12:28:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97552#M5368</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2013-03-05T12:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a Paginator inside a HiddenPostProcess?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97553#M5369</link>
      <description>&lt;P&gt;Take a look under splunk_for_vmware's application.js.  The patch is done under there.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:26:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-use-a-Paginator-inside-a-HiddenPostProcess/m-p/97553#M5369</guid>
      <dc:creator>bbingham</dc:creator>
      <dc:date>2020-09-28T13:26:32Z</dc:date>
    </item>
  </channel>
</rss>

