<?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: Extensions Dashboard in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293694#M5647</link>
    <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Can anyone help with DQL for above requirements if possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We can't able to find configuration name from any metric. Only we can find configuration id&lt;/P&gt;&lt;P&gt;But in dashboard we need to show configuration name. Pls help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jan 2026 12:24:47 GMT</pubDate>
    <dc:creator>Mani_Muthu3001</dc:creator>
    <dc:date>2026-01-27T12:24:47Z</dc:date>
    <item>
      <title>Extensions Dashboard</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293691#M5645</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have requirement to create dashboard based on extensions in our tenant. We have multiple extensions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Actual number of configuration by extension&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Actual number of configuration by extension with issue&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Identification of in which configuration one IP address is configured&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to create above dashboard . Is there any metric or entity we can use ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help with DQL to achieve above requirements&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jan 2026 07:54:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293691#M5645</guid>
      <dc:creator>Mani_Muthu3001</dc:creator>
      <dc:date>2026-01-28T07:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Extensions Dashboard</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293693#M5646</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;metrics
| filter metric.key == "dsfm:extension.status"
| limit 20&lt;/LI-CODE&gt;&lt;P&gt;Unfortunately, I don't have any extension connected to test it properly.&lt;BR /&gt;dsfm:extension.status is a Dynatrace self-monitoring metric used to check the health and deployment status of extensions (e.g., WMI, SNMP) in both SaaS and Managed environments. It identifies if an extension is running correctly or experiencing issues on specific hosts by tracking the state of monitoring configurations.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 11:47:55 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293693#M5646</guid>
      <dc:creator>t_pawlak</dc:creator>
      <dc:date>2026-01-27T11:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Extensions Dashboard</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293694#M5647</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Can anyone help with DQL for above requirements if possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We can't able to find configuration name from any metric. Only we can find configuration id&lt;/P&gt;&lt;P&gt;But in dashboard we need to show configuration name. Pls help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 12:24:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293694#M5647</guid>
      <dc:creator>Mani_Muthu3001</dc:creator>
      <dc:date>2026-01-27T12:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extensions Dashboard</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293698#M5648</link>
      <description>&lt;P&gt;This is hard (or impossible) to achieve with pure DQL/metrics, because your requirements are configuration inventory (number of monitoring configurations, configuration name, and endpoint/IP values inside the configuration). That data typically doesn’t exist as runtime telemetry. Even when extension self-monitoring metrics are available, they often expose only a configurationId, while the configuration name and parameters (IP/host/endpoints) live in the Extensions 2.0 “monitoring configuration” objects (the same place the UI reads them from).&lt;BR /&gt;But I think is possible some workaround:&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/discover-dynatrace/references/dynatrace-api/environment-api/extensions-20/monitoring-configurations/get-all" target="_blank"&gt;https://docs.dynatrace.com/docs/discover-dynatrace/references/dynatrace-api/environment-api/extensions-20/monitoring-configurations/get-all&lt;/A&gt;&lt;/P&gt;&lt;P&gt;SO first Pull the data via API (Extensions 2.0):&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;list monitoring configurations per extension,&lt;/LI&gt;&lt;LI&gt;read each configuration details (to get name + parameters/endpoints/IP),&lt;/LI&gt;&lt;LI&gt;optionally read configuration status/health to flag “with issue”.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;then Create an “inventory snapshot” periodically (e.g., every 15–60 minutes).&lt;/P&gt;&lt;P&gt;Ingest the snapshot back into Dynatrace as either:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;logs (simplest; great for IP search), or&lt;/LI&gt;&lt;LI&gt;custom metrics (e.g., a gauge value 1 with dimensions like extensionName, configName, configId, hasIssue) and build metric-based tiles&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;And show it on dashboard&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 12:40:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293698#M5648</guid>
      <dc:creator>t_pawlak</dc:creator>
      <dc:date>2026-01-27T12:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Extensions Dashboard</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293702#M5649</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/98384"&gt;@Mani_Muthu3001&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I was able to come up with this DQL&lt;BR /&gt;fetch `dt.entity.extensions:configuration`&lt;BR /&gt;| fields extName, extConfigId,extHost, extAgGroup, customIconPath, icon, id&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raksh_hitha_0-1769518834087.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/31758i38C9998C7FA6BDC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="raksh_hitha_0-1769518834087.png" alt="raksh_hitha_0-1769518834087.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;These have some fields that might be useful to you, we get ext name, and configID.., feel free to modify for your requirement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 13:07:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Extensions-Dashboard/m-p/293702#M5649</guid>
      <dc:creator>raksh_hitha</dc:creator>
      <dc:date>2026-01-27T13:07:09Z</dc:date>
    </item>
  </channel>
</rss>

