<?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 Solution for Monitoring Disk Space based on Volume Size (Percentage or Free Space) in Custom Solutions Spotlight</title>
    <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/282640#M202</link>
    <description>&lt;P&gt;When migrating to Dynatrace you will find that it has no simple out of the box way to use different thresholds based on different metrics for disk space.&amp;nbsp; It is a fairly common practice to use &lt;STRONG&gt;% Free Space&lt;/STRONG&gt; for smaller volumes (normally under 1 terabyte) and to use &lt;STRONG&gt;Free Space Available&lt;/STRONG&gt; for larger volumes (normally over 1 terabyte).&amp;nbsp; Even if you used the same metrics for both size volumes, common sense dictates that the thresholds would have to be different based on size anyway or you would get useless alerts, either for small volumes that will NEVER have the amount of free space a large volume has OR a large volume that is below 10% free, but still has over 100GB free.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;So how do you address this? Well, after looking at all the solutions that had been posted online in various forums and trying to make disk edge address this specific scenario, Davis Anomaly Detector's (DAD's) seemed to be the logical solution.&amp;nbsp; Why not metric events you may ask?&amp;nbsp; Well, we tried that first, and found the issue is the dimension limits that you will not be able to keep under control in metric events, however, if you filter the DQL in a DAD correctly it keeps the dimension issue in check.&amp;nbsp; Why not Disk Edge?&amp;nbsp; Well, it relies on host properties, and that just is not the route we wanted to go.&amp;nbsp; DAD's provide a somewhat simple self contained way via DQL to calculate a volumes size and then use the correct threshold.&amp;nbsp; Note that you will have one DAD for each type of threshold (% Free or Free space avail) and also for each "severity level" you wish to alert at (Warning/critical, etc).&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Although There is a limit on the number of static threshold DAD's you can have of 100, this is still the simplest and most practical way we have found to address this concern.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;Enough about all that, here are the nuts and bolts, let's start with the DQL that is the meat of the solution.&amp;nbsp; The comments document the query, so be sure to read them (the query is setup for LARGE VOLUME WARNING, be aware of this as you read through the section that has a thresholds). Also note that we addressed the issue of disk exclusions in Dynatrace being slow to implement sometimes by filtering any DISKS we had TAGGED with ALERT:FALSE (via API) from alerting:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// query the disk for used space, available space, then calculate total size and percentage available&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier" size="2"&gt;timeseries {usage=avg(dt.host.disk.used, rollup:avg), avail=avg(dt.host.disk.avail, rollup: avg)}, by:{dt.entity.host, dt.source_entity}, interval:1m&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd size = avail[] + usage[]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd percentAvail = avail[]/size[]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd DiskSize=arrayavg(size), DiskAvail=arrayavg(avail), DiskUsage=arrayavg(usage)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd DiskAvailPercent=(DiskAvail/DiskSize)*100&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// filter for large or small volume here&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filter DiskSize &amp;gt; 1000000000000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// filter for percent free or space available here&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// Small volumes use DiskPercentAvail&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// warning (and clause to prevent warn/crit from firing at the same time)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;//| filter DiskAvailPercent&amp;lt;10 and&amp;nbsp;DiskAvailPercent&amp;gt;4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// critical&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;//| filter DiskAvailPercent&amp;lt;5&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// Large volumes use DiskAvail&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// warning&amp;nbsp;(and clause to prevent warn/crit from firing at the same time)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filter DiskAvail &amp;lt; 91268055040 and&amp;nbsp;DiskAvail &amp;gt; 59055800319&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// critical&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;//| filter DiskAvail &amp;lt; 59055800320&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// add additional fields to remaining records for additional filtering&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| lookup [ &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fetch dt.entity.disk&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;], &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;sourceField: dt.source_entity,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;lookupField: id,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fields: {disk.entity.name = entity.name, tags}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd strTags=toString(tags)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// remove any disk that are tagged as Alert:False, are shared windows volumes, or are mapped drives&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterOut contains(strTags,"Alert:False")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterout contains( disk.entity.name, "\\\\") and not contains(`disk.entity.name`,"windows_share")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| lookup [ &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fetch dt.entity.host&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;], &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;sourceField: dt.entity.host,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;lookupField: id,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fields: {host.entity.name = entity.name, hypervisorType, networkZone}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// remove any kubernetes drives or drives with null volume names&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterout isnull(disk.entity.name) &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterout contains(networkZone,"_k8s")&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// remove unnecessary fields - remember to leave only the appropriate array for large(avail) or small(percentAvail) volumes&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsremove hypervisorType, networkZone, tags, strTags, usage, DiskUsage, size, DiskSize, DiskAvail, DiskAvailPercent, percentAvail&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Ok, so that is the query, now, for the DAD, obviously, put the query in the SCOPE, for the alert condition (adjust as needed for your shop) be sure to put the same threshold used in the DQL:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unclelou1964_0-1753884501432.png" style="width: 835px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29296i59AE5AFA5B992197/image-dimensions/835x687?v=v2" width="835" height="687" role="button" title="Unclelou1964_0-1753884501432.png" alt="Unclelou1964_0-1753884501432.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and for the details (again adjust as needed for your shop):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unclelou1964_1-1753884585712.png" style="width: 870px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29297i451E11CDF6AE5BC6/image-dimensions/870x713?v=v2" width="870" height="713" role="button" title="Unclelou1964_1-1753884585712.png" alt="Unclelou1964_1-1753884585712.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I hope this helps anyone else who is fighting disk space monitoring limitations in Dynatrace.&amp;nbsp; Please comment with any issues or ideas for improvement.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jul 2025 05:50:20 GMT</pubDate>
    <dc:creator>Unclelou1964</dc:creator>
    <dc:date>2025-07-31T05:50:20Z</dc:date>
    <item>
      <title>Solution for Monitoring Disk Space based on Volume Size (Percentage or Free Space)</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/282640#M202</link>
      <description>&lt;P&gt;When migrating to Dynatrace you will find that it has no simple out of the box way to use different thresholds based on different metrics for disk space.&amp;nbsp; It is a fairly common practice to use &lt;STRONG&gt;% Free Space&lt;/STRONG&gt; for smaller volumes (normally under 1 terabyte) and to use &lt;STRONG&gt;Free Space Available&lt;/STRONG&gt; for larger volumes (normally over 1 terabyte).&amp;nbsp; Even if you used the same metrics for both size volumes, common sense dictates that the thresholds would have to be different based on size anyway or you would get useless alerts, either for small volumes that will NEVER have the amount of free space a large volume has OR a large volume that is below 10% free, but still has over 100GB free.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;So how do you address this? Well, after looking at all the solutions that had been posted online in various forums and trying to make disk edge address this specific scenario, Davis Anomaly Detector's (DAD's) seemed to be the logical solution.&amp;nbsp; Why not metric events you may ask?&amp;nbsp; Well, we tried that first, and found the issue is the dimension limits that you will not be able to keep under control in metric events, however, if you filter the DQL in a DAD correctly it keeps the dimension issue in check.&amp;nbsp; Why not Disk Edge?&amp;nbsp; Well, it relies on host properties, and that just is not the route we wanted to go.&amp;nbsp; DAD's provide a somewhat simple self contained way via DQL to calculate a volumes size and then use the correct threshold.&amp;nbsp; Note that you will have one DAD for each type of threshold (% Free or Free space avail) and also for each "severity level" you wish to alert at (Warning/critical, etc).&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Although There is a limit on the number of static threshold DAD's you can have of 100, this is still the simplest and most practical way we have found to address this concern.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;Enough about all that, here are the nuts and bolts, let's start with the DQL that is the meat of the solution.&amp;nbsp; The comments document the query, so be sure to read them (the query is setup for LARGE VOLUME WARNING, be aware of this as you read through the section that has a thresholds). Also note that we addressed the issue of disk exclusions in Dynatrace being slow to implement sometimes by filtering any DISKS we had TAGGED with ALERT:FALSE (via API) from alerting:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// query the disk for used space, available space, then calculate total size and percentage available&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier" size="2"&gt;timeseries {usage=avg(dt.host.disk.used, rollup:avg), avail=avg(dt.host.disk.avail, rollup: avg)}, by:{dt.entity.host, dt.source_entity}, interval:1m&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd size = avail[] + usage[]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd percentAvail = avail[]/size[]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd DiskSize=arrayavg(size), DiskAvail=arrayavg(avail), DiskUsage=arrayavg(usage)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd DiskAvailPercent=(DiskAvail/DiskSize)*100&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// filter for large or small volume here&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filter DiskSize &amp;gt; 1000000000000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// filter for percent free or space available here&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// Small volumes use DiskPercentAvail&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// warning (and clause to prevent warn/crit from firing at the same time)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;//| filter DiskAvailPercent&amp;lt;10 and&amp;nbsp;DiskAvailPercent&amp;gt;4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// critical&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;//| filter DiskAvailPercent&amp;lt;5&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// Large volumes use DiskAvail&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// warning&amp;nbsp;(and clause to prevent warn/crit from firing at the same time)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filter DiskAvail &amp;lt; 91268055040 and&amp;nbsp;DiskAvail &amp;gt; 59055800319&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;// critical&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;//| filter DiskAvail &amp;lt; 59055800320&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// add additional fields to remaining records for additional filtering&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| lookup [ &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fetch dt.entity.disk&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;], &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;sourceField: dt.source_entity,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;lookupField: id,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fields: {disk.entity.name = entity.name, tags}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsadd strTags=toString(tags)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// remove any disk that are tagged as Alert:False, are shared windows volumes, or are mapped drives&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterOut contains(strTags,"Alert:False")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterout contains( disk.entity.name, "\\\\") and not contains(`disk.entity.name`,"windows_share")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| lookup [ &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fetch dt.entity.host&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;], &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;sourceField: dt.entity.host,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;lookupField: id,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;fields: {host.entity.name = entity.name, hypervisorType, networkZone}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// remove any kubernetes drives or drives with null volume names&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterout isnull(disk.entity.name) &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| filterout contains(networkZone,"_k8s")&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// remove unnecessary fields - remember to leave only the appropriate array for large(avail) or small(percentAvail) volumes&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;| fieldsremove hypervisorType, networkZone, tags, strTags, usage, DiskUsage, size, DiskSize, DiskAvail, DiskAvailPercent, percentAvail&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Ok, so that is the query, now, for the DAD, obviously, put the query in the SCOPE, for the alert condition (adjust as needed for your shop) be sure to put the same threshold used in the DQL:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unclelou1964_0-1753884501432.png" style="width: 835px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29296i59AE5AFA5B992197/image-dimensions/835x687?v=v2" width="835" height="687" role="button" title="Unclelou1964_0-1753884501432.png" alt="Unclelou1964_0-1753884501432.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and for the details (again adjust as needed for your shop):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unclelou1964_1-1753884585712.png" style="width: 870px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29297i451E11CDF6AE5BC6/image-dimensions/870x713?v=v2" width="870" height="713" role="button" title="Unclelou1964_1-1753884585712.png" alt="Unclelou1964_1-1753884585712.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I hope this helps anyone else who is fighting disk space monitoring limitations in Dynatrace.&amp;nbsp; Please comment with any issues or ideas for improvement.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 05:50:20 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/282640#M202</guid>
      <dc:creator>Unclelou1964</dc:creator>
      <dc:date>2025-07-31T05:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Solution for Monitoring Disk Space based on Volume Size (Percentage or Free Space)</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/282675#M203</link>
      <description>&lt;P&gt;Thank you!!!&amp;nbsp;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@9BD876A77FEF3D5EF4BC972CF8A97CB1/images/emoticons/take_my_money.png" alt=":take_my_money:" title=":take_my_money:" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 06:23:49 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/282675#M203</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2025-07-31T06:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Solution for Monitoring Disk Space based on Volume Size (Percentage or Free Space)</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/282986#M204</link>
      <description>&lt;P&gt;Disk edge alerting can be triggered on available space % and MiB as well. So if I understand correctly, your DQL contains tag based filtering. Also looking at an earlier post from you -&amp;nbsp;&lt;A href="https://community.dynatrace.com/t5/Product-ideas/Allow-the-use-of-tags-at-the-disk-level-in-disk-edge/idi-p/273623" target="_blank"&gt;https://community.dynatrace.com/t5/Product-ideas/Allow-the-use-of-tags-at-the-disk-level-in-disk-edge/idi-p/273623&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;In case the edge alert's disk filter would accept tags ... would that provide a reasonable / final solution for this problem?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 13:31:40 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/282986#M204</guid>
      <dc:creator>Geri_Puskas</dc:creator>
      <dc:date>2025-08-04T13:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Solution for Monitoring Disk Space based on Volume Size (Percentage or Free Space)</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/284359#M207</link>
      <description>&lt;P&gt;Disk Edge does not accept tags, and I submitted an RFE to use tags in Disk edge but it was rejected as not part of the roadmap&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 14:27:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/Solution-for-Monitoring-Disk-Space-based-on-Volume-Size/m-p/284359#M207</guid>
      <dc:creator>Unclelou1964</dc:creator>
      <dc:date>2025-08-20T14:27:47Z</dc:date>
    </item>
  </channel>
</rss>

