<?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: Show a top 20 list of servers that consume the most disk space in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/293867#M3104</link>
    <description>&lt;P&gt;This was a solutions for me...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_0-1769701996680.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31802i8662B82D59F69668/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_0-1769701996680.png" alt="MillerGEP_0-1769701996680.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;/* 1.&amp;nbsp; Hosts with OneAgent that have TOP disks --------------*/&lt;/P&gt;&lt;P&gt;fetch dt.entity.host&lt;/P&gt;&lt;P&gt;| filter id in [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeseries disk = avg(dt.host.disk.used.percent),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by: {dt.entity.host, dt.entity.disk}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fieldsAdd disk = arrayLast(disk)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | filterOut isNull(disk)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | sort disk desc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | limit 30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | dedup dt.entity.host&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fields dt.entity.host&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 2.&amp;nbsp; Disks of those hosts (we bring in id, disk and keep id as HostId) ---*/&lt;/P&gt;&lt;P&gt;| lookup [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeseries disk = avg(dt.host.disk.used.percent),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by: {dt.entity.host, dt.entity.disk, dt.metrics.source}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fields disk&amp;nbsp;&amp;nbsp; = arrayLast(disk),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.entity.host,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.entity.disk,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.metrics.source&lt;/P&gt;&lt;P&gt;], sourceField: id, lookupField: dt.entity.host, fields: {disk, dt.entity.host, dt.entity.disk, dt.metrics.source}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 3.&amp;nbsp; Readable disk name -----------------------------*/&lt;/P&gt;&lt;P&gt;| lookup [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fetch dt.entity.disk&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fields id, entity.name&lt;/P&gt;&lt;P&gt;], sourceField: dt.entity.disk, lookupField: id, fields: {entity.name}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 4. Readable disk host ------------------------------*/&lt;/P&gt;&lt;P&gt;| fieldsAdd HostName = entityName(dt.entity.host)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 5.&amp;nbsp; Final exit -----------------------------------------*/&lt;/P&gt;&lt;P&gt;| fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HostName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DiskName&amp;nbsp;&amp;nbsp;&amp;nbsp; = entity.name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DiskUsedPct = disk,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataSource&amp;nbsp; = dt.metrics.source&lt;/P&gt;&lt;P&gt;| sort DiskUsedPct desc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_1-1769702238546.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31803iEA7116ED73A5E62C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_1-1769702238546.png" alt="MillerGEP_1-1769702238546.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Jan 2026 15:57:38 GMT</pubDate>
    <dc:creator>MillerGEP</dc:creator>
    <dc:date>2026-01-29T15:57:38Z</dc:date>
    <item>
      <title>Show a top 20 list of servers that consume the most disk space</title>
      <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/290924#M2848</link>
      <description>&lt;P&gt;Hi Everyone.&amp;nbsp;I'm trying to create a dashboard with a top 20 list of servers that consume the most disk space. I'm using this DQL, but it's not working. I think it's because I don't have the dt.host.disk.total metric. So, which one can I use? What do you recommend?&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;timeseries {used=avg(dt.host.disk.used), total=avg(dt.host.disk.total)}, by:{dt.host.name,dt.host.disk.name}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;| fieldsAdd capacidad=arrayAvg(total), usado=arrayAvg(used)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;| fieldsAdd Porcentaje_Usado=(usado*100)/capacidad&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;| sort Porcentaje_Usado desc&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;| fieldsRename Host=dt.host.name, Disco=dt.host.disk.name&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;| fields Host, Disco, capacidad, usado, Porcentaje_Usado&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;| limit 20&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_0-1764949202515.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31118iAFCBB4C8539E8776/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_0-1764949202515.png" alt="MillerGEP_0-1764949202515.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Any idea ?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 07:16:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/290924#M2848</guid>
      <dc:creator>MillerGEP</dc:creator>
      <dc:date>2025-12-08T07:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Show a top 20 list of servers that consume the most disk space</title>
      <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/290993#M2852</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/74933"&gt;@MillerGEP&lt;/a&gt;&amp;nbsp;You can try something like below for total&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| fieldsAdd 
 Disk = entityName(dt.entity.disk),
 Free = arrayLast(`avg(dt.host.disk.free)`),
 Space_Used = arrayLast(`avg(dt.host.disk.used)`),
 Space_Available = arrayLast(`avg(dt.host.disk.avail)`)
| fieldsAdd Space_Total = Space_Used + Space_Available&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 05:19:12 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/290993#M2852</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-12-08T05:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Show a top 20 list of servers that consume the most disk space</title>
      <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291154#M2867</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; thanks for the sugerence. I don't know if i doing something bad, because isn't working.&lt;/P&gt;&lt;P&gt;The message indicate that dt.host.disk.free doesn't exist ----&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_0-1765290453341.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31167i7996C60EFD0814F5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_0-1765290453341.png" alt="MillerGEP_0-1765290453341.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And i see that metric only work for f5 hosts and my dashboard is for host with oneagent installed...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_1-1765290621295.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31168iDECD5280DABC1D6A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_1-1765290621295.png" alt="MillerGEP_1-1765290621295.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 14:31:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291154#M2867</guid>
      <dc:creator>MillerGEP</dc:creator>
      <dc:date>2025-12-09T14:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Show a top 20 list of servers that consume the most disk space</title>
      <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291163#M2868</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/74933"&gt;@MillerGEP&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Dynatrace provide the following DQL to get 15 hosts with highest utilization (5 highest CPU, 5 highest memory, 5 highest disk usages) :&lt;/P&gt;&lt;P&gt;fetch dt.entity.host&lt;BR /&gt;| filter id in [&lt;BR /&gt;&lt;BR /&gt;timeseries { CPU=avg(dt.host.cpu.usage) }, by: {dt.entity.host}&lt;BR /&gt;| fieldsAdd CPU=arrayLast(CPU)&lt;BR /&gt;| filterOut isNull(CPU)&lt;BR /&gt;| sort CPU desc&lt;BR /&gt;| limit 5&lt;BR /&gt;&lt;BR /&gt;| append [&lt;BR /&gt;timeseries { Memory=avg(dt.host.memory.usage) }, by: {dt.entity.host}&lt;BR /&gt;| fieldsAdd Memory=arrayLast(Memory)&lt;BR /&gt;| filterOut isNull(Memory)&lt;BR /&gt;| sort Memory desc&lt;BR /&gt;| limit 5&lt;BR /&gt;]&lt;/P&gt;&lt;P&gt;| append [&lt;BR /&gt;timeseries { Disk=avg(dt.host.disk.used.percent) }, by: {dt.entity.host}&lt;BR /&gt;| fieldsAdd Disk=arrayLast(Disk)&lt;BR /&gt;| filterOut isNull(Disk)&lt;BR /&gt;| sort Disk desc&lt;BR /&gt;| limit 5&lt;BR /&gt;]&lt;/P&gt;&lt;P&gt;| dedup dt.entity.host&lt;BR /&gt;| fields dt.entity.host&lt;BR /&gt;]&lt;/P&gt;&lt;P&gt;| lookup [&lt;BR /&gt;timeseries {&lt;BR /&gt;CPU=avg(dt.host.cpu.usage),&lt;BR /&gt;Memory=avg(dt.host.memory.usage),&lt;BR /&gt;Disk=avg(dt.host.disk.used.percent)&lt;BR /&gt;}, by: {dt.entity.host}&lt;BR /&gt;| fields CPU=arrayLast(CPU), Memory=arrayLast(Memory), Disk=arrayLast(Disk), dt.entity.host&lt;BR /&gt;], sourceField:id, lookupField:dt.entity.host, fields: {CPU, Memory, Disk, dt.entity.host}, executionOrder:leftFirst&lt;/P&gt;&lt;P&gt;| fields Name=entity.name, dt.entity.host, CPU, Memory, Disk&lt;/P&gt;&lt;P&gt;Is that OK for you ?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 15:50:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291163#M2868</guid>
      <dc:creator>JeanBlanc</dc:creator>
      <dc:date>2025-12-09T15:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show a top 20 list of servers that consume the most disk space</title>
      <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291167#M2869</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/48146"&gt;@JeanBlanc&lt;/a&gt;&amp;nbsp; i think that maybe this DQL working for me. But I have 2 questions:&lt;/P&gt;&lt;P&gt;1) What disk/unit/filesystem consume the percentage, disk C or D or /opt, the dql show the consume of disk but not indicate wich.&lt;/P&gt;&lt;P&gt;2) How can only show data of host that have installed oneagent, on the screen you can see name like dispatcher.resolution, bank-integrator wich isn't clear if is a server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_0-1765297923903.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31170iE82CCCF9679D7E93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_0-1765297923903.png" alt="MillerGEP_0-1765297923903.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 16:41:45 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291167#M2869</guid>
      <dc:creator>MillerGEP</dc:creator>
      <dc:date>2025-12-09T16:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Show a top 20 list of servers that consume the most disk space</title>
      <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291173#M2870</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/74933"&gt;@MillerGEP&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I suggest to add 2 dimensions in your query : dt.entity.disk and dt.metric.source&lt;/P&gt;&lt;P&gt;Then you have to do a lookup to fetch disk name.&lt;/P&gt;&lt;P&gt;A step by step query like this should help you (starting on the lookup part of your query) :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| lookup [
timeseries {
Disk=avg(dt.host.disk.used.percent)
}, by: {dt.entity.host,dt.entity.disk,dt.metrics.source}
| fields Disk=arrayLast(Disk), dt.entity.host, dt.entity.disk, dt.metrics.source
], sourceField:id, lookupField:dt.entity.host, fields: {Disk, dt.entity.host, dt.entity.disk,dt.metrics.source}, executionOrder:leftFirst

