<?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 Track Power BI Capacity overloaders in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3380673#M43898</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to set up "Tracking for Power BI Capacity overloaders" by following this description&lt;BR /&gt;&lt;A href="https://pbi-guy.com/2023/07/11/track-power-bi-capacity-overloaders-with-power-automate/" target="_blank"&gt;https://pbi-guy.com/2023/07/11/track-power-bi-capacity-overloaders-with-power-automate/&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like it is working for one of our P2 capacities, but we also have two P1 capacities that it looks like data is missing.&lt;BR /&gt;&lt;BR /&gt;If I connect in DAX Studio to the "&lt;EM&gt;Premium metrics apps&lt;/EM&gt;" dataset and execute this dax code on the P2 capacity I get correct answer&amp;nbsp; and the correct timestamp for the latest overload if I compare with the metric app.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// -------------------------------------------------------------------------------
// Get the Overloader Dataset ID
// -------------------------------------------------------------------------------

DEFINE
    VAR CapacityID = "XXXXX"
    VAR vHourDiff = 48

EVALUATE
SELECTCOLUMNS (
    FILTER (
        CALCULATETABLE (
            ADDCOLUMNS (
                ADDCOLUMNS (
                    SUMMARIZECOLUMNS (
                        Items[capacityId],
                        Items[WorkspaceName],
                        Items[ItemId],
                        Items[ItemName],
                        Items[ItemKind]                        
                    ),
                    "Last_OverloadTS", CALCULATE ( MAX ( ThrottlingByItem[OperationStartTime] ) ),
                    "Sum_throlltletime", CALCULATE ( SUM ( ThrottlingByItem[count_throlltletime] ) )
                ),
                "HourDiff", DATEDIFF ( [Last_OverloadTS], NOW (), HOUR )
            ),
            ThrottlingByItem[count_throttledoperations] &amp;gt; 0
            ,Capacities[CapacityId] = CapacityID
        ),
        [HourDiff] &amp;lt; vHourDiff &amp;amp;&amp;amp; [Sum_throlltletime] &amp;gt; 0
    ),
    [capacityId],
    [WorkspaceName],
    [ItemId],
    [ItemName],
    [ItemKind],                        
    [Last_OverloadTS],
    [Sum_throlltletime]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But for my 2 other P1 capacities I do not get any data but I can see I have overloading in the app.&lt;BR /&gt;I have also notice that if I query this table I also only having data for the P2 capacity.&lt;BR /&gt;&lt;SPAN&gt;EVALUATE&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;UtilizationByHour[PremiumCapacityId]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But all capacities is in table 'Capacities'&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;EVALUATE&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Capacities&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What am I missing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Aug 2023 13:11:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-08-15T13:11:21Z</dc:date>
    <item>
      <title>Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3380673#M43898</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to set up "Tracking for Power BI Capacity overloaders" by following this description&lt;BR /&gt;&lt;A href="https://pbi-guy.com/2023/07/11/track-power-bi-capacity-overloaders-with-power-automate/" target="_blank"&gt;https://pbi-guy.com/2023/07/11/track-power-bi-capacity-overloaders-with-power-automate/&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like it is working for one of our P2 capacities, but we also have two P1 capacities that it looks like data is missing.&lt;BR /&gt;&lt;BR /&gt;If I connect in DAX Studio to the "&lt;EM&gt;Premium metrics apps&lt;/EM&gt;" dataset and execute this dax code on the P2 capacity I get correct answer&amp;nbsp; and the correct timestamp for the latest overload if I compare with the metric app.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// -------------------------------------------------------------------------------
// Get the Overloader Dataset ID
// -------------------------------------------------------------------------------

DEFINE
    VAR CapacityID = "XXXXX"
    VAR vHourDiff = 48

EVALUATE
SELECTCOLUMNS (
    FILTER (
        CALCULATETABLE (
            ADDCOLUMNS (
                ADDCOLUMNS (
                    SUMMARIZECOLUMNS (
                        Items[capacityId],
                        Items[WorkspaceName],
                        Items[ItemId],
                        Items[ItemName],
                        Items[ItemKind]                        
                    ),
                    "Last_OverloadTS", CALCULATE ( MAX ( ThrottlingByItem[OperationStartTime] ) ),
                    "Sum_throlltletime", CALCULATE ( SUM ( ThrottlingByItem[count_throlltletime] ) )
                ),
                "HourDiff", DATEDIFF ( [Last_OverloadTS], NOW (), HOUR )
            ),
            ThrottlingByItem[count_throttledoperations] &amp;gt; 0
            ,Capacities[CapacityId] = CapacityID
        ),
        [HourDiff] &amp;lt; vHourDiff &amp;amp;&amp;amp; [Sum_throlltletime] &amp;gt; 0
    ),
    [capacityId],
    [WorkspaceName],
    [ItemId],
    [ItemName],
    [ItemKind],                        
    [Last_OverloadTS],
    [Sum_throlltletime]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But for my 2 other P1 capacities I do not get any data but I can see I have overloading in the app.&lt;BR /&gt;I have also notice that if I query this table I also only having data for the P2 capacity.&lt;BR /&gt;&lt;SPAN&gt;EVALUATE&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;UtilizationByHour[PremiumCapacityId]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But all capacities is in table 'Capacities'&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;EVALUATE&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Capacities&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What am I missing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2023 13:11:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3380673#M43898</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-15T13:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3383913#M43929</link>
      <description>&lt;LI-CODE lang="markup"&gt; I connect in DAX Studio to the "Premium metrics apps" dataset&lt;/LI-CODE&gt;
&lt;P&gt;How?&amp;nbsp; That app should not be on a premium workspace to avoid skewing the data.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 22:59:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3383913#M43929</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-08-16T22:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3386675#M43964</link>
      <description>&lt;P&gt;Thanks for info, I didn't know that the "Premium metric app" should not be on a premium workspace.&lt;BR /&gt;I will move it out from premium than and then I guess this article is not valid longer.&lt;BR /&gt;&lt;A href="https://pbi-guy.com/2023/07/11/track-power-bi-capacity-overloaders-with-power-automate/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://pbi-guy.com/2023/07/11/track-power-bi-capacity-overloaders-with-power-automate/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 06:19:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3386675#M43964</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-18T06:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3431055#M44451</link>
      <description>&lt;P&gt;Is there any reason behind why data is being skewed once capacity report is stored in Premium? Is it mentioned somewhere in the documentation? In this case, PBI Guy solution is not valid, what's your opinion?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 13:15:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3431055#M44451</guid>
      <dc:creator>dtjdtj</dc:creator>
      <dc:date>2023-09-14T13:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3431127#M44453</link>
      <description>&lt;P&gt;It's a standard tenet of control systems that a monitoring process cannot reside on the monitored asset, otherwise it will monitor itself and -worst case- create a positive feedback saturation.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 13:44:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3431127#M44453</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-09-14T13:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3431189#M44454</link>
      <description>&lt;P&gt;Thanks for the info! I excluded Capacity Metrics workspace from Premium and the report still shows overloaders which are not retrieved by the DAX query from pbi guy link (It seems you can still run DAX queries through Power Automate against a non-premium dataset). So same issue initially reported here still.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 14:16:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3431189#M44454</guid>
      <dc:creator>dtjdtj</dc:creator>
      <dc:date>2023-09-14T14:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3457877#M44788</link>
      <description>&lt;P&gt;i did set the power automate as per the instructions and at the end i got stuck with this error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{"error":{"code":"DatasetExecuteQueriesError","pbi.error":{"code":"DatasetExecuteQueriesError","parameters":{},"details":[{"code":"DetailsMessage","detail":{"type":1,"value":"Query (15, 58) Cannot find table 'ThrottlingByItem'."}},{"code":"AnalysisServicesErrorCode","detail":{"type":1,"value":"3241803779"}}]}}}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea why this is complaning about the analysis services engine... i know dataset is nothing but a tabular model on workspace( as aas instance)... but still what is missing.???&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 14:31:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3457877#M44788</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-03T14:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3469843#M44869</link>
      <description>&lt;P&gt;so now pbi guy solution for capacity overloaders are no more working, cause 10/01 capacity metrics is depreciated and wont work anymore. have to get the DAX for Fabric Metrics monitoring.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 21:39:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/3469843#M44869</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-10T21:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Track Power BI Capacity overloaders</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/4178837#M55772</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/132002" target="_self"&gt;&lt;SPAN class=""&gt;seemeseeu&lt;/SPAN&gt;&lt;/A&gt;&lt;BR /&gt;Do you resolve your problem? I have the same error ....&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 18:33:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Track-Power-BI-Capacity-overloaders/m-p/4178837#M55772</guid>
      <dc:creator>odumna</dc:creator>
      <dc:date>2024-09-26T18:33:32Z</dc:date>
    </item>
  </channel>
</rss>

