Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 46 | |
| 38 | |
| 36 | |
| 25 | |
| 23 |