27 Jan 2026 11:20 AM
Hi Team,
We have requirement to create dashboard based on extensions in our tenant. We have multiple extensions.
Actual number of configuration by extension
Actual number of configuration by extension with issue
Identification of in which configuration one IP address is configured
How to create above dashboard . Is there any metric or entity we can use ?
Please help with DQL to achieve above requirements
27 Jan 2026 11:47 AM
Hi,
try this:
metrics
| filter metric.key == "dsfm:extension.status"
| limit 20Unfortunately, I don't have any extension connected to test it properly.
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.
27 Jan 2026 12:24 PM
Thanks,
Can anyone help with DQL for above requirements if possible.
We can't able to find configuration name from any metric. Only we can find configuration id
But in dashboard we need to show configuration name. Pls help
27 Jan 2026 12:40 PM
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).
But I think is possible some workaround:
https://docs.dynatrace.com/docs/discover-dynatrace/references/dynatrace-api/environment-api/extensio...
SO first Pull the data via API (Extensions 2.0):
then Create an “inventory snapshot” periodically (e.g., every 15–60 minutes).
Ingest the snapshot back into Dynatrace as either:
And show it on dashboard
27 Jan 2026 01:07 PM
Hi @Mani_Muthu3001
I was able to come up with this DQL
fetch `dt.entity.extensions:configuration`
| fields extName, extConfigId,extHost, extAgGroup, customIconPath, icon, id
These have some fields that might be useful to you, we get ext name, and configID.., feel free to modify for your requirement.
Featured Posts