Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next 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

Reply
sasdfasdfsad
Advocate III
Advocate III

Usage: see connections from Power Automate to Semantic models?

Is there a way to see when a Power Automate flow or some direct DAX query is run semantic models?


1 ACCEPTED SOLUTION
cengizhanarslan
Super User
Super User

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_SESSIONS
SELECT *
FROM $SYSTEM.DISCOVER_COMMANDS

These 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_STATS

This 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 this helped, ✓ Mark as Solution | Kudos appreciated
Connect on LinkedIn | Follow on Medium
AI-assisted tools are used solely for wording support. All conclusions are independently reviewed.

View solution in original post

3 REPLIES 3
cengizhanarslan
Super User
Super User

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_SESSIONS
SELECT *
FROM $SYSTEM.DISCOVER_COMMANDS

These 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_STATS

This 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 this helped, ✓ Mark as Solution | Kudos appreciated
Connect on LinkedIn | Follow on Medium
AI-assisted tools are used solely for wording support. All conclusions are independently reviewed.

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 this helped, ✓ Mark as Solution | Kudos appreciated
Connect on LinkedIn | Follow on Medium
AI-assisted tools are used solely for wording support. All conclusions are independently reviewed.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.