<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How do you identify which saved searches are consuming max resources to monitor on a dashboard panel? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145508#M8832</link>
    <description>&lt;P&gt;I have 65 Saved searches.&lt;/P&gt;

&lt;P&gt;Now, I want to build a dashboard panel in which top 10 searches consuming max resources can be depicted. Kindly advise.&lt;/P&gt;

&lt;P&gt;I have read answers to other questions also, but no where any specific search is mentioned.&lt;/P&gt;

&lt;P&gt;Kindly advise.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jun 2015 08:12:08 GMT</pubDate>
    <dc:creator>kamal_jagga</dc:creator>
    <dc:date>2015-06-09T08:12:08Z</dc:date>
    <item>
      <title>How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145508#M8832</link>
      <description>&lt;P&gt;I have 65 Saved searches.&lt;/P&gt;

&lt;P&gt;Now, I want to build a dashboard panel in which top 10 searches consuming max resources can be depicted. Kindly advise.&lt;/P&gt;

&lt;P&gt;I have read answers to other questions also, but no where any specific search is mentioned.&lt;/P&gt;

&lt;P&gt;Kindly advise.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2015 08:12:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145508#M8832</guid>
      <dc:creator>kamal_jagga</dc:creator>
      <dc:date>2015-06-09T08:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145509#M8833</link>
      <description>&lt;P&gt;Two options for you. The specific answer to your question is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal savedsearch_name=* NOT savedsearch_name="" sourcetype=splunk_audit OR sourcetype=audittrail | stats count sum(total_run_time) avg(total_run_time) avg(scan_count) avg(event_count) by savedsearch_name | sort 10 - "sum(total_run_time)"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That said, if you want to do large scale analysis on your search logs, I recommend checking out my app, &lt;A href="https://apps.splunk.com/app/2632/"&gt;Search Activity&lt;/A&gt;. The current version of the app doesn't have a report (I'm adding it into the next version). However, you can run the report with the following search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats count sum(total_run_time) avg(total_run_time) avg(scan_count) avg(event_count) values(user) from `SA_SearchHistory` where searchtype=scheduled groupby savedsearch_name | sort 10 - "sum(total_run_time)"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The benefit of my app for this analysis (in addition to all the other visibility you can get) is that in my lab, it is over 50 times faster. If you want to do more, or the first search isn't fast enough, check out the app. &lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2015 15:46:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145509#M8833</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2015-06-09T15:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145510#M8834</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;The above search provided by you didn't give the results. But i removed some portion of the string and got results with the below mentioned query.&lt;/P&gt;

&lt;P&gt;index=_internal savedsearch_name=* NOT savedsearch_name="" | stats count  by savedsearch_name | sort 30 &lt;/P&gt;

&lt;P&gt;But it still didn't give the metrics of the resource consumption by individual searches.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:12:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145510#M8834</guid>
      <dc:creator>kamal_jagga</dc:creator>
      <dc:date>2020-09-28T20:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145511#M8835</link>
      <description>&lt;P&gt;index=_internal savedsearch_name=* NOT savedsearch_name="" | stats count by savedsearch_name | sort count | head 30&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:30:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145511#M8835</guid>
      <dc:creator>epeeran</dc:creator>
      <dc:date>2020-09-29T22:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145512#M8836</link>
      <description>&lt;P&gt;index=_internal savedsearch_name=* NOT savedsearch_name="" | stats count by savedsearch_name | sort count | head 30&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:30:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145512#M8836</guid>
      <dc:creator>epeeran</dc:creator>
      <dc:date>2020-09-29T22:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145513#M8837</link>
      <description>&lt;P&gt;index=_internal savedsearch_name=* NOT savedsearch_name="" | stats count by savedsearch_name | sort count | head 30&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:30:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145513#M8837</guid>
      <dc:creator>epeeran</dc:creator>
      <dc:date>2020-09-29T22:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145514#M8838</link>
      <description>&lt;P&gt;index=_internal savedsearch_name=* NOT savedsearch_name="" | stats count by savedsearch_name | sort count | head 30&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:30:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145514#M8838</guid>
      <dc:creator>epeeran</dc:creator>
      <dc:date>2020-09-29T22:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145515#M8839</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/189448"&gt;@kamal_jagga&lt;/a&gt; : If you have a DMC configured in your environment, there are prebuilt dashboards in there...&lt;BR /&gt;
DMC--&amp;gt;search---&amp;gt;activity---&amp;gt;search activity:instance---&amp;gt;select your SearchHead instance(Top 20 Memory-Consuming Searches if you scroll down). you can use that underlying search with some tweaks to build a dashboard. &lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.2.1/DMC/SearchactivityDeploymentwide#Interpret_results_in_these_dashboards" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/7.2.1/DMC/SearchactivityDeploymentwide#Interpret_results_in_these_dashboards&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:30:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145515#M8839</guid>
      <dc:creator>prakash007</dc:creator>
      <dc:date>2020-09-29T22:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do you identify which saved searches are consuming max resources to monitor on a dashboard panel?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145516#M8840</link>
      <description>&lt;P&gt;In the app &lt;A href="https://splunkbase.splunk.com/app/3796/"&gt;Alerts for Splunk Admins&lt;/A&gt; or github &lt;A href="https://github.com/gjanders/SplunkAdmins/tree/master/default/data/ui/views"&gt;links to the dashboards&lt;/A&gt; I've got a few dashboards that could help here.&lt;/P&gt;

&lt;P&gt;Troubleshooting indexer CPU &amp;amp; Troubleshooting resource usage per user, you could tweak either of those to look for the search id's with the scheduler in the name...they measure CPU usage , memory usage et cetera.&lt;/P&gt;

&lt;P&gt;As pointed out in another post you can get some of this information via the monitoring console as well, it depends on how much information you want about the impact of scheduled searches (or searches in general)&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 22:17:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-you-identify-which-saved-searches-are-consuming-max/m-p/145516#M8840</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2018-12-18T22:17:32Z</dc:date>
    </item>
  </channel>
</rss>