| fields Name=entity.name, dt.entity.host, Disk, DiskId=dt.entity.disk, DataSource=dt.metrics.source

| lookup [
fetch dt.entity.disk
| fields id, entity.name
 ], sourceField:DiskId , lookupField:id, fields:{entity.name}, executionOrder:leftFirst
| fields Name, Disk, DiskName=entity.name, DataSource&lt;/LI-CODE&gt;&lt;P&gt;Hope this helps !&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 19:01:33 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/291173#M2870</guid>
      <dc:creator>Pierre_L</dc:creator>
      <dc:date>2025-12-09T19:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Show a top 20 list of servers that consume the most disk space</title>
      <link>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/293867#M3104</link>
      <description>&lt;P&gt;This was a solutions for me...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_0-1769701996680.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31802i8662B82D59F69668/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_0-1769701996680.png" alt="MillerGEP_0-1769701996680.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;/* 1.&amp;nbsp; Hosts with OneAgent that have TOP disks --------------*/&lt;/P&gt;&lt;P&gt;fetch dt.entity.host&lt;/P&gt;&lt;P&gt;| filter id in [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeseries disk = avg(dt.host.disk.used.percent),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by: {dt.entity.host, dt.entity.disk}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fieldsAdd disk = arrayLast(disk)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | filterOut isNull(disk)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | sort disk desc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | limit 30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | dedup dt.entity.host&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fields dt.entity.host&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 2.&amp;nbsp; Disks of those hosts (we bring in id, disk and keep id as HostId) ---*/&lt;/P&gt;&lt;P&gt;| lookup [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeseries disk = avg(dt.host.disk.used.percent),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by: {dt.entity.host, dt.entity.disk, dt.metrics.source}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fields disk&amp;nbsp;&amp;nbsp; = arrayLast(disk),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.entity.host,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.entity.disk,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt.metrics.source&lt;/P&gt;&lt;P&gt;], sourceField: id, lookupField: dt.entity.host, fields: {disk, dt.entity.host, dt.entity.disk, dt.metrics.source}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 3.&amp;nbsp; Readable disk name -----------------------------*/&lt;/P&gt;&lt;P&gt;| lookup [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fetch dt.entity.disk&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | fields id, entity.name&lt;/P&gt;&lt;P&gt;], sourceField: dt.entity.disk, lookupField: id, fields: {entity.name}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 4. Readable disk host ------------------------------*/&lt;/P&gt;&lt;P&gt;| fieldsAdd HostName = entityName(dt.entity.host)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* 5.&amp;nbsp; Final exit -----------------------------------------*/&lt;/P&gt;&lt;P&gt;| fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HostName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DiskName&amp;nbsp;&amp;nbsp;&amp;nbsp; = entity.name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DiskUsedPct = disk,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataSource&amp;nbsp; = dt.metrics.source&lt;/P&gt;&lt;P&gt;| sort DiskUsedPct desc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MillerGEP_1-1769702238546.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31803iEA7116ED73A5E62C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MillerGEP_1-1769702238546.png" alt="MillerGEP_1-1769702238546.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2026 15:57:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Show-a-top-20-list-of-servers-that-consume-the-most-disk-space/m-p/293867#M3104</guid>
      <dc:creator>MillerGEP</dc:creator>
      <dc:date>2026-01-29T15:57:38Z</dc:date>
    </item>
  </channel>
</rss>

