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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
carlton7372
Helper III
Helper III

How Long Does It Take for Azure Fabric Capacity Metric App to show Metrics

Hi Community,

I have been doing a LOT of work with the Azure Fabric Capacity Metrics App, or should I say with Fabric semantic model on Power BI Desktop.

 

I have submitted a number of jobs/queries to Workspace that it monitored by the Metrics App. I have waited over an hour for the metrics to appear in the App, but never appears. I have run a couple DAX queries (with the help of ChatGPT) against the Fabric Metrics model so query the model for a particular job run called 'Refactored_DB_Refresh' see below, but no metrics appear.

 

Can someone let me know exactly how long it takes for metrics to appear.

 

The puzzling thing is the metrics that appear in app were jobs that were run yesterday, 15th October 2025, but appears being run today - I really don't understand

carlton7372_0-1760613119510.png

The following is DAX query that I ran against the Fabric Metrics semantic model, which is searching for a job I executed in the last 2 hours, but it still isn't appearing Fabric Metrics App.

 

 

// Per-item totals in the last 24 hours for Item kind = "Refactored_DB_Refresh"
DEFINE
  VAR _Kind = "Refactored_DB_Refresh"

  // Create a table filter from a VAR safely (ROW works with variables)
  VAR _KindFilter =
    TREATAS ( ROW ( "Item kind", _Kind ), Items[Item kind] )

  // Anchor on latest timestamp in the hourly autoscale fact
  VAR _LastTs =
    CALCULATE (
      MAX ( 'Metrics By Item And Hour For Workload Autoscale'[Datetime] ),
      REMOVEFILTERS ( 'Metrics By Item And Hour For Workload Autoscale' )
    )

  // Rolling 24h window
  VAR _Last24h =
    FILTER (
      ALL ( 'Metrics By Item And Hour For Workload Autoscale'[Datetime] ),
      'Metrics By Item And Hour For Workload Autoscale'[Datetime] >= _LastTs - 1
        && 'Metrics By Item And Hour For Workload Autoscale'[Datetime] <= _LastTs
    )

  // Query-scoped measures
  MEASURE 'Metrics By Item And Hour For Workload Autoscale'[CU (s) _Q] =
    SUM ( 'Metrics By Item And Hour For Workload Autoscale'[CU (s)] )

  MEASURE 'Metrics By Item And Hour For Workload Autoscale'[Duration (s) _Q] =
    SUM ( 'Metrics By Item And Hour For Workload Autoscale'[Duration (s)] )

EVALUATE
  ADDCOLUMNS (
    SUMMARIZECOLUMNS (
      Items[Item name],
      _Last24h,
      _KindFilter          // robust filter—no scalar ambiguity
    ),
    "CU (s) last 24h",       [CU (s) _Q],
    "Duration (s) last 24h", [Duration (s) _Q],
    "Window Start",          _LastTs - 1,
    "Window End",            _LastTs
  )
ORDER BY [CU (s) last 24h] DESC, Items[Item name]

 

The output is a follows... as you can see there is nothing. 

carlton7372_1-1760613261676.png

 

I hope someone can help with this because it's driving me crazy 🙂

1 ACCEPTED SOLUTION
tayloramy
Super User
Super User

Hi @carlton7372

 

For existing items, it usually takes around 15 minutes for data to flow, however new items don't appear until the capacity metrics semantic model is refreshed. 

 

Remember that capacity metrics is in UCT time unless the Fabric Admin sets a UTC offset in the semantic model parameters. 

 

If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.





If you found this helpful, consider giving some Kudos.
If I answered your question or solved your problem, mark this post as the solution!

Join the Fabric Discord!

Proud to be a Super User!





View solution in original post

1 REPLY 1
tayloramy
Super User
Super User

Hi @carlton7372

 

For existing items, it usually takes around 15 minutes for data to flow, however new items don't appear until the capacity metrics semantic model is refreshed. 

 

Remember that capacity metrics is in UCT time unless the Fabric Admin sets a UTC offset in the semantic model parameters. 

 

If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.





If you found this helpful, consider giving some Kudos.
If I answered your question or solved your problem, mark this post as the solution!

Join the Fabric Discord!

Proud to be a Super User!





Helpful resources

Announcements
June Fabric Update Carousel

Fabric Monthly Update - June 2026

Check out the June 2026 Fabric update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.