<?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 DQL: fetch dt.synthetic.events or dt.synthetic.detailed_events does not show Browser Synthetic test data. Why? in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/DQL-fetch-dt-synthetic-events-or-dt-synthetic-detailed-events/m-p/276097#M2007</link>
    <description>&lt;P&gt;So, I was trying to create items for a dashboard with DQL that displayed the status of my HTTP and Browser Tests. For my HTTP test, the data I get back is as expected. However, I noticed that the data from my Browser tests are not being retrieved at all for some reason. I am able to get the title of my Browser tests with "dt.entity.synthetic_test", but that doesn't give me any details on whether it was successful or not. My current DQL code looks like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.synthetic.events
| join [ fetch dt.synthetic.detailed_events ], on: { left[event.id] == right[event.id] }&lt;/LI-CODE&gt;&lt;P&gt;Can anyone help me get my Browser Test data including whether it was successful or not? I'd really appreciate the help.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Apr 2025 19:27:24 GMT</pubDate>
    <dc:creator>chloe_bennett</dc:creator>
    <dc:date>2025-04-28T19:27:24Z</dc:date>
    <item>
      <title>DQL: fetch dt.synthetic.events or dt.synthetic.detailed_events does not show Browser Synthetic test data. Why?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-fetch-dt-synthetic-events-or-dt-synthetic-detailed-events/m-p/276097#M2007</link>
      <description>&lt;P&gt;So, I was trying to create items for a dashboard with DQL that displayed the status of my HTTP and Browser Tests. For my HTTP test, the data I get back is as expected. However, I noticed that the data from my Browser tests are not being retrieved at all for some reason. I am able to get the title of my Browser tests with "dt.entity.synthetic_test", but that doesn't give me any details on whether it was successful or not. My current DQL code looks like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.synthetic.events
| join [ fetch dt.synthetic.detailed_events ], on: { left[event.id] == right[event.id] }&lt;/LI-CODE&gt;&lt;P&gt;Can anyone help me get my Browser Test data including whether it was successful or not? I'd really appreciate the help.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 19:27:24 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-fetch-dt-synthetic-events-or-dt-synthetic-detailed-events/m-p/276097#M2007</guid>
      <dc:creator>chloe_bennett</dc:creator>
      <dc:date>2025-04-28T19:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: DQL: fetch dt.synthetic.events or dt.synthetic.detailed_events does not show Browser Synthetic test data. Why?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-fetch-dt-synthetic-events-or-dt-synthetic-detailed-events/m-p/276101#M2008</link>
      <description>&lt;P&gt;&amp;nbsp;This is a guess, but I suspect the reason you are not seeing these is because the synthetic browser data is not available in Grail yet (at least not GA). In our case we just used metrics. A sample query follows.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;timeseries {availability = avg(dt.synthetic.browser.availability),
            executions = count(dt.synthetic.browser.availability)
            }, 
            by: { dt.entity.synthetic_test }&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 28 Apr 2025 20:06:01 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-fetch-dt-synthetic-events-or-dt-synthetic-detailed-events/m-p/276101#M2008</guid>
      <dc:creator>marco_irmer</dc:creator>
      <dc:date>2025-04-28T20:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: DQL: fetch dt.synthetic.events or dt.synthetic.detailed_events does not show Browser Synthetic test data. Why?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-fetch-dt-synthetic-events-or-dt-synthetic-detailed-events/m-p/276140#M2011</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/88864"&gt;@chloe_bennett&lt;/a&gt;&amp;nbsp;I have something like below setup to report on the status by location in DQL. Hope it helps&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries {
  availability_series = avg(dt.synthetic.browser.availability),
  performance_series = avg(dt.synthetic.browser.event.duration)
}, 
by:{ dt.entity.synthetic_test,
     dt.entity.synthetic_location}, 
filter: { matchesValue(entityAttr(dt.entity.synthetic_test, "tags"), "XYZ") }
| fieldsAdd monitor_name = entityAttr(dt.entity.synthetic_test, "entity.name")
| fieldsAdd location = entityAttr(dt.entity.synthetic_location, "entity.name")
| summarize { monitor_name = takeFirst(monitor_name), 
              location_name = takeFirst(location),
              availability =  avg(arrayAvg(availability_series)),
              performance =  avg(arrayAvg(performance_series))
          }, by: {dt.entity.synthetic_test,dt.entity.synthetic_location}
| sort availability asc, performance desc
| fieldsRename  `Monitor name` = monitor_name, 
                `Location` = location_name,
                `Availability` = availability, 
                `Avg Event duration` = performance&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 05:35:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-fetch-dt-synthetic-events-or-dt-synthetic-detailed-events/m-p/276140#M2011</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-04-29T05:35:21Z</dc:date>
    </item>
  </channel>
</rss>

