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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...