<?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: How to fetch scheduled time and dispatched time of saved search? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646908#M223902</link>
    <description>&lt;P&gt;Sorry, no.&lt;BR /&gt;I found those fields reading the log of Splunk itsself time ago, when i got problems with high time dispatching, and did some seaches with them.&lt;BR /&gt;The best thing, IMO, is reading all the Splunk logs with attention, there is some data very useful.&lt;BR /&gt;Or you can use the DMC and read the dashboards, where you can find also many interesting things.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Jun 2023 05:01:26 GMT</pubDate>
    <dc:creator>verbal_666</dc:creator>
    <dc:date>2023-06-14T05:01:26Z</dc:date>
    <item>
      <title>How to fetch scheduled time and dispatched time of saved search?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646721#M223847</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;How do I find scheduled time and dispatch time of each saved search and alert?&lt;/P&gt;&lt;P&gt;The goal is to fetch the two timestamps and then find the magnitude of delay, if any.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to use the below but I get the cron schedule and not the timestamp, even though while defining cron was not used.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;|rest /servicesNS/-/-/saved/searches
|search is_scheduled=1&lt;/LI-CODE&gt;&lt;P&gt;Thus, I need your help and suggestions to build the same.&lt;/P&gt;&lt;P&gt;Thank you&lt;BR /&gt;Taruchit&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 19:52:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646721#M223847</guid>
      <dc:creator>Taruchit</dc:creator>
      <dc:date>2023-06-12T19:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch scheduled time and dispatched time of saved search?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646722#M223848</link>
      <description>&lt;P&gt;I had previously fetched a thread by&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/28550"&gt;@verbal_666&lt;/a&gt;&amp;nbsp;where he stated the problem of delays by comparing scheduled time and dispatched time and then approach to solve it.&lt;/P&gt;&lt;P&gt;Link to thread:&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Splunk-Search/Scheduler-high-delay-in-dispatching/m-p/495213" target="_blank"&gt;https://community.splunk.com/t5/Splunk-Search/Scheduler-high-delay-in-dispatching/m-p/495213&lt;/A&gt;&lt;/P&gt;&lt;P&gt;However, in my query I am a step prior, where I need help to fetch details of scheduled search and dispatch search for each saved search.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 19:54:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646722#M223848</guid>
      <dc:creator>Taruchit</dc:creator>
      <dc:date>2023-06-12T19:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch scheduled time and dispatched time of saved search?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646764#M223861</link>
      <description>&lt;P&gt;You can try to launch a search like this,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal sourcetype=scheduler savedsearch_name="**" | where scheduled_time&amp;lt;dispatch_time
| eval Scheduled_Time=strftime(scheduled_time,"%F %T"),Dispath_Time=strftime(dispatch_time,"%F %T"),Time_Diff=strftime(dispatch_time-scheduled_time,"%M:%S") | where ! isnull(Time_Diff)
| table _time host app savedsearch_name Scheduled_Time Dispath_Time Time_Diff | sort - Time_Diff&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 13 Jun 2023 07:16:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646764#M223861</guid>
      <dc:creator>verbal_666</dc:creator>
      <dc:date>2023-06-13T07:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch scheduled time and dispatched time of saved search?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646790#M223863</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/28550"&gt;@verbal_666&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thank you very much for your prompt help.&lt;/P&gt;&lt;P&gt;Taruchit&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 10:15:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646790#M223863</guid>
      <dc:creator>Taruchit</dc:creator>
      <dc:date>2023-06-13T10:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch scheduled time and dispatched time of saved search?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646853#M223878</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/28550"&gt;@verbal_666&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Do you have any documentation which shares about how data in dispatch_time is field is recorded in the backend by Splunk? If yes, it would be great if you could share it.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 17:11:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646853#M223878</guid>
      <dc:creator>Taruchit</dc:creator>
      <dc:date>2023-06-13T17:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch scheduled time and dispatched time of saved search?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646908#M223902</link>
      <description>&lt;P&gt;Sorry, no.&lt;BR /&gt;I found those fields reading the log of Splunk itsself time ago, when i got problems with high time dispatching, and did some seaches with them.&lt;BR /&gt;The best thing, IMO, is reading all the Splunk logs with attention, there is some data very useful.&lt;BR /&gt;Or you can use the DMC and read the dashboards, where you can find also many interesting things.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2023 05:01:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646908#M223902</guid>
      <dc:creator>verbal_666</dc:creator>
      <dc:date>2023-06-14T05:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch scheduled time and dispatched time of saved search?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646911#M223905</link>
      <description>&lt;P&gt;Thank you sir.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2023 05:13:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fetch-scheduled-time-and-dispatched-time-of-saved-search/m-p/646911#M223905</guid>
      <dc:creator>Taruchit</dc:creator>
      <dc:date>2023-06-14T05:13:01Z</dc:date>
    </item>
  </channel>
</rss>

