<?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: Bell Curve Average Duration times in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141273#M39128</link>
    <description>&lt;P&gt;This is exactly what I was looking for. Thank you&lt;/P&gt;</description>
    <pubDate>Mon, 14 Jul 2014 20:48:28 GMT</pubDate>
    <dc:creator>dreamwork801</dc:creator>
    <dc:date>2014-07-14T20:48:28Z</dc:date>
    <item>
      <title>Bell Curve Average Duration times</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141270#M39125</link>
      <description>&lt;P&gt;So I am trying to get an average duration time for request.&lt;BR /&gt;
Currently I am using this request with gets the top 5 percent, and bottom 5 percent of times and removes them with the idea that they are outliers. I realized that this may not always be accurate if the top 5 or bottom 5 percent are actually close to the mean and not outliers. So how would I change this search to remove anything that is 3 standard deviations away from the mean?&lt;/P&gt;

&lt;P&gt;"Data.PlatformTeam" = "payments" | eventstats perc95(Duration) as Perc95, perc5(Duration) as Perc5 by Name| where Duration &amp;lt; Perc95 | where Duration &amp;gt; Perc5 | stats avg(Duration) as Average, count as Frequency by Name | sort -Average&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2014 15:56:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141270#M39125</guid>
      <dc:creator>dreamwork801</dc:creator>
      <dc:date>2014-07-14T15:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve Average Duration times</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141271#M39126</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;"Data.PlatformTeam" = "payments" | eventstats mean(Duration) as mean, stdev(Duration) as stdev by Name| where abs(mean-stdev)&amp;lt; 3 | stats avg(Duration) as Average, count as Frequency by Name | sort -Average
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 Jul 2014 16:12:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141271#M39126</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-07-14T16:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve Average Duration times</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141272#M39127</link>
      <description>&lt;P&gt;This will do it.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;"Data.PlatformTeam"="payments"  | eventstats avg(duration) as avg stdev(duration) as stdev by Name |  where abs(duration-avg) &amp;lt; stdev*3 | stats avg(duration) as Average, count as Frequency by Name | sort -Average
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 Jul 2014 17:15:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141272#M39127</guid>
      <dc:creator>emiller42</dc:creator>
      <dc:date>2014-07-14T17:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve Average Duration times</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141273#M39128</link>
      <description>&lt;P&gt;This is exactly what I was looking for. Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2014 20:48:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Bell-Curve-Average-Duration-times/m-p/141273#M39128</guid>
      <dc:creator>dreamwork801</dc:creator>
      <dc:date>2014-07-14T20:48:28Z</dc:date>
    </item>
  </channel>
</rss>

