<?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 App Metadata Analyzer - feature request for Peak RAM usage per app in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1805812#M30836</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I would like to request a feature to be added to the Qlik Sense&amp;nbsp;monitoring app - App Metadata Analyzer.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;request probably for&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49113"&gt;@Daniel_Pilla&lt;/a&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Apart from already displayed useful app data, the App Metadata Analyzer could also display Peak RAM of apps. Relevant field already present in app metadata: "peak_memory_bytes".&lt;/P&gt;&lt;P&gt;This is important for some Qlik Sense developers, because an application, that can have a low final Ram footprint, could in fact consume a significant amount of RAM in the peak of the app's reload. So this information could help every developer to improve their applications and support specialists to troubleshoot performance&amp;nbsp; issues.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Tomas Kleman&lt;/P&gt;&lt;P&gt;EMARK&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jan 2025 17:03:10 GMT</pubDate>
    <dc:creator>kleman_emark</dc:creator>
    <dc:date>2025-01-29T17:03:10Z</dc:date>
    <item>
      <title>App Metadata Analyzer - feature request for Peak RAM usage per app</title>
      <link>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1805812#M30836</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I would like to request a feature to be added to the Qlik Sense&amp;nbsp;monitoring app - App Metadata Analyzer.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;request probably for&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49113"&gt;@Daniel_Pilla&lt;/a&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Apart from already displayed useful app data, the App Metadata Analyzer could also display Peak RAM of apps. Relevant field already present in app metadata: "peak_memory_bytes".&lt;/P&gt;&lt;P&gt;This is important for some Qlik Sense developers, because an application, that can have a low final Ram footprint, could in fact consume a significant amount of RAM in the peak of the app's reload. So this information could help every developer to improve their applications and support specialists to troubleshoot performance&amp;nbsp; issues.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Tomas Kleman&lt;/P&gt;&lt;P&gt;EMARK&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 17:03:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1805812#M30836</guid>
      <dc:creator>kleman_emark</dc:creator>
      <dc:date>2025-01-29T17:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: App Metadata Analyzer - feature request for Peak RAM usage per app</title>
      <link>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1805846#M30837</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49113"&gt;@Daniel_Pilla&lt;/a&gt;&amp;nbsp; -- any thoughts on this?&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 13:43:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1805846#M30837</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2021-05-06T13:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: App Metadata Analyzer - feature request for Peak RAM usage per app</title>
      <link>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1805883#M30838</link>
      <description>&lt;P&gt;Hi Tomas,&lt;/P&gt;&lt;P&gt;Peak Reload RAM was not introduced until February 2020 of Qlik Sense. The App Metadata Analyzer when it was designed (in 2018) was not built with that field. The App Metadata Analyzer is currently in maintenance mode as far as I'm aware, without any ongoing development. That said, it is very easy to add it in if you would like.&lt;/P&gt;&lt;P&gt;On the&amp;nbsp;&lt;STRONG&gt;app_metadata&lt;/STRONG&gt; tab in the load script, change:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;RestConnectorMasterTable:
SQL SELECT 
    "static_byte_size",
    "__KEY_root",
    (SELECT 
        "cpu_time_spent_ms",
        "__KEY_reload_meta",
        "__FK_reload_meta",
        (SELECT 
            "logical_cores",
            "total_memory",
            "__FK_hardware"
        FROM "hardware" FK "__FK_hardware")
    FROM "reload_meta" PK "__KEY_reload_meta" FK "__FK_reload_meta"),&lt;/LI-CODE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;RestConnectorMasterTable:
SQL SELECT 
    "static_byte_size",
    "__KEY_root",
    (SELECT 
        "cpu_time_spent_ms",
        "peak_memory_bytes",
        "__KEY_reload_meta",
        "__FK_reload_meta",
        (SELECT 
            "logical_cores",
            "total_memory",
            "__FK_hardware"
        FROM "hardware" FK "__FK_hardware")
    FROM "reload_meta" PK "__KEY_reload_meta" FK "__FK_reload_meta"),&lt;/LI-CODE&gt;&lt;P&gt;Then in the subsequent load, change:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[AppReloadCPUMetadata]:
LOAD 
    [cpu_time_spent_ms] AS [App Reload CPU Time (ms)],
    '$(vAppGUID)' AS _IncrementalGUID,
    '$(vAppGUID)' AS AppID
RESIDENT RestConnectorMasterTable
WHERE NOT IsNull([__FK_reload_meta]);&lt;/LI-CODE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[AppReloadCPUMetadata]:
LOAD 
    [cpu_time_spent_ms] AS [App Reload CPU Time (ms)],
    peak_memory_bytes AS [Peak Memory Bytes],
    '$(vAppGUID)' AS _IncrementalGUID,
    '$(vAppGUID)' AS AppID
RESIDENT RestConnectorMasterTable
WHERE NOT IsNull([__FK_reload_meta]);&lt;/LI-CODE&gt;&lt;P&gt;You will then want to flush your QVDs and reload the app to capture the new field. You can then use this field in the application.&lt;BR /&gt;&lt;BR /&gt;It is also worth noting that this field&amp;nbsp;&lt;EM&gt;is&lt;/EM&gt; present in the &lt;A href="https://community.qlik.com/t5/Support-Updates-Blog/The-App-Analyzer-for-Qlik-SaaS-customers-is-available-NOW/ba-p/1734927" target="_blank" rel="noopener"&gt;App Analyzer for Qlik Sense Enterprise SaaS&lt;/A&gt;, just as an FYI. This field is especially critical in that platform.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 14:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1805883#M30838</guid>
      <dc:creator>Daniel_Pilla</dc:creator>
      <dc:date>2021-05-06T14:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: App Metadata Analyzer - feature request for Peak RAM usage per app</title>
      <link>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1807597#M30839</link>
      <description>&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;thank you for the explanation and hints. They are very useful.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Tomas&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 06:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/App-Metadata-Analyzer-feature-request-for-Peak-RAM-usage-per-app/m-p/1807597#M30839</guid>
      <dc:creator>kleman_emark</dc:creator>
      <dc:date>2021-05-13T06:52:52Z</dc:date>
    </item>
  </channel>
</rss>

