How to run test check on any check definition for containerized agents? SummaryFrom ACCF v3.1.0, host data collection for containerized agents is disabled due to which you will not be able to run test check on any check definition for containerized agent.Instructions1. Open Scripts – Background and paste the below script. var gr = new GlideRecord("sn_agent_cmdb_ci_agent"); gr.addQuery('sys_id', '23305898196d1010f877e886ae966bd8'); gr.query(); var agentNowHandler = new sn_agent.AgentNowHandler(); discoveryCheck = { "checkDefId": "f9fe1e3c536113006dfeddeeff7b12a2" }; agentNowHandler.runCheckForCis(gr, discoveryCheck, 0); 2. Go to Agents and copy the sys id of the agent for which you want to run a test check. 3. Replace the sys id (23305898196d1010f877e886ae966bd8) mentioned in above script with the agent sys id. 4. Go to check definition and copy the sys id of the check definition. 5. Replace the check definitions sys id (f9fe1e3c536113006dfeddeeff7b12a2) in above script and then run the script in global scope.