Splunk Search

Query for Results count making performance worse

pasokkum
Path Finder

In the view, we have one table. We want to know the total results found for that particular search. So we used one more search on button click with the same query to get the count of the results using stats command and displaying it in a label using html javascript. Since 2 queries are running on the same time on click of search button, the performance is worse.
Is there any way to get the count of the results without using any queries?

Tags (1)
0 Karma
1 Solution

gfuente
Motivator

Hello

You can use this token: $job.resultCount$: Number of results a search job returned.

That contains the value you need. So from the main search (only one) you get both things. Then you can use the token to display it the panel title for example

Review this:
http://docs.splunk.com/Documentation/Splunk/6.4.2/Viz/tokens

Regards

View solution in original post

gfuente
Motivator

Hello

You can use this token: $job.resultCount$: Number of results a search job returned.

That contains the value you need. So from the main search (only one) you get both things. Then you can use the token to display it the panel title for example

Review this:
http://docs.splunk.com/Documentation/Splunk/6.4.2/Viz/tokens

Regards

pasokkum
Path Finder

Thanks gfuente.. We are using html code.. How to use resultCount parameter in html?

0 Karma

pasokkum
Path Finder

Thanks!! It helped..

search1.on('search:done', function(properties){
var resultscount=properties.content.resultCount;
document.getElementById('count').innerHTML=resultscount;
});

Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...