<?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 95 percentile in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71343#M996</link>
    <description>&lt;P&gt;How to check 95th percentile of a particular message (Ex: Message ok) which is coming 20 times.&lt;/P&gt;

&lt;P&gt;Ex&lt;BR /&gt;
03/22/2013 03:38:56.752  Message ok&lt;/P&gt;

&lt;P&gt;which is coming 20 times.&lt;/P&gt;

&lt;P&gt;Please tell me the same.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Mar 2013 10:25:54 GMT</pubDate>
    <dc:creator>chaitu99</dc:creator>
    <dc:date>2013-03-22T10:25:54Z</dc:date>
    <item>
      <title>95 percentile</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71343#M996</link>
      <description>&lt;P&gt;How to check 95th percentile of a particular message (Ex: Message ok) which is coming 20 times.&lt;/P&gt;

&lt;P&gt;Ex&lt;BR /&gt;
03/22/2013 03:38:56.752  Message ok&lt;/P&gt;

&lt;P&gt;which is coming 20 times.&lt;/P&gt;

&lt;P&gt;Please tell me the same.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2013 10:25:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71343#M996</guid>
      <dc:creator>chaitu99</dc:creator>
      <dc:date>2013-03-22T10:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: 95 percentile</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71344#M997</link>
      <description>&lt;P&gt;Have you checked the &lt;CODE&gt;percX()&lt;/CODE&gt; function for &lt;CODE&gt;stats&lt;/CODE&gt;?&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/Stats"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/Stats&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/CommonStatsFunctions"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/CommonStatsFunctions&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your search | stats perc95(your_field) | the rest of your search
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;/k&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2013 11:09:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71344#M997</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-03-22T11:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: 95 percentile</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71345#M998</link>
      <description>&lt;P&gt;You can use the perc()x(field) function. More information: &lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/CommonStatsFunctions"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/CommonStatsFunctions&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Example:&lt;BR /&gt;
Let's say that your field OK="Message ok". Then, you could use the perc(x)(field) function as follow:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;earliest=-1d@d latest=@d index=main sourcetype=messages|stats perc95(ok)

earliest=-7d@d latest=@d index=main sourcetype=messages|timechart span=d perc95(ok)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Mar 2013 11:12:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71345#M998</guid>
      <dc:creator>lpolo</dc:creator>
      <dc:date>2013-03-22T11:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: 95 percentile</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71346#M999</link>
      <description>&lt;P&gt;Hello &lt;BR /&gt;
My requiremet is if "message ok" will come in log file then that is successful.&lt;/P&gt;

&lt;P&gt;i am running it 20 times, so 20 times "message ok" will come in log.&lt;BR /&gt;
i have to check the 95th percentile of success rate.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2013 12:07:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71346#M999</guid>
      <dc:creator>chaitu99</dc:creator>
      <dc:date>2013-03-22T12:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: 95 percentile</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71347#M1000</link>
      <description>&lt;P&gt;Hello &lt;BR /&gt;
My requiremet is if "message ok" will come in log file then that is successful.&lt;/P&gt;

&lt;P&gt;i am running it 20 times, so 20 times "message ok" will come in log.&lt;BR /&gt;
i have to check the 95th percentile of success rate.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2013 12:08:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/95-percentile/m-p/71347#M1000</guid>
      <dc:creator>chaitu99</dc:creator>
      <dc:date>2013-03-22T12:08:23Z</dc:date>
    </item>
  </channel>
</rss>

