<?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 Host Availability Dashboard Pane in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Host-Availability-Dashboard-Pane/m-p/276118#M2009</link>
    <description>&lt;P&gt;I'm having trouble creating a pane for a help desk that shows when a host goes down. The problem I seem to be running into is that when a host goes down for something like a power failure, the agent stops reporting, and there is no data to indicate a "down" status, which seems to "remove" it from dashboards. Ultimately, when a host changes its availability state to something other than "up," I would like it to appear in a table until it's back "up". Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 28 Apr 2025 21:49:31 GMT</pubDate>
    <dc:creator>m_laurie_az</dc:creator>
    <dc:date>2025-04-28T21:49:31Z</dc:date>
    <item>
      <title>Host Availability Dashboard Pane</title>
      <link>https://community.dynatrace.com/t5/DQL/Host-Availability-Dashboard-Pane/m-p/276118#M2009</link>
      <description>&lt;P&gt;I'm having trouble creating a pane for a help desk that shows when a host goes down. The problem I seem to be running into is that when a host goes down for something like a power failure, the agent stops reporting, and there is no data to indicate a "down" status, which seems to "remove" it from dashboards. Ultimately, when a host changes its availability state to something other than "up," I would like it to appear in a table until it's back "up". Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 21:49:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Host-Availability-Dashboard-Pane/m-p/276118#M2009</guid>
      <dc:creator>m_laurie_az</dc:creator>
      <dc:date>2025-04-28T21:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Host Availability Dashboard Pane</title>
      <link>https://community.dynatrace.com/t5/DQL/Host-Availability-Dashboard-Pane/m-p/276139#M2010</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/88689"&gt;@m_laurie_az&lt;/a&gt;&amp;nbsp;There are a few ways to get around this issue , if you want to report some data when "no data" is being reported , you can use the&amp;nbsp;&lt;SPAN&gt;nonempty parameter in DQL.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;See below link for some details around the usage&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.dynatrace.com/t5/Open-Q-A/Host-availability-state-metric-of-no-data/m-p/270961" target="_blank"&gt;https://community.dynatrace.com/t5/Open-Q-A/Host-availability-state-metric-of-no-data/m-p/270961&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Alternatively, you can also report the Availability data in % in a table and list least available servers. Any drop in availability will be reported less than 100%. Here is a example DQL&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.entity.host
| fieldsAdd tags
| filter in(tags, "TIER:PRIORITY")
| filterOut isMonitoringCandidate == true or standalone == true
| lookup [
timeseries m1=max(dt.host.availability, rollup: sum),
filter:availability.state == "up",
by:{availability.state,dt.entity.host},from: toTimestamp($dt_timeframe_from), to: toTimestamp($dt_timeframe_to)-2m
| parse replaceString(toString(m1),"null","0"), """'['ARRAY{ DOUBLE:i ', '}{1,10000}:m1Pop"""
| fieldsAdd intervalToMinutes = toLong(interval)/60000000000 
| fieldsAdd availability= toDouble(arraySum(m1Pop)/(arraySize(m1Pop))*100)/intervalToMinutes],
sourceField: id, lookupField: dt.entity.host, fields: {availability}
| fields dt.entity.host = id, Host=entity.name,`Availability %`=coalesce(availability, 0)
| sort `Availability %` asc
| limit 10&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 05:25:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Host-Availability-Dashboard-Pane/m-p/276139#M2010</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-04-29T05:25:11Z</dc:date>
    </item>
  </channel>
</rss>

