Dashboards & Visualizations

50 Row Dashboard Limit

mcwomble
Path Finder

Is there anyway of increasing the row limit in the dashboard? I need to be able to create 50 rows.

Thanks

Tags (1)
0 Karma
1 Solution

thall79
Communicator

If you are building an advanced XML dashboard you can always add a paginator after the hidden search.

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

Or if you want to be able to switch how many to display look at the module Count. When you use both Count and Paginator make sure to have Paginator as the descendent of Count. Here is an example:

 <module name="Count">
              <param name="options">
                <list>
                  <param name="text">10</param>
                  <param name="value">10</param>
                </list>
                <list>
                  <param name="text">20</param>
                  <param name="value">20</param>
                </list>
                <list>
                  <param name="text">50</param>
                  <param name="selected">True</param>
                  <param name="value">50</param>
                </list>
              </param>


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

travis.

View solution in original post

astewa35
New Member

modify: opt/splunk/share/splunk/search_mrsparkle/templates/view/dashboard.html

% for rowNumber in range(1,50):

<%call expr="parent.getFloatLayoutRow(modules, rowNumber)"></%call>

Change 50 to what ever number, in this case I choose 100 rows:

% for rowNumber in range(1,100):

<%call expr="parent.getFloatLayoutRow(modules, rowNumber)"></%call>

0 Karma

thall79
Communicator

If you are building an advanced XML dashboard you can always add a paginator after the hidden search.

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

Or if you want to be able to switch how many to display look at the module Count. When you use both Count and Paginator make sure to have Paginator as the descendent of Count. Here is an example:

 <module name="Count">
              <param name="options">
                <list>
                  <param name="text">10</param>
                  <param name="value">10</param>
                </list>
                <list>
                  <param name="text">20</param>
                  <param name="value">20</param>
                </list>
                <list>
                  <param name="text">50</param>
                  <param name="selected">True</param>
                  <param name="value">50</param>
                </list>
              </param>


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

travis.

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...