<?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: Displaying AWS EBS volumes that are near their maximum IOPS in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Display-AWS-EBS-Volumes-Near-Maximum-IOPS-Using-DQL/m-p/291679#M2896</link>
    <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/11859"&gt;@mark_linders&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN&gt;I just wanted to check in and see if you still need help with this. If so, I’d be happy to look into it for you!&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know what works best for you.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Dec 2025 10:27:50 GMT</pubDate>
    <dc:creator>IzabelaRokita</dc:creator>
    <dc:date>2025-12-17T10:27:50Z</dc:date>
    <item>
      <title>Display AWS EBS Volumes Near Maximum IOPS Using DQL</title>
      <link>https://community.dynatrace.com/t5/DQL/Display-AWS-EBS-Volumes-Near-Maximum-IOPS-Using-DQL/m-p/281120#M2267</link>
      <description>&lt;P&gt;I was using DQL to create a visualization that displays my EBS volumes and shows how close they are to hitting their maximum IOPS, or list if they are already under high usage.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I did something like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;timeseries by:{dt.entity.ebs_volume}, {
  avg_read_iops = avg(dt.cloud.aws.ebs.ops.read),
  avg_write_iops = avg(dt.cloud.aws.ebs.ops.write),
  avg_queue = avg(dt.cloud.aws.ebs.queue)
}
| fieldsAdd total_iops = arraySum(avg_read_iops) + arraySum(avg_write_iops)
| fieldsAdd queue_peak = coalesce(arrayMax(avg_queue), 0.0)
| fieldsAdd flag = if(queue_peak &amp;gt; 5, then: "High Queue",
                 else: if(total_iops &amp;gt;= 2700, then: "High IOPS", else: "Normal"))
| filter flag != "Normal"
| sort total_iops desc&lt;/LI-CODE&gt;
&lt;P&gt;But this takes 2700 as a fixed HIgh IOPS rate.&lt;BR /&gt;Now I can get a lot of information about my volumes:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;fetch dt.entity.ebs_volume
| fieldsAdd arn, deviceName, entity.name, id, iops, tags, belongs_to[dt.entity.ec2_instance]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;What I assumed was possible, is that I can use the information value from iops from dt.entity.ebs_volume and calculate if I am for example at 90% of my configured IOPS. Also using something like the entity.name in my graph would be super helpful.&lt;BR /&gt;&lt;BR /&gt;My main goal is as follows:&lt;BR /&gt;Display a graph or table with volumes, that are showing they are hitting their configured IOPS limits.&lt;BR /&gt;&lt;BR /&gt;Hope anyone can help me out on this.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 10:28:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Display-AWS-EBS-Volumes-Near-Maximum-IOPS-Using-DQL/m-p/281120#M2267</guid>
      <dc:creator>mark_linders</dc:creator>
      <dc:date>2025-12-17T10:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying AWS EBS volumes that are near their maximum IOPS</title>
      <link>https://community.dynatrace.com/t5/DQL/Display-AWS-EBS-Volumes-Near-Maximum-IOPS-Using-DQL/m-p/291679#M2896</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/11859"&gt;@mark_linders&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN&gt;I just wanted to check in and see if you still need help with this. If so, I’d be happy to look into it for you!&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know what works best for you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 10:27:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Display-AWS-EBS-Volumes-Near-Maximum-IOPS-Using-DQL/m-p/291679#M2896</guid>
      <dc:creator>IzabelaRokita</dc:creator>
      <dc:date>2025-12-17T10:27:50Z</dc:date>
    </item>
  </channel>
</rss>

