<?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: Dashboards - can I filter by a host property? in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/Dashboards-filter-by-a-host-property/m-p/237166#M3715</link>
    <description>&lt;P&gt;Hi, &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/72241"&gt;@estrella86&lt;/a&gt; , yes you can.&lt;/P&gt;&lt;P&gt;You should get these filters automatically when searching in UI (not advanced mode).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image (16).png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17608i9992AC3D6F12D8DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="image (16).png" alt="image (16).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you do not see the property you need in the list, you can create a tag for it, using it as placeholder: &lt;A href="https://docs.dynatrace.com/docs/manage/tags-and-metadata/setup/how-to-define-tags#service-and-process-group-properties-available-for-tagging" target="_blank" rel="noopener"&gt;https://docs.dynatrace.com/docs/manage/tags-and-metadata/setup/how-to-define-tags#service-and-process-group-properties-available-for-tagging&lt;/A&gt;, and then, use the tag as filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And assuming you wants to use the DQL version, you could try something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries cpu=avg(dt.host.cpu.usage), by:{dt.entity.host}
| sort arrayAvg(cpu), direction:"descending"
| lookup [fetch dt.entity.host], fields:{entity.name, osType, tags}, sourceField:dt.entity.host, lookupField: id
//| expand tags
| filter contains(osType,"LINUX")
| fields entity.name, cpu, interval, timeframe, osType&lt;/LI-CODE&gt;&lt;P&gt;Just replace the osType by the property you need.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Feb 2024 20:32:04 GMT</pubDate>
    <dc:creator>dannemca</dc:creator>
    <dc:date>2024-02-14T20:32:04Z</dc:date>
    <item>
      <title>Dashboards - filter by a host property</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboards-filter-by-a-host-property/m-p/237160#M3710</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am new to Dynatrace and am just learning about dashboards. I've tried to find this info but having no luck.&amp;nbsp;If I add a graph from a host to a new dashboard and look at it in Data Explorer, I can see queries like this:&lt;/P&gt;
&lt;P&gt;builtin:host.mem.total:filter(eq("dt.entity.host",&lt;EM&gt;hostname&lt;/EM&gt;))&lt;/P&gt;
&lt;P&gt;Can I instead of using a specific &lt;EM&gt;hostname&lt;/EM&gt;, look at hosts that contain a specific property? For example if I click on the host and go to properties and tags I see all the discovered properties like IP addresses, OS version, instance type, security groups, a bunch of stuff. Can all of these properties be used in the query so that I can grab info on multiple hosts that for example have the same property?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 13:05:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboards-filter-by-a-host-property/m-p/237160#M3710</guid>
      <dc:creator>estrella86</dc:creator>
      <dc:date>2024-08-13T13:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboards - can I filter by a host property?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboards-filter-by-a-host-property/m-p/237166#M3715</link>
      <description>&lt;P&gt;Hi, &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/72241"&gt;@estrella86&lt;/a&gt; , yes you can.&lt;/P&gt;&lt;P&gt;You should get these filters automatically when searching in UI (not advanced mode).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image (16).png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17608i9992AC3D6F12D8DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="image (16).png" alt="image (16).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you do not see the property you need in the list, you can create a tag for it, using it as placeholder: &lt;A href="https://docs.dynatrace.com/docs/manage/tags-and-metadata/setup/how-to-define-tags#service-and-process-group-properties-available-for-tagging" target="_blank" rel="noopener"&gt;https://docs.dynatrace.com/docs/manage/tags-and-metadata/setup/how-to-define-tags#service-and-process-group-properties-available-for-tagging&lt;/A&gt;, and then, use the tag as filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And assuming you wants to use the DQL version, you could try something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries cpu=avg(dt.host.cpu.usage), by:{dt.entity.host}
| sort arrayAvg(cpu), direction:"descending"
| lookup [fetch dt.entity.host], fields:{entity.name, osType, tags}, sourceField:dt.entity.host, lookupField: id
//| expand tags
| filter contains(osType,"LINUX")
| fields entity.name, cpu, interval, timeframe, osType&lt;/LI-CODE&gt;&lt;P&gt;Just replace the osType by the property you need.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 20:32:04 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboards-filter-by-a-host-property/m-p/237166#M3715</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2024-02-14T20:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboards - can I filter by a host property?</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboards-filter-by-a-host-property/m-p/281631#M5207</link>
      <description>&lt;P&gt;How to extract the properties on each host using DQL?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 09:12:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboards-filter-by-a-host-property/m-p/281631#M5207</guid>
      <dc:creator>MarwanC</dc:creator>
      <dc:date>2025-07-16T09:12:14Z</dc:date>
    </item>
  </channel>
</rss>

