Reporting

Can't display more than 10 items after a search

Branden
Builder

I've seen this question floating around but I can't find a solution that works. I have a HiddenSearch that runs after you specify a date range. The problem is it will never return more than 10 items. I'd like to increase that number to, say, 100 (and if there's more than 100, give the user the option to click "Next" or something.)

I tried using "limit=100" in the search like someone suggested, but then it returns no results, which I understand. I also tried head, but then that produced an error.

Here's a snippet of code:

     <module name="TimeRangePicker">
        <param name="searchWhenChanged">True</param>
        <param name="selected">All time</param>
        <module name="HiddenSearch" group="Pick A Time" autoRun="True">
           <param name="search">| search host=xyz sourcetype="abc"</param>
           <module name="EventsViewer" layoutPanel="panel_row3_col1">
           </module>
        </module>

I'm guessing there's a simple solution to this. 🙂

Thanks!

Tags (1)
0 Karma
1 Solution

thall79
Communicator

Try adding the Paginator module.

 <module name="Paginator">
      <param name="count">10</param>
      <param name="entityName">results</param>
      <param name="maxPages">10</param>

Should look like this with your info:

  <module name="TimeRangePicker"> 
    <param name="searchWhenChanged">True</param>
    <param name="selected">All time</param>
    <module name="HiddenSearch" group="Pick A Time" autoRun="True" layoutPanel="panel_row3_col1">
       <param name="search">| search host=xyz sourcetype="abc"</param>                    

  <module name="Paginator">
      <param name="count">10</param>
      <param name="entityName">results</param>
      <param name="maxPages">10</param>


  <module name="EventsViewer" > 
     </module><!-- /EventsViewer-->
    </module><!-- /Paginator-->
   </module><!-- /HiddenSearch-->
  </module><!-- /TimeRangePicker-->

Here are 2 links for more information about the Paginator and its options:

http://www.splunk.com/base/Documentation/4.1.4/Developer/AdvancedSearch

http://www.splunk.com/base/Documentation/4.1.4/Developer/ModuleReference#Paginator

travis.

View solution in original post

thall79
Communicator

Try adding the Paginator module.

 <module name="Paginator">
      <param name="count">10</param>
      <param name="entityName">results</param>
      <param name="maxPages">10</param>

Should look like this with your info:

  <module name="TimeRangePicker"> 
    <param name="searchWhenChanged">True</param>
    <param name="selected">All time</param>
    <module name="HiddenSearch" group="Pick A Time" autoRun="True" layoutPanel="panel_row3_col1">
       <param name="search">| search host=xyz sourcetype="abc"</param>                    

  <module name="Paginator">
      <param name="count">10</param>
      <param name="entityName">results</param>
      <param name="maxPages">10</param>


  <module name="EventsViewer" > 
     </module><!-- /EventsViewer-->
    </module><!-- /Paginator-->
   </module><!-- /HiddenSearch-->
  </module><!-- /TimeRangePicker-->

Here are 2 links for more information about the Paginator and its options:

http://www.splunk.com/base/Documentation/4.1.4/Developer/AdvancedSearch

http://www.splunk.com/base/Documentation/4.1.4/Developer/ModuleReference#Paginator

travis.

Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...