Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Is there a way to see when a Power Automate flow or some direct DAX query is run semantic models?
Solved! Go to Solution.
If the semantic model is on Premium or Fabric capacity, you can query Dynamic Management Views (DMVs) via:
SSMS
DAX Studio
Tabular Editor
The two most useful ones:
SELECT *
FROM $SYSTEM.DISCOVER_SESSIONSSELECT *
FROM $SYSTEM.DISCOVER_COMMANDSThese show:
active sessions
command type (DAX / MDX)
start time
user / caller
client application (sometimes)
This is near-real-time only. Once the query finishes, it’s gone.
SELECT *
FROM $SYSTEM.DISCOVER_QUERY_STATSThis gives you:
query duration
CPU / memory
rows returned
user / effective identity
client app
Limitations:
short retention (minutes, not hours/days)
no full DAX text
entries can be evicted quickly under load
Another alternative might be using FUAM : https://github.com/GT-Analytics/fuam-basic
Using this will enable you to check queries that is executed on the Semantic Models as far as you open FUAM for monitoring.
If the semantic model is on Premium or Fabric capacity, you can query Dynamic Management Views (DMVs) via:
SSMS
DAX Studio
Tabular Editor
The two most useful ones:
SELECT *
FROM $SYSTEM.DISCOVER_SESSIONSSELECT *
FROM $SYSTEM.DISCOVER_COMMANDSThese show:
active sessions
command type (DAX / MDX)
start time
user / caller
client application (sometimes)
This is near-real-time only. Once the query finishes, it’s gone.
SELECT *
FROM $SYSTEM.DISCOVER_QUERY_STATSThis gives you:
query duration
CPU / memory
rows returned
user / effective identity
client app
Limitations:
short retention (minutes, not hours/days)
no full DAX text
entries can be evicted quickly under load
Another alternative might be using FUAM : https://github.com/GT-Analytics/fuam-basic
Using this will enable you to check queries that is executed on the Semantic Models as far as you open FUAM for monitoring.
Thank you!
Do you happen to know if Power Automate shows up in the client app?
If it sends a query to the semantic model, I believe it can be seen by using those mentioned ways.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.