Splunk Search

Running SearchManager in a dashboard, I get 165 results, but why does SplunkResultsModel only return the first 100 events?

P_A_WORKS
New Member

Hi,

After I run a SearchManager in dashboard, the number of result events I see is 165, however, when I use the following code to retrieve the results data:

var myResults = initSearch.data("results");
var searchResultArray = myResults.data().rows;

searchResultArray only has the first 100 events. Why is that ? Anyone run into this problem? How to get all events back?

thanks

0 Karma
1 Solution

Yasaswy
Contributor

Hi, you will need to pass count: 0 in your search parameters to get all results... refer here
Eg... for a One Shot search

var searchParams = {
earliest_time: "2011-06-19T12:00:00.000-07:00",
latest_time: "2012-12-02T12:00:00.000-07:00",
count : 0 <-- Add this
};

View solution in original post

Yasaswy
Contributor

Hi, you will need to pass count: 0 in your search parameters to get all results... refer here
Eg... for a One Shot search

var searchParams = {
earliest_time: "2011-06-19T12:00:00.000-07:00",
latest_time: "2012-12-02T12:00:00.000-07:00",
count : 0 <-- Add this
};

P_A_WORKS
New Member

hey, I finally find documentation about how to set this parameter "count" in my case... a place so easy to ignore, and set "count" to 0 does solve the problem, thanks for your help 🙂

0 Karma

Yasaswy
Contributor

Good to hear on a Friday morning 🙂 .... have a nice weekend.

0 Karma

P_A_WORKS
New Member

haha...you too 🙂

0 Karma

P_A_WORKS
New Member

thanks for your replay 🙂

but in my case, I'm not using the javascript SDK, I'm using this :

http://docs.splunk.com/Documentation/WebFramework

and I don't find a property of "count" or similar ones in the SearchManager document page...

0 Karma

Yasaswy
Contributor

hi,
you should be able to try something like:
var myResults = mainSearch.data("events", { count: n});

check out the method data( results_type, { attributes } ) ... here

0 Karma
Get Updates on the Splunk Community!

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...

Data Management Digest – November 2025

  Welcome to the inaugural edition of Data Management Digest! As your trusted partner in data innovation, the ...