<?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: Request count of Percentile 90 Response Time in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205895#M24891</link>
    <description>&lt;P&gt;Metric precision will never match the MDA since with metrics you work with 1-minute resolution aggregates at minimum. With MDA it's per request, and it will provide the most accurate answer.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Feb 2023 19:19:23 GMT</pubDate>
    <dc:creator>Julius_Loman</dc:creator>
    <dc:date>2023-02-28T19:19:23Z</dc:date>
    <item>
      <title>Request count of Percentile 90 Response Time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/204669#M24589</link>
      <description>&lt;P&gt;Guys, I have a dashboard with some response time measurements and one of them is the 90th percentile. I have the time, OK, but I was asked how many calls are within that time, within the P90. I didn't find a way to verify this and chatting with the chat, I wasn't given a solution either. Does anyone have an idea how to extract this information?&lt;/P&gt;
&lt;P&gt;I need to know how many calls were inside that P95:&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;builtin:service.keyRequest.response.server:filter(and(or(in("dt.entity.service_method",entitySelector("type(service_method),entityName.equals(~"{keyrequest}~")"))))):splitBy():percentile(95.0):auto:sort(value(percentile(95.0),descending)):limit(100)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 08:08:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/204669#M24589</guid>
      <dc:creator>Biaggio</dc:creator>
      <dc:date>2023-02-14T08:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Request count of Percentile 90 Response Time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205737#M24845</link>
      <description>&lt;P&gt;Hi there,&lt;BR /&gt;&lt;BR /&gt;I'm not sure if this is possible within the standard dashboarding. What you can do is create a multidimensional analysis to check it. So firstly use the query above to get the value, then use the Multidimensional Analysis to get the number of calls.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="michiel_otten_0-1677504838776.png" style="width: 659px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/10152iDD82AA84321B9C69/image-dimensions/659x145?v=v2" width="659" height="145" role="button" title="michiel_otten_0-1677504838776.png" alt="michiel_otten_0-1677504838776.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This will give you the number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;KR.&lt;BR /&gt;Michiel&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 13:34:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205737#M24845</guid>
      <dc:creator>michiel_otten</dc:creator>
      <dc:date>2023-02-27T13:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Request count of Percentile 90 Response Time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205756#M24852</link>
      <description>&lt;P&gt;If I got your question right - I believe you have the answer already - for 90 percentile - 90% of requests are below the 90 percentile. Same for any percentile. So you can use the&amp;nbsp;&lt;SPAN&gt;builtin:service.keyRequest.count.server metric for the number.&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;But that's for metrics which have 1-minute resolution, not for individual requests see&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4669"&gt;@michiel_otten&lt;/a&gt;&amp;nbsp;answer. - this will be the most precise answer, but you can't have that on a dashboard.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 17:30:49 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205756#M24852</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2023-02-27T17:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Request count of Percentile 90 Response Time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205795#M24864</link>
      <description>&lt;P&gt;To add on Julius:&amp;nbsp; you can combine your data explorer query with metric:&lt;BR /&gt;(builtin:service.keyRequest.count.total:splitBy("dt.entity.service_method")*0.9) for for fast request count&lt;BR /&gt;(builtin:service.keyRequest.count.total:splitBy("dt.entity.service_method")*0.1) for slowest 10%&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="michiel_otten_0-1677565388072.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/10162i75BC646D3094F371/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michiel_otten_0-1677565388072.png" alt="michiel_otten_0-1677565388072.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="michiel_otten_1-1677565400137.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/10163i56C8FB79A4A00C15/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michiel_otten_1-1677565400137.png" alt="michiel_otten_1-1677565400137.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Tried playing around with percentile in metric above but does not seem to give the right number.&lt;BR /&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;what's your experience with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 06:24:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205795#M24864</guid>
      <dc:creator>michiel_otten</dc:creator>
      <dc:date>2023-02-28T06:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Request count of Percentile 90 Response Time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205895#M24891</link>
      <description>&lt;P&gt;Metric precision will never match the MDA since with metrics you work with 1-minute resolution aggregates at minimum. With MDA it's per request, and it will provide the most accurate answer.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 19:19:23 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/205895#M24891</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2023-02-28T19:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Request count of Percentile 90 Response Time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/271497#M35873</link>
      <description>&lt;P&gt;Hi Everyone;&lt;/P&gt;&lt;P&gt;I wonder how I can get only the number of those over 5 seconds when getting keyrequest count here? Do you have an example? I want to get it from Data Explorer, not MDA.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Ozkan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2025 08:51:56 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/271497#M35873</guid>
      <dc:creator>oakdag</dc:creator>
      <dc:date>2025-03-04T08:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Request count of Percentile 90 Response Time</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/271507#M35874</link>
      <description>&lt;P&gt;Yes it is possible with calculated service metrics &lt;A href="https://docs.dynatrace.com/docs/shortlink/calculated-service-metric" target="_blank"&gt;https://docs.dynatrace.com/docs/shortlink/calculated-service-metric&lt;/A&gt; and similarly soon with traces in grail (Dynatrace SaaS only).&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2025 09:52:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Request-count-of-Percentile-90-Response-Time/m-p/271507#M35874</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-03-04T09:52:50Z</dc:date>
    </item>
  </channel>
</rss>

