<?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 How to display 100% degradation in SLO? in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/How-to-display-100-degradation-in-SLO/m-p/277737#M5099</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm new to Dynatrace and I'm currently working on setting up monitoring in non production environment that will eventually move to production. Currently, I'm trying to create a SLO for a span that we intentionally ran to have a failure rate of 100%. However, the SLO is not able to evaluate it.&lt;BR /&gt;&lt;BR /&gt;DQL that I'm using:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;fetch spans
| filter matchesValue(endpoint.name, "&amp;lt;endpoint_name&amp;gt;") AND matchesValue(entityAttr(dt.entity.process_group, "tags"), "*APISECCluster*") 
| fields start_time, end_time, Tier, span.name, duration, span.status_code, endpoint.name
| makeTimeseries {
    EPM = countIf(span.status_code == "error", default: 0),
    CPM = count(default: 0)
  }, by: { API=endpoint.name }
| fieldsAdd sli=(((CPM[]-EPM[])/CPM[])*(100))
| fieldsAdd API&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Since its a 100% failure rate -&amp;nbsp;sli=(((CPM[]-EPM[])/CPM[])*(100)) will be 0%, which is not being displayed correctly and not being reported in the 'Problems' app in DT. Is there a way to handle this scenario where 100% degradation (which resoluts in 0% sli) will be recognized by DT? Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 May 2025 07:33:57 GMT</pubDate>
    <dc:creator>vvasudev</dc:creator>
    <dc:date>2025-05-22T07:33:57Z</dc:date>
    <item>
      <title>How to display 100% degradation in SLO?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-display-100-degradation-in-SLO/m-p/277737#M5099</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm new to Dynatrace and I'm currently working on setting up monitoring in non production environment that will eventually move to production. Currently, I'm trying to create a SLO for a span that we intentionally ran to have a failure rate of 100%. However, the SLO is not able to evaluate it.&lt;BR /&gt;&lt;BR /&gt;DQL that I'm using:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;fetch spans
| filter matchesValue(endpoint.name, "&amp;lt;endpoint_name&amp;gt;") AND matchesValue(entityAttr(dt.entity.process_group, "tags"), "*APISECCluster*") 
| fields start_time, end_time, Tier, span.name, duration, span.status_code, endpoint.name
| makeTimeseries {
    EPM = countIf(span.status_code == "error", default: 0),
    CPM = count(default: 0)
  }, by: { API=endpoint.name }
| fieldsAdd sli=(((CPM[]-EPM[])/CPM[])*(100))
| fieldsAdd API&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Since its a 100% failure rate -&amp;nbsp;sli=(((CPM[]-EPM[])/CPM[])*(100)) will be 0%, which is not being displayed correctly and not being reported in the 'Problems' app in DT. Is there a way to handle this scenario where 100% degradation (which resoluts in 0% sli) will be recognized by DT? Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 07:33:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-display-100-degradation-in-SLO/m-p/277737#M5099</guid>
      <dc:creator>vvasudev</dc:creator>
      <dc:date>2025-05-22T07:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to display 100% degradation in SLO?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-display-100-degradation-in-SLO/m-p/290409#M5533</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90560"&gt;@vvasudev&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this documentation page helping to resolve challenge you've described above: &lt;A href="https://docs.dynatrace.com/docs/deliver/service-level-objectives/service-level-objective-tile-add-to-dashboard" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;add a service-level objective (SLO) tile to a dashboard&lt;/STRONG&gt;&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let us know, thank you in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 15:25:20 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-display-100-degradation-in-SLO/m-p/290409#M5533</guid>
      <dc:creator>Michal_Gebacki</dc:creator>
      <dc:date>2025-11-27T15:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to display 100% degradation in SLO?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/How-to-display-100-degradation-in-SLO/m-p/290510#M5538</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;You’re running into two things at once: DQL behavior and SLO evaluation rules.&lt;BR /&gt;Try this DQL so the SLI is always a valid number (no division-by-zero edge cases):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch spans
| filter matchesValue(endpoint.name, "&amp;lt;endpoint_name&amp;gt;")
| makeTimeseries {
    EPM = countIf(span.status_code == "error"),
    CPM = count()
  }, by: { API = endpoint.name }
| fieldsAdd sli = if(CPM[] &amp;gt; 0,
                     then: ((CPM[] - EPM[]) / CPM[] * 100),
                     else: 0)&lt;/LI-CODE&gt;&lt;P&gt;In the SLO configuration, enable the option that allows evaluation when SLI = 0% (wording like “evaluate SLO even if SLI equals 0%” / “don’t suppress zero-value SLI”).&lt;/P&gt;&lt;P&gt;Once that’s set, a 100% failure rate → SLI = 0% will be treated as a valid SLO breach and will show up in Problems.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 15:05:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/How-to-display-100-degradation-in-SLO/m-p/290510#M5538</guid>
      <dc:creator>t_pawlak</dc:creator>
      <dc:date>2025-11-28T15:05:28Z</dc:date>
    </item>
  </channel>
</rss>

