Splunk Search

How to make table row count 100 over?

cucuro11
Explorer

Hello, All

In Splunk Enterprise 8.0.1,
I searched "index=_internal | table _raw" and Visualization with Table.

I'd like to make Table rows over 100. But How to I can't find.

Is there a way to remove this limitation and visualize more than 100 rows?

0 Karma
1 Solution

vnravikumar
Champion

Hi

Check the below sample, here i had specified 200 rows in javascript

<dashboard script="pagesize.js">
  <label>table</label>
  <row>
    <panel>
      <table id="rk">
        <search>
          <query>index=_internal | table _raw</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
</dashboard>

javascript:

require([
    "jquery", 
    "splunkjs/mvc", 
    "splunkjs/mvc/tableview",
    "splunkjs/mvc/simplexml/ready!"], function($, mvc, TableView) {
        var myTable = mvc.Components.get('rk');
        myTable.getVisualization(function(tableview) {
            tableview.settings.set("pageSize", 200);
        });
    });

View solution in original post

vnravikumar
Champion

Hi

Check the below sample, here i had specified 200 rows in javascript

<dashboard script="pagesize.js">
  <label>table</label>
  <row>
    <panel>
      <table id="rk">
        <search>
          <query>index=_internal | table _raw</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
</dashboard>

javascript:

require([
    "jquery", 
    "splunkjs/mvc", 
    "splunkjs/mvc/tableview",
    "splunkjs/mvc/simplexml/ready!"], function($, mvc, TableView) {
        var myTable = mvc.Components.get('rk');
        myTable.getVisualization(function(tableview) {
            tableview.settings.set("pageSize", 200);
        });
    });

Levi
Observer

oh!!! good job, Perfect solution to my problem.Thanks!

0 Karma

cucuro11
Explorer

thank you. It's done...!!! 🙂 Good!.
Thank you for your help.

0 Karma
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 ...