The stdout in AWX is not showing all the tasks as Ansible CLI just works fine, in AWX also no error

Dear reader,

Currently I have a problem getting all the tasks info and details in the AWX stdout of the job the template launches in. To me it is strange that the Ansible CLI just works fine. But the stdout in the AWX web interface is lacking all the detailed information of each task.

I have AWX 24.6.1 in Minikube 1.36.0 on Ubuntu 24.04.2 LTS and am running my playbooks on a RHEL 9.6 client.

This is the Ansible CLI output:

martijn-van-den-boom@awx:~/Documents/GitHub/ansible-playbooks$ ansible-playbook -i hosts.ini system-info.yml --ask-become-pass
BECOME password: 

PLAY [Gather universal system information] ****************************************************************************

TASK [Gathering Facts] ************************************************************************************************
ok: [192.168.122.236]

TASK [Update /tmp/hello_world.txt] ************************************************************************************
changed: [192.168.122.236]

TASK [Display resolv.conf contents] ***********************************************************************************
changed: [192.168.122.236]

TASK [Print to console] ***********************************************************************************************
ok: [192.168.122.236] => {
    "msg": "# Generated by NetworkManager\nsearch vandenboom.local\nnameserver 192.168.122.1"
}

TASK [Print hello message] ********************************************************************************************
ok: [192.168.122.236] => {
    "msg": "Hello from AWX!"
}

TASK [Simple debug test] **********************************************************************************************
ok: [192.168.122.236] => {
    "msg": "Hello from AWX debug!"
}

TASK [Show OS and kernel info] ****************************************************************************************
ok: [192.168.122.236] => {
    "msg": "OS: RedHat 9.6\nKernel: 5.14.0-570.24.1.el9_6.x86_64\nArchitecture: x86_64\n"
}

TASK [Show CPU information] *******************************************************************************************
ok: [192.168.122.236] => {
    "msg": "CPUs: 8 physical x 1 cores each\nCPU Model: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz\n"
}

TASK [Show memory information] ****************************************************************************************
ok: [192.168.122.236] => {
    "msg": "Total RAM: 31.09 GB\n"
}

TASK [Show disk usage (root mount)] ***********************************************************************************
ok: [192.168.122.236] => {
    "msg": "Root FS Total: 69 GB\nRoot FS Available: 59 GB\n"
}

TASK [Show network information] ***************************************************************************************
ok: [192.168.122.236] => {
    "msg": "Hostname: localhost.localdomain\nPrimary IP: 192.168.122.236\nInterfaces: enp1s0\n"
}

TASK [Show package manager] *******************************************************************************************
ok: [192.168.122.236] => {
    "msg": "Package Manager: dnf"
}

TASK [Show system uptime] *********************************************************************************************
changed: [192.168.122.236]

TASK [Display uptime] *************************************************************************************************
ok: [192.168.122.236] => {
    "msg": "Uptime: up 5 hours, 21 minutes"
}

PLAY RECAP ************************************************************************************************************
192.168.122.236            : ok=14   changed=3    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   

martijn-van-den-boom@awx:~/Documents/GitHub/ansible-playbooks$ git pull https://github.com/martijnvandenboom/ansible-playbooks.git

This is what shows in AWX without any ERROR:

No config file found; using defaults
SSH password: 
BECOME password[defaults to SSH password]: 
PLAY [Gather universal system information] *************************************
TASK [Gathering Facts] *********************************************************
ok: [192.168.122.236]
PLAY RECAP *********************************************************************
192.168.122.236            : ok=1    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   

I hope someone recognises this and has seen and resolved the issue I have described here above. Thank you for your time.

Best regards,
Martijn

Try increasing the verbosity in AWX template.