Execution
Date 12 Dec 2025 10:24:40 +0000
Duration 00:01:11.98
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.3 / 1.7.3
Python 3.10.10
Summary
288 Hosts
1 Tasks
287 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/RM10229-missing-plugins.yaml

---
- name: Playbook
  hosts: all
  gather_facts: false
  tasks:
    - name: Check
      ansible.builtin.shell: |
        set -o pipefail
        for p in provider_metrics fpm_errors apache_errors process_runtimes ram_per_user cpu_per_user ; do agent360 --info | grep -q "$p" && echo "$p: OK" || echo "$p: MISSING"; done
      args:
        executable: /bin/bash
      register: outp
      changed_when: 'MISSING in outp.stdout'