Module - check_other_processes_pmd_usage¶
This module provides for the following ansible plugin:
check_other_processes_pmd_usage
Module Documentation¶
Run PMD threads used by other processes or not check
Owned by the DFG:NFV Integration
Options¶
- pmd_cpus
 The pmd cpus list
- exclude_processes_pid
 The processes pid list which need to be excluded.
This option is optional.
Authors¶
Jaganathan Palanisamy
Example Tasks¶
- become: true
  check_other_processes_pmd_usage:
    pmd_cpus:
    - 6
    - 7
    - 9
    - 11
  name: Run PMD threads used by other processes or not check
  register: pmd_interrupts
- become: true
  check_other_processes_pmd_usage:
    exclude_processes_pid:
    - '24'
    - '26'
    pmd_cpus:
    - 6
    - 7
    - 9
    - 11
  name: Run PMD threads used by other processes or not with exclude processes
  register: pmd_interrupts