<?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: How to query process_group_instance that belongs to a specific process_group? in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297584#M3265</link>
    <description>&lt;P&gt;Thank you. I didn't realise it was so simple!&lt;BR /&gt;But it seems that this solution doesn't work for another metric.&lt;BR /&gt;I'm trying this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries max(dt.runtime.websphere.threadpool.active_threads)
, by:{dt.entity.process_group_instance }
, filter: { entityName(dt.entity.process_group)=="WebSphere AS"}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;And I don't see anything.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Apr 2026 07:58:21 GMT</pubDate>
    <dc:creator>albertokirey</dc:creator>
    <dc:date>2026-04-13T07:58:21Z</dc:date>
    <item>
      <title>How to query process_group_instance that belongs to a specific process_group?</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297557#M3262</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I would like to build a graph with the heap memory used of all process_group_instance that belongs to a specific process_group.&lt;BR /&gt;I'm trying this:&lt;BR /&gt;&lt;BR /&gt;timeseries avg(dt.runtime.jvm.memory_pool.used), by:{dt.entity.process_group_instance}&lt;BR /&gt;| fieldsAdd process_group = entityAttr(dt.entity.process_group_instance, "instance_of")&lt;BR /&gt;| expand process_group&lt;BR /&gt;| fieldsAdd process_group_name = entityName(process_group)&lt;BR /&gt;&lt;BR /&gt;but it doesn't work.&lt;BR /&gt;Which is the correct form?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 17:02:51 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297557#M3262</guid>
      <dc:creator>albertokirey</dc:creator>
      <dc:date>2026-04-10T17:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to query process_group_instance that belongs to a specific process_group?</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297569#M3263</link>
      <description>&lt;P&gt;Why so complicated?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries avg(dt.runtime.jvm.memory_pool.used)
, by:{ dt.entity.process_group_instance}
, filter: { entityName(dt.entity.process_group)=="My Java Process Group Name"}&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 10 Apr 2026 19:27:18 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297569#M3263</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-04-10T19:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to query process_group_instance that belongs to a specific process_group?</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297584#M3265</link>
      <description>&lt;P&gt;Thank you. I didn't realise it was so simple!&lt;BR /&gt;But it seems that this solution doesn't work for another metric.&lt;BR /&gt;I'm trying this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries max(dt.runtime.websphere.threadpool.active_threads)
, by:{dt.entity.process_group_instance }
, filter: { entityName(dt.entity.process_group)=="WebSphere AS"}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;And I don't see anything.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2026 07:58:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297584#M3265</guid>
      <dc:creator>albertokirey</dc:creator>
      <dc:date>2026-04-13T07:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to query process_group_instance that belongs to a specific process_group?</title>
      <link>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297604#M3266</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/59990"&gt;@albertokirey&lt;/a&gt;&amp;nbsp;If the metric does not include the process group, you can use this approach. Adjust the filtering of Process Group name accordingly.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries avg(dt.runtime.websphere.threadpool.active_threads)
, by: { dt.entity.process_group_instance }
| join [ 
  fetch dt.entity.process_group
  | filter entity.name ~ "WebSphere AS myCell"
  | fieldsAdd dt.entity.process_group_instance = instantiates[dt.entity.process_group_instance]
  | expand dt.entity.process_group_instance
], on:{left[dt.entity.process_group_instance]==right[dt.entity.process_group_instance]}, fields:{ entity.name}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2026 11:22:07 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/How-to-query-process-group-instance-that-belongs-to-a-specific/m-p/297604#M3266</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2026-04-13T11:22:07Z</dc:date>
    </item>
  </channel>
</rss>

