How to do it...

  1. Create simple DAX measures (Average, Min, and Max) and then Date Intelligence measures to support a comparison of performance monitoring counters against prior time periods or baselines:
Available Memory MB (Today) = CALCULATE([Available Memory (MB)],FILTER(ALL('Date'),'Date'[Date] = [Current Date]))Batch Requests per Sec (Yesterday) = CALCULATE([Batch Requests Per Sec],FILTER(ALL('Date'),'Date'[Date] = [Yesterday]))Min Available Memory MB (Today) = CALCULATE([Min Available Memory (MB)],FILTER(ALL('Date'),'Date'[Date] = [Current Date]),ALL('Time'))
  1. Create a report page based on the performance monitor counters that addresses top visibility needs such as "How is performance today?" and "How close are we to resource thresholds?" ...

Get Microsoft Power BI Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.