<?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 Re: Long running searches SPL query in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/603050#M209873</link>
    <description>&lt;P&gt;very good!!&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jun 2022 17:11:39 GMT</pubDate>
    <dc:creator>jo</dc:creator>
    <dc:date>2022-06-23T17:11:39Z</dc:date>
    <item>
      <title>How to find long-running searches in Splunk, with execution time in mins?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532632#M150464</link>
      <description>&lt;P&gt;How to find long-running searches in Splunk, with execution time in mins.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 17:25:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532632#M150464</guid>
      <dc:creator>shinde0509</dc:creator>
      <dc:date>2022-06-23T17:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Long running searches SPL query</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532641#M150468</link>
      <description>&lt;P&gt;The Monitoring Console has a dashboard for that.&amp;nbsp; See Settings-&amp;gt;Monitoring Console-&amp;gt;Search-&amp;gt;Search Usage Statistics: Instance then scroll down.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 13:46:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532641#M150468</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-12-10T13:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Long running searches SPL query</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532659#M150475</link>
      <description>&lt;P&gt;Not having access to Monitoring Consoles, SO using SPL want to create dashboard.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 14:58:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532659#M150475</guid>
      <dc:creator>shinde0509</dc:creator>
      <dc:date>2020-12-10T14:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Long running searches SPL query</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532688#M150488</link>
      <description>&lt;P&gt;If you don't have access to the MC then you probably don't have access to the _internal index, which is where run times are reported.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 17:39:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532688#M150488</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-12-10T17:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Long running searches SPL query</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532751#M150513</link>
      <description>&lt;P&gt;Having access to _internal and _audit Indexes.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 07:34:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532751#M150513</guid>
      <dc:creator>shinde0509</dc:creator>
      <dc:date>2020-12-11T07:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Long running searches SPL query</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532800#M150521</link>
      <description>&lt;P&gt;This should get you started.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(index=_audit host=* action=search sourcetype=audittrail search_id!="rsa_*") 
| eval user = if(user="n/a", null(), user) 
| eval search_id=replace(search_id, "'(.*)'", "\1") 
| eval search=if(isnull(savedsearch_name) OR savedsearch_name=="", search, savedsearch_name) 
| stats min(_time) as _time, values(user) as user, max(total_run_time) as total_run_time, first(search) as search, first(apiStartTime) as apiStartTime, first(apiEndTime) as apiEndTime by search_id&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 11 Dec 2020 13:40:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/532800#M150521</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-12-11T13:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Long running searches SPL query</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/603050#M209873</link>
      <description>&lt;P&gt;very good!!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 17:11:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-long-running-searches-in-Splunk-with-execution-time/m-p/603050#M209873</guid>
      <dc:creator>jo</dc:creator>
      <dc:date>2022-06-23T17:11:39Z</dc:date>
    </item>
  </channel>
</rss>

