<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers? in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910290#M64223</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1250534"&gt;@v-echaithra&lt;/a&gt; Thank you for the detailed response. It has clarified many of my questions.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Dec 2025 11:44:19 GMT</pubDate>
    <dc:creator>Baqa</dc:creator>
    <dc:date>2025-12-30T11:44:19Z</dc:date>
    <item>
      <title>How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910190#M64219</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hello,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;We have integrated Power BI Embedded (Analytics module) into our application for multiple customers. We want to build a Usage Metrics Dashboard to monitor customer activity, including:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Page 1 – Overall usage&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Total customers&lt;/LI&gt;&lt;LI&gt;Customers using Analytics&lt;/LI&gt;&lt;LI&gt;Idle customers&lt;/LI&gt;&lt;LI&gt;Active clubs using Analytics regularly&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Page 2 – Customer-level metrics&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Single-select slicer for each club&lt;/LI&gt;&lt;LI&gt;Metrics such as reports/pages actively used, user-level activity, and error monitoring&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Can we use Power BI REST APIs or audit logs to get usage information for embedded reports at the user, report, and page level?&lt;/LI&gt;&lt;LI&gt;If APIs/audit logs aren’t sufficient, what are the best alternative methods to track usage externally for embedded reports?&lt;/LI&gt;&lt;LI&gt;What is the recommended architecture to capture both report activity and errors for embedded analytics across all customers?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any guidance, sample approaches, or best practices would be highly appreciated.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="PBI Embedded" uid="4728530" url="https://community.fabric.microsoft.com/t5/Developer/PBI-Embedded/m-p/4728530#U4728530" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 07:17:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910190#M64219</guid>
      <dc:creator>Baqa</dc:creator>
      <dc:date>2025-12-30T07:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910256#M64221</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/462251"&gt;@Baqa&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;You can get user and report level usage, but not page-level usage for embedded reports. Power BI REST APIs and the Microsoft 365 / Power BI Activity Log reliably capture governance-level events, such as report viewed, dataset refreshed, export actions, sharing and access events. These logs work for embedded scenarios as well, but they do not expose page navigation or in-report interactions. They are not real-time and have limited retention.&lt;BR /&gt;In embedded setups, activity may appear under a service principal or app identity, depending on the authentication model. So, APIs and audit logs are suitable for answering “who accessed which report and when”, but not “which pages were used or how users interacted with the report.”&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;For embedded analytics, the supported approach is to use the Power BI Embedded JavaScript SDK provided by Microsoft. The SDK exposes client-side events such as report loaded, page changed, errors during rendering or querying. These events are not stored by the Power BI service, but they are intentionally exposed so the hosting application can capture them.&lt;BR /&gt;In practice, this means:&lt;BR /&gt;Instrumenting the hosting application with the Embedded JS SDK&lt;BR /&gt;Logging page-level and session-level events&lt;BR /&gt;Correlating those events with Power BI artifacts (workspace, report, tenant)&lt;BR /&gt;This is the only supported way to achieve page-level usage insights for embedded reports today.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Power BI Activity Logs that is accessible via REST API or PowerShell are the supported mechanism for governance-level usage such as report views, exports, and refreshes, but they do not capture page-level interactions. For embedded scenarios, page navigation and client-side errors are intentionally exposed via the Power BI Embedded JavaScript SDK, which is the supported way to capture interaction level telemetry in the hosting application. Azure Monitor and Log Analytics are the supported tools for monitoring Power BI Embedded capacity health, throttling, performance, and failures. Microsoft guidance is to combine these components such as: Activity Logs for audit, Embedded SDK events for interaction telemetry, and Azure Monitor for capacity and reliability using consistent tenant, report, and session identifiers, and to export native logs to customer-owned Azure storage for extended retention and analysis.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Chaithra E.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 10:40:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910256#M64221</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-12-30T10:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910290#M64223</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1250534"&gt;@v-echaithra&lt;/a&gt; Thank you for the detailed response. It has clarified many of my questions.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 11:44:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910290#M64223</guid>
      <dc:creator>Baqa</dc:creator>
      <dc:date>2025-12-30T11:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910364#M64224</link>
      <description>&lt;P&gt;Power BI’s Activity Log / REST APIs can give you tenant-level events (e.g., report viewed) and governance signals, but they’re not reliable for page-level usage in Embedded, and in app-owns-data they often reflect the service principal rather than the real end user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For an Embedded usage dashboard, the standard approach is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Use the Power BI JavaScript SDK events in your app to capture &lt;EM&gt;real&lt;/EM&gt; usage:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;loaded, rendered, pageChanged, dataSelected, and error&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Log: customerId, userId (or hashed), reportId, pageName, timestamps, duration, error details&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Send those events to Application Insights / Log Analytics (or your telemetry DB), then load that telemetry into Fabric/Power BI for reporting.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Recommended architecture:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;App (embed) → JS SDK events + app errors → App Insights/Log Analytics&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;(Optional) Activity Log API → same store for admin/audit context&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Build a small “Telemetry” model → your two pages (overall + per-customer) and error rates/top errors.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 30 Dec 2025 13:28:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4910364#M64224</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2025-12-30T13:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4911163#M64236</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1292787"&gt;@cengizhanarslan&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jan 2026 12:49:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4911163#M64236</guid>
      <dc:creator>Baqa</dc:creator>
      <dc:date>2026-01-01T12:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4911202#M64237</link>
      <description>&lt;P&gt;Re: Architecture for Power BI Embedded Usage Metrics Dashboard&lt;/P&gt;&lt;P&gt;​Hello! Building usage metrics for Embedded Analytics requires a different approach than standard internal reporting because you are often dealing with external identities. Here is the recommended architecture to achieve your Page 1 and Page 2 requirements:&lt;/P&gt;&lt;P&gt;​&lt;STRONG&gt;1. Data Sources: Use the Power BI Activity Log&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For Page 1 (Overall usage), the &lt;STRONG&gt;Power BI REST API (Activity Events)&lt;/STRONG&gt; or &lt;STRONG&gt;Microsoft Purview Audit Logs&lt;/STRONG&gt; are your best bet. Unlike the "Usage Metrics" UI, the Activity Log provides a JSON stream of every "ViewReport" event.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;​&lt;STRONG&gt;Benefit:&lt;/STRONG&gt; It captures the Workspace ID, Report ID, and User ID.&lt;/LI&gt;&lt;LI&gt;​&lt;STRONG&gt;Limitation:&lt;/STRONG&gt; It does not natively capture "Page Level" clicks or "Button" interactions within the iframe.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;​&lt;STRONG&gt;2. Architecture for Page 2 (User/Page Level &amp;amp; Errors)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;To get granular page-level activity and monitor errors, you should implement &lt;STRONG&gt;Client-Side Telemetry&lt;/STRONG&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;​&lt;STRONG&gt;Method:&lt;/STRONG&gt; In your application code where you initialize the Power BI Embed object, use the &lt;STRONG&gt;Power BI JavaScript API&lt;/STRONG&gt; to "listen" for events.&lt;/LI&gt;&lt;LI&gt;​&lt;STRONG&gt;Events to Capture:&lt;/STRONG&gt; pageChanged, buttonClicked, error, and rendered.&lt;/LI&gt;&lt;LI&gt;​&lt;STRONG&gt;Storage:&lt;/STRONG&gt; Send these events from your app to &lt;STRONG&gt;Azure Application Insights&lt;/STRONG&gt; or a &lt;STRONG&gt;Log Analytics Workspace&lt;/STRONG&gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;​&lt;STRONG&gt;3. Recommended Workflow:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;​&lt;STRONG&gt;Extraction:&lt;/STRONG&gt; Use an Azure Function to pull the &lt;STRONG&gt;Power BI Activity Log&lt;/STRONG&gt; daily.&lt;/LI&gt;&lt;LI&gt;​&lt;STRONG&gt;Telemetry:&lt;/STRONG&gt; Push client-side events (Page changes/Errors) from your web app to &lt;STRONG&gt;Azure SQL&lt;/STRONG&gt; or &lt;STRONG&gt;Log Analytics&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;​&lt;STRONG&gt;Modeling:&lt;/STRONG&gt; Combine these two sources in a Power BI Semantic Model.&lt;/LI&gt;&lt;LI&gt;​&lt;STRONG&gt;Multi-tenancy:&lt;/STRONG&gt; Use Row-Level Security (RLS) on your Usage Dashboard so you can use one report to show different clubs their own data.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;​&lt;STRONG&gt;Why this works:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This hybrid approach gives you the "Official" audit data for licensing/compliance and the "Granular" telemetry for user behavior and error debugging.&lt;/P&gt;&lt;P&gt;​I hope this helps you build a robust monitoring solution! &lt;STRONG&gt;If this architectural overview helps, please mark this as an "Accepted Solution."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;​Best regards,&lt;/P&gt;&lt;P&gt;Vishwanath&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jan 2026 14:34:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4911202#M64237</guid>
      <dc:creator>AshokKunwar</dc:creator>
      <dc:date>2026-01-01T14:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4912055#M64270</link>
      <description>&lt;P&gt;Hii &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/462251"&gt;@Baqa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Hi! Glad that worked. Could you please click &lt;/I&gt;&lt;STRONG&gt;&lt;I&gt;'Accept as Solution'&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt; on my previous reply so I can close this out and help other community members find the fix?&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jan 2026 13:34:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4912055#M64270</guid>
      <dc:creator>AshokKunwar</dc:creator>
      <dc:date>2026-01-04T13:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4912330#M64278</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/462251"&gt;@Baqa&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I just wanted to check if the issue has been resolved on your end, or if you require any further assistance. Please feel free to let us know, we’re happy to help!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&amp;nbsp;&lt;BR /&gt;Chaithra E.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 08:27:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4912330#M64278</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2026-01-05T08:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4915398#M64318</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/462251"&gt;@Baqa&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? Please let us know if you have any further issues, we are happy to help.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2026 11:53:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4915398#M64318</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2026-01-09T11:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to build a Usage Metrics Dashboard for Power BI Embedded customers?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4922285#M64367</link>
      <description>&lt;P&gt;Hii&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/462251" target="_blank"&gt;@Baqa&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps you build a robust monitoring solution!&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;If this architectural overview helps, please mark this as an "Accepted Solution."&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jan 2026 05:29:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-build-a-Usage-Metrics-Dashboard-for-Power-BI-Embedded/m-p/4922285#M64367</guid>
      <dc:creator>AshokKunwar</dc:creator>
      <dc:date>2026-01-21T05:29:55Z</dc:date>
    </item>
  </channel>
</rss>

