<?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: Clickpath Step Response time SLO in Synthetic Monitoring</title>
    <link>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/243905#M2430</link>
    <description>&lt;P&gt;Hi Paul,&lt;BR /&gt;&lt;BR /&gt;You might wanna use the partition transformation in your metric selector.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/api-metrics-v2-selector#partition" target="_blank" rel="noopener"&gt;https://docs.dynatrace.com/docs/shortlink/api-metrics-v2-selector#partition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Here's a quick example:&lt;BR /&gt;&lt;BR /&gt;Say you have this data but only want to count the # of requests above a certain load time (let's say 3s):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_0-1713996660192.png" style="width: 818px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19405iE561ACC3C716A2EF/image-dimensions/818x541?v=v2" width="818" height="541" role="button" title="Eric_Yu_0-1713996660192.png" alt="Eric_Yu_0-1713996660192.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You'd have to use partition to split that data into a new dimension (let's call it "Category):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;builtin:synthetic.browser.event.actionDuration.load
:splitBy("dt.entity.synthetic_test_step"):auto
:partition("Category",
          value("good",lt(3000)),
          value("bad",gt(3000)))
:filter(and(or(in("dt.entity.synthetic_test_step",entitySelector("type(synthetic_test_step),entityName.equals(~"click on ~~~"Finish~~~"~")")))))
:sort(value(auto,descending))
:limit(20)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_1-1713996782115.png" style="width: 844px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19406i9F3E377304A5EAC1/image-dimensions/844x711?v=v2" width="844" height="711" role="button" title="Eric_Yu_1-1713996782115.png" alt="Eric_Yu_1-1713996782115.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And filter only the dimension you want:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;:filter(eq("Category","bad"))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_2-1713997080788.png" style="width: 843px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19407iC662FA420E672A7F/image-dimensions/843x554?v=v2" width="843" height="554" role="button" title="Eric_Yu_2-1713997080788.png" alt="Eric_Yu_2-1713997080788.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you want to create an SLO based off of that just take the count() of those values and divide it between the total load actions.&lt;BR /&gt;&lt;BR /&gt;Hope it helps!&lt;/P&gt;</description>
    <pubDate>Wed, 24 Apr 2024 22:30:03 GMT</pubDate>
    <dc:creator>Eric_Yu</dc:creator>
    <dc:date>2024-04-24T22:30:03Z</dc:date>
    <item>
      <title>Clickpath step response time SLO</title>
      <link>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/243867#M2429</link>
      <description>&lt;P&gt;I'm trying to create an SLO based off the load times for a single step in a clickpath synthetic. Its basically % of requests that load in less than a defined time. I cannot figure out how to create calculated metrics &lt;STRONG&gt;successful request count&lt;/STRONG&gt; or&amp;nbsp;&lt;STRONG&gt;total request count&lt;/STRONG&gt; for the SLO calculation as I would for a service based response time SLO.&amp;nbsp; Has anyone had success with a similar requirement?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 14:48:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/243867#M2429</guid>
      <dc:creator>PaulE</dc:creator>
      <dc:date>2024-05-10T14:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Clickpath Step Response time SLO</title>
      <link>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/243905#M2430</link>
      <description>&lt;P&gt;Hi Paul,&lt;BR /&gt;&lt;BR /&gt;You might wanna use the partition transformation in your metric selector.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/api-metrics-v2-selector#partition" target="_blank" rel="noopener"&gt;https://docs.dynatrace.com/docs/shortlink/api-metrics-v2-selector#partition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Here's a quick example:&lt;BR /&gt;&lt;BR /&gt;Say you have this data but only want to count the # of requests above a certain load time (let's say 3s):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_0-1713996660192.png" style="width: 818px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19405iE561ACC3C716A2EF/image-dimensions/818x541?v=v2" width="818" height="541" role="button" title="Eric_Yu_0-1713996660192.png" alt="Eric_Yu_0-1713996660192.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You'd have to use partition to split that data into a new dimension (let's call it "Category):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;builtin:synthetic.browser.event.actionDuration.load
:splitBy("dt.entity.synthetic_test_step"):auto
:partition("Category",
          value("good",lt(3000)),
          value("bad",gt(3000)))
:filter(and(or(in("dt.entity.synthetic_test_step",entitySelector("type(synthetic_test_step),entityName.equals(~"click on ~~~"Finish~~~"~")")))))
:sort(value(auto,descending))
:limit(20)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_1-1713996782115.png" style="width: 844px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19406i9F3E377304A5EAC1/image-dimensions/844x711?v=v2" width="844" height="711" role="button" title="Eric_Yu_1-1713996782115.png" alt="Eric_Yu_1-1713996782115.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And filter only the dimension you want:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;:filter(eq("Category","bad"))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_2-1713997080788.png" style="width: 843px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19407iC662FA420E672A7F/image-dimensions/843x554?v=v2" width="843" height="554" role="button" title="Eric_Yu_2-1713997080788.png" alt="Eric_Yu_2-1713997080788.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you want to create an SLO based off of that just take the count() of those values and divide it between the total load actions.&lt;BR /&gt;&lt;BR /&gt;Hope it helps!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 22:30:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/243905#M2430</guid>
      <dc:creator>Eric_Yu</dc:creator>
      <dc:date>2024-04-24T22:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Clickpath Step Response time SLO</title>
      <link>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/257007#M2629</link>
      <description>&lt;P&gt;The results of the of the partition into good and bad results works, but executing a count on that data and returning a single value of 3 if we use your example returns a single value that is the sum of the action duration load times from the 3 events. I could certainly be missing something, but I am just not able to return back a simple count of X number above X seconds.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 16:42:13 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/257007#M2629</guid>
      <dc:creator>pt_A360</dc:creator>
      <dc:date>2024-09-24T16:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Clickpath Step Response time SLO</title>
      <link>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/257128#M2630</link>
      <description>&lt;P&gt;Try adding a &lt;A href="https://docs.dynatrace.com/docs/shortlink/api-metrics-v2-selector#fold" target="_self"&gt;fold transformation&lt;/A&gt; on the query or the explorer:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_0-1727279583889.png" style="width: 695px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/22890iF30C224FF5C5A344/image-dimensions/695x292?v=v2" width="695" height="292" role="button" title="Eric_Yu_0-1727279583889.png" alt="Eric_Yu_0-1727279583889.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 15:53:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Synthetic-Monitoring/Clickpath-step-response-time-SLO/m-p/257128#M2630</guid>
      <dc:creator>Eric_Yu</dc:creator>
      <dc:date>2024-09-25T15:53:35Z</dc:date>
    </item>
  </channel>
</rss>

