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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

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