<?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 get average response time (95%,99% and 100%) in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186169#M53623</link>
    <description>&lt;P&gt;Hi @Isaias.Garcia, &lt;/P&gt;

&lt;P&gt;Did you get any solution for your question? I am also having the same trouble. Could you please advise on this?&lt;/P&gt;</description>
    <pubDate>Wed, 28 Feb 2018 09:45:41 GMT</pubDate>
    <dc:creator>AdsicSplunk</dc:creator>
    <dc:date>2018-02-28T09:45:41Z</dc:date>
    <item>
      <title>How to get average response time (95%,99% and 100%)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186166#M53620</link>
      <description>&lt;P&gt;I have the below data (response time) and I need to filter it from fastest to slowest response time and then get the following: Average Response Time (95%), Average Response Time(99%) and Average Response Time(100% ). What would be the right search query on this? I tried some suggestions here but cant get the right solutions.Please help.Thank you&lt;/P&gt;

&lt;P&gt;Response_Time&lt;BR /&gt;
0.625&lt;BR /&gt;
2.133&lt;BR /&gt;
2.773&lt;BR /&gt;
5.191&lt;BR /&gt;
2.471&lt;BR /&gt;
2.124&lt;BR /&gt;
2.066&lt;BR /&gt;
0.795&lt;BR /&gt;
1.239&lt;BR /&gt;
2.958&lt;BR /&gt;
6.197&lt;BR /&gt;
2.582&lt;BR /&gt;
0.779&lt;BR /&gt;
1.63&lt;BR /&gt;
2.029&lt;BR /&gt;
2.653&lt;BR /&gt;
0.98&lt;BR /&gt;
2.975&lt;BR /&gt;
6.814&lt;BR /&gt;
6.661&lt;BR /&gt;
0.963&lt;BR /&gt;
2.064&lt;BR /&gt;
0.966&lt;BR /&gt;
1.56&lt;/P&gt;</description>
      <pubDate>Tue, 19 Aug 2014 01:39:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186166#M53620</guid>
      <dc:creator>Isaias_Garcia</dc:creator>
      <dc:date>2014-08-19T01:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to get average response time (95%,99% and 100%)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186167#M53621</link>
      <description>&lt;P&gt;Are you referring to the 95th percentile when you say average 95%?&lt;/P&gt;

&lt;P&gt;If so, you can use the stats command's &lt;CODE&gt;perc&lt;/CODE&gt; function (which may be abbreviated as &lt;CODE&gt;p&lt;/CODE&gt;) along with average (&lt;CODE&gt;avg&lt;/CODE&gt;),  &lt;CODE&gt;min&lt;/CODE&gt; and &lt;CODE&gt;max&lt;/CODE&gt; functions. &lt;STRONG&gt;NB&lt;/STRONG&gt;: All stats functions are listed here along with their description and usage notes: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.3/SearchReference/CommonStatsFunctions"&gt;http://docs.splunk.com/Documentation/Splunk/6.1.3/SearchReference/CommonStatsFunctions&lt;/A&gt; &lt;/P&gt;

&lt;P&gt;Putting them all together, you would end up with something like this (where &lt;CODE&gt;...&lt;/CODE&gt; represents your base search):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | stats min(Response_Time) as RT_fastest max(Response_Time) as RT_slowest p95(Response_Time) as RT_p95 p99(Response_Time) as RT_p99 avg(Response_Time) as RT_avg
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Aug 2014 02:59:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186167#M53621</guid>
      <dc:creator>bwooden</dc:creator>
      <dc:date>2014-08-19T02:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to get average response time (95%,99% and 100%)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186168#M53622</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I'm also trying to get the best95, best96, best97, best98 and best99 stats for the response time avgs. Any luck on this?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Feb 2015 05:27:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186168#M53622</guid>
      <dc:creator>Priya312</dc:creator>
      <dc:date>2015-02-26T05:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to get average response time (95%,99% and 100%)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186169#M53623</link>
      <description>&lt;P&gt;Hi @Isaias.Garcia, &lt;/P&gt;

&lt;P&gt;Did you get any solution for your question? I am also having the same trouble. Could you please advise on this?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 09:45:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186169#M53623</guid>
      <dc:creator>AdsicSplunk</dc:creator>
      <dc:date>2018-02-28T09:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get average response time (95%,99% and 100%)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186170#M53624</link>
      <description>&lt;P&gt;index=myindex1 &lt;BR /&gt;
eventName=5000 ---&amp;gt;have b(starting time and ending time ) and reference id &lt;BR /&gt;
eventName=5001 ---&amp;gt;have (starting time and ending time ) and reference id&lt;/P&gt;

&lt;P&gt;here my condition if both event names - reference id are same then,&lt;BR /&gt;
event 5000 stating time and event 5001 ending time and total duration of time and average time I need to show in dashboards &lt;BR /&gt;
can you please provide query &lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 04:41:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/186170#M53624</guid>
      <dc:creator>vkari</dc:creator>
      <dc:date>2019-01-28T04:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get average response time (95%,99% and 100%)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/505567#M141288</link>
      <description>&lt;P&gt;Thanks. I am able to get that in milliseconds but I want to convert the response time to Percent as well for reporting and compare it with earlier week, How to achieve that?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 18:05:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-average-response-time-95-99-and-100/m-p/505567#M141288</guid>
      <dc:creator>vijaysubramania</dc:creator>
      <dc:date>2020-06-22T18:05:38Z</dc:date>
    </item>
  </channel>
</rss>

