<?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: Creating a MTTD tile in DT dashboard in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/291026#M2856</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21657"&gt;@p_devulapalli&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you for the query, but the query doesn't give the correct MTTD. In my environment, a problem detected at 19:30 and it gave a MTTD as 9.06 min but the problem started analysis at 19:27 so the MTTD would be 3 min, am i correct with the below scenario?&lt;BR /&gt;Kindly suggest&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;19:27&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Analysis timeframe start. Davis evaluates performance across timeframe (for example, 3 of 5 minutes show anomalous performance). No event reported at this time.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;19:39&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Earliest event in analysis timeframe reported, backdated to analysis timeframe start. Problem is in processing state awaiting completion of topology analysis. Problem is raised and pushed to Dynatrace web UI and Problems API.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;19:39&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Davis completes processing of the problem. Alerts are delivered via alerting profiles.&lt;/SPAN&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Sarfaraz&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Dec 2025 14:27:25 GMT</pubDate>
    <dc:creator>sarfarazx01a</dc:creator>
    <dc:date>2025-12-08T14:27:25Z</dc:date>
    <item>
      <title>Create an MTTD Tile in Dynatrace Dashboard Using DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/287063#M2637</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;I'm working on a tile for Mean Time To Detect (MTTD) to detect the problem when it occurs first. I wrote a DQL query, but I think the query is not giving the correct results. Can anyone please assist me on this.&lt;BR /&gt;&lt;BR /&gt;fetch events&lt;BR /&gt;| filter event.kind == "DAVIS_PROBLEM"&lt;BR /&gt;| fieldsAdd time&lt;BR /&gt;| fieldsAdd detection_time = toDuration(timestamp - event.start)&lt;BR /&gt;//| summarize mean_detection_time = avg(detection_time)&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 13:10:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/287063#M2637</guid>
      <dc:creator>sarfarazx01a</dc:creator>
      <dc:date>2025-12-17T13:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a MTTD tile in DT dashboard</title>
      <link>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/287163#M2642</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/95764"&gt;@sarfarazx01a&lt;/a&gt;&amp;nbsp;Depending on your definition of MTTD you can use something like below to calculate MTTD for each of the problems .&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch events
| filter event.status_transition == "CREATED" AND event.kind == "DAVIS_PROBLEM"
| fieldsAdd `PRB_MTTD` = timestamp - event.start&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:20:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/287163#M2642</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-10-02T01:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a MTTD tile in DT dashboard</title>
      <link>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/291026#M2856</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21657"&gt;@p_devulapalli&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you for the query, but the query doesn't give the correct MTTD. In my environment, a problem detected at 19:30 and it gave a MTTD as 9.06 min but the problem started analysis at 19:27 so the MTTD would be 3 min, am i correct with the below scenario?&lt;BR /&gt;Kindly suggest&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;19:27&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Analysis timeframe start. Davis evaluates performance across timeframe (for example, 3 of 5 minutes show anomalous performance). No event reported at this time.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;19:39&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Earliest event in analysis timeframe reported, backdated to analysis timeframe start. Problem is in processing state awaiting completion of topology analysis. Problem is raised and pushed to Dynatrace web UI and Problems API.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;19:39&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Davis completes processing of the problem. Alerts are delivered via alerting profiles.&lt;/SPAN&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Sarfaraz&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 14:27:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/291026#M2856</guid>
      <dc:creator>sarfarazx01a</dc:creator>
      <dc:date>2025-12-08T14:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a MTTD tile in DT dashboard</title>
      <link>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/291078#M2862</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/95764"&gt;@sarfarazx01a&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes — based on how Dynatrace works internally, your 3-minute interpretation is conceptually correct, but from a DQL perspective the platform only exposes the analysis window start and the problem creation time.&lt;/P&gt;&lt;P&gt;So in practice, the only universally reliable MTTD you can calculate in DQL is:&lt;/P&gt;&lt;P&gt;MTTD = problem creation time – analysis start time&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch events
| filter event.kind == "DAVIS_PROBLEM"
| filter event.status_transition == "CREATED"
| fields
    problem_id = event.id,
    problem_created = timestamp,
    analysis_start = event.start
| fieldsAdd
    MTTD = problem_created - analysis_start
| summarize
    avg_MTTD = avg(MTTD),
    min_MTTD = min(MTTD),
    max_MTTD = max(MTTD)&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="t_pawlak_0-1765267312164.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31147i2925F1639E978CD3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="t_pawlak_0-1765267312164.png" alt="t_pawlak_0-1765267312164.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 08:02:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Create-an-MTTD-Tile-in-Dynatrace-Dashboard-Using-DQL/m-p/291078#M2862</guid>
      <dc:creator>t_pawlak</dc:creator>
      <dc:date>2025-12-09T08:02:10Z</dc:date>
    </item>
  </channel>
</rss>

