<?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: Outlook Launch Time query issue in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154132#M43298</link>
    <description>&lt;P&gt;We discovered that log data about outlook a few weeks ago.  very cool.  For our instance of Splunk which is also version 6 the boot time field for add-ins auto-discovered. Is the value not getting extracted by default for you?  Did you find something wrong with it which led you to regex extraction?  I'll check to see whether I cam getting similar variation over time&lt;/P&gt;</description>
    <pubDate>Sun, 24 Nov 2013 18:39:18 GMT</pubDate>
    <dc:creator>dstaulcu</dc:creator>
    <dc:date>2013-11-24T18:39:18Z</dc:date>
    <item>
      <title>Outlook Launch Time query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154130#M43296</link>
      <description>&lt;P&gt;We are currently using Event 45 to calculate the average load for Outlook: &lt;A href="http://support-microsoft.com/kb/2617010"&gt;Microsoft KB &amp;amp; Sample Data&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;What we have for a search is this using Splunk 6: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=win_desk EventCode=45 sourcetype="WinEventLog:Application" SourceName=Outlook | rex field=_raw "Boot Time \(Milliseconds\)\: (?&amp;lt;BootTime_ms&amp;gt;\d+)" max_match=0   | streamstats sum(BootTime_ms) as Evt_sum_BootTime window=1 | eval Evt_BootTime_sec = Evt_sum_BootTime / 1000 | bucket _time span=1d  | stats avg(Evt_BootTime_sec) by _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When I run this search for the following days (10/1/13 12:00:00.000 am to 10/6/13 12:00:00.000 am) I come up with the following results: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time                avg(Evt_BootTime_sec)
2013-10-01           24.834010
2013-10-02           7.831655
2013-10-03           7.796068
2013-10-04           4.842439
2013-10-05           4.59200
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;So far it all looks good! The problem seems to be when we adjust the the time frame to 30 days. My results go crazy! &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;10/1/13 12:00:00.000 AM to 11/1/13 12:00:00.000 AM
_time   avg(Evt_BootTime_sec)
2013-10-01   772.931010
2013-10-02   755.928655
2013-10-03   755.893068
2013-10-04   752.939439
2013-10-05   752.689000
2013-10-06   756.884800
2013-10-07   719.525329
2013-10-08   687.182311
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;As you can see in the data10/1/2013 has jumped from 24 seconds to 12 Minutes by just changing the date range. The goal is to track our progress month by month showing a steady progress downwards in a chart. &lt;/P&gt;

&lt;P&gt;What am I doing wrong here? &lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2013 00:29:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154130#M43296</guid>
      <dc:creator>MartinMcNutt</dc:creator>
      <dc:date>2013-11-24T00:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook Launch Time query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154131#M43297</link>
      <description>&lt;P&gt;This is because your &lt;CODE&gt;streamstats&lt;/CODE&gt; are accumulated over more than one day now. I don't think you need the &lt;CODE&gt;streamstats&lt;/CODE&gt; at all. If you want the average daily load calculated over the last X days, you could do this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=win_desk EventCode=45 sourcetype="WinEventLog:Application" SourceName=Outlook 
| rex field=_raw "Boot Time \(Milliseconds\)\: (?&amp;lt;BootTime_ms&amp;gt;\d+)" max_match=0   
| eval Evt_BootTime_sec = Evt_sum_BootTime / 1000 
| bucket _time span=1d
| stats avg(Evt_BootTime_sec) by _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 24 Nov 2013 04:24:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154131#M43297</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-11-24T04:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook Launch Time query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154132#M43298</link>
      <description>&lt;P&gt;We discovered that log data about outlook a few weeks ago.  very cool.  For our instance of Splunk which is also version 6 the boot time field for add-ins auto-discovered. Is the value not getting extracted by default for you?  Did you find something wrong with it which led you to regex extraction?  I'll check to see whether I cam getting similar variation over time&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2013 18:39:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154132#M43298</guid>
      <dc:creator>dstaulcu</dc:creator>
      <dc:date>2013-11-24T18:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook Launch Time query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154133#M43299</link>
      <description>&lt;P&gt;The rex is left over from the 5X Splunk servers.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2013 20:29:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154133#M43299</guid>
      <dc:creator>MartinMcNutt</dc:creator>
      <dc:date>2013-11-24T20:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook Launch Time query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154134#M43300</link>
      <description>&lt;P&gt;I tried your approached but BootTime is auto discovered as a Multivalue field. Streamstats is doing exactly what is required and summing the time for each record. &lt;/P&gt;

&lt;P&gt;The really odd thing about this is it works perfectly against a single indexer where it was originally created. When we execute against our new cluster it is fails with the bad values.  &lt;/P&gt;

&lt;P&gt;Thanks for the help anyways. I am going to see if Splunk can give us a hand with this and I will post the final search when it is done.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2013 20:51:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154134#M43300</guid>
      <dc:creator>MartinMcNutt</dc:creator>
      <dc:date>2013-11-24T20:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook Launch Time query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154135#M43301</link>
      <description>&lt;P&gt;Ah, that's a pretty brilliant use of &lt;CODE&gt;streamstats&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;But I think that something must be wrong with your event parsing if you are getting multiple BootTimes in a single event.&lt;/P&gt;

&lt;P&gt;Looking forward to seeing your final search...&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2013 05:15:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154135#M43301</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-11-26T05:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook Launch Time query issue</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154136#M43302</link>
      <description>&lt;P&gt;I am getting the same problem with my Outlook account when I tried to launch time on my outlook, then an error message is generating that is “Outlook launch time query issue”. Can anyone tell me the solution? I have Forgotten Outlook Password then I resolved this issue from this link &lt;A href="https://www.outlooktechnicalsupportnumbers.com/"&gt;https://www.outlooktechnicalsupportnumbers.com/&lt;/A&gt;&lt;BR /&gt;
,&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 11:03:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outlook-Launch-Time-query-issue/m-p/154136#M43302</guid>
      <dc:creator>jackdenial</dc:creator>
      <dc:date>2018-09-26T11:03:26Z</dc:date>
    </item>
  </channel>
</rss>

