<?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 Identify which automation(s) are reloading which app(s) in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/Identify-which-automation-s-are-reloading-which-app-s/m-p/2542952#M32583</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In our Qlik Cloud tenancy we have dozens of automations reloading apps in multiple spaces (Shared &amp;amp; Managed).&lt;/P&gt;&lt;P&gt;One thing we don't have visibility over, is which automation(s) are triggering the reload of which app(s) or the other way, looking at an app and identifying which Automation is triggering its reload (assuming the app is not being reloaded by a "schedule").&lt;/P&gt;&lt;P&gt;Has anyone encountered this hurdle and if and how did you overcome it?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Feb 2026 01:59:35 GMT</pubDate>
    <dc:creator>Adfc_NZ</dc:creator>
    <dc:date>2026-02-13T01:59:35Z</dc:date>
    <item>
      <title>Identify which automation(s) are reloading which app(s)</title>
      <link>https://community.qlik.com/t5/Management-Governance/Identify-which-automation-s-are-reloading-which-app-s/m-p/2542952#M32583</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In our Qlik Cloud tenancy we have dozens of automations reloading apps in multiple spaces (Shared &amp;amp; Managed).&lt;/P&gt;&lt;P&gt;One thing we don't have visibility over, is which automation(s) are triggering the reload of which app(s) or the other way, looking at an app and identifying which Automation is triggering its reload (assuming the app is not being reloaded by a "schedule").&lt;/P&gt;&lt;P&gt;Has anyone encountered this hurdle and if and how did you overcome it?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 01:59:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Identify-which-automation-s-are-reloading-which-app-s/m-p/2542952#M32583</guid>
      <dc:creator>Adfc_NZ</dc:creator>
      <dc:date>2026-02-13T01:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Identify which automation(s) are reloading which app(s)</title>
      <link>https://community.qlik.com/t5/Management-Governance/Identify-which-automation-s-are-reloading-which-app-s/m-p/2543014#M32588</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/349273"&gt;@Adfc_NZ&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;this is a great idea for &lt;A href="https://community.qlik.com/t5/ideation/ct-p/qlik-product-insight" target="_blank" rel="noopener"&gt;ideation&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;In the meantime, I have tried this powershell script that uses the&lt;A href="https://qlik.dev/toolkits/qlik-cli/" target="_blank" rel="noopener"&gt; Qlik-cli&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;param (
    [Parameter(Mandatory=$true)]
    [string]$TargetAppId
)

# Check if qlik-cli is installed
if (-not (Get-Command qlik -ErrorAction SilentlyContinue)) {
    Write-Error "qlik-cli is not installed or not in the PATH."
    exit
}

Write-Host "--- Searching for Automations reloading App: $TargetAppId ---" -ForegroundColor Cyan
Write-Host "Fetching list of automations..." -ForegroundColor Gray

# 1. Get the list of all automations
# We use --json to ensure we get a machine-readable format
try {
    $automationsList = qlik automation ls --json | ConvertFrom-Json
}
catch {
    Write-Error "Failed to list automations. Please check your login (qlik context init)."
    exit
}

$foundCount = 0

# 2. Loop through each automation found
foreach ($item in $automationsList) {
    $autoId = $item.id
    $autoName = $item.name

    Write-Progress -Activity "Scanning Automations" -Status "Checking: $autoName"

    # 3. Get the full definition (workspace) for this automation
    try {
        $def = qlik automation get $autoId --json | ConvertFrom-Json
    }
    catch {
        Write-Warning "Skipping $autoName (Could not fetch definition)"
        continue
    }

    # 4. Check the blocks inside the workspace
    $blocks = $def.workspace.blocks

    if ($null -ne $blocks) {
        # Iterate through the blocks (blocks are properties of the 'blocks' object)
        foreach ($block in $blocks.PSObject.Properties.Value) {
            
            # CHECK 1: Is this a "DoReload" block?
            if ($block.name -eq "DoReload") {

                # CHECK 2: Look through the inputs for the App ID value
                if ($null -ne $block.inputs) {
                    foreach ($inputItem in $block.inputs) {
                        
                        # We specifically look for the "value" key matching your App ID
                        if ($inputItem.value -eq $TargetAppId) {
                            
                            Write-Host "MATCH FOUND!" -ForegroundColor Green
                            Write-Host "Automation : $autoName"
                            Write-Host "Auto ID    : $autoId"
                            Write-Host "Block Name : $($block.name)"
                            Write-Host "Matched ID : $($inputItem.value)"
                            Write-Host "------------------------------------------------"
                            
                            $foundCount++
                        }
                    }
                }
            }
        }
    }
}

Write-Host "Done. Found $foundCount automation(s)." -ForegroundColor Cyan&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;You can try saving it as &amp;nbsp;&lt;SPAN&gt;Find-ReloadAutomations.ps1&lt;/SPAN&gt;&lt;SPAN&gt; &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;BR /&gt;and then run it as:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;.\Find-ReloadAutomations.ps1&lt;/SPAN&gt; &lt;SPAN&gt;-TargetAppId&lt;/SPAN&gt; &lt;EM&gt;appId&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="Apple-converted-space"&gt;It scans through the automations, and searches for those that have a DoReload block which includes the&amp;nbsp;&lt;EM&gt;appId&lt;/EM&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;It worked for me, but please consider that it is provided "as it is"&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 16:02:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Identify-which-automation-s-are-reloading-which-app-s/m-p/2543014#M32588</guid>
      <dc:creator>Daniele_Purrone</dc:creator>
      <dc:date>2026-02-13T16:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Identify which automation(s) are reloading which app(s)</title>
      <link>https://community.qlik.com/t5/Management-Governance/Identify-which-automation-s-are-reloading-which-app-s/m-p/2543037#M32589</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/349273"&gt;@Adfc_NZ&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;This is a tough one. I don't think Qlik Cloud tracks that. I have checked at all logs that I'm aware and I can't find anything that helps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, a workaround that I can think about is to log that in a database from the Automation (record the Automation Id and Reload Id would be the minimum information needed) or injecting the Automation Id and tracing that on the Reload Logs - or using Load Script to store this into a file, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mark Costa&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Feb 2026 05:42:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Identify-which-automation-s-are-reloading-which-app-s/m-p/2543037#M32589</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2026-02-15T05:42:14Z</dc:date>
    </item>
  </channel>
</rss>

