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

- name: Run PMD threads used by other processes or not check
  become: true
  check_other_processes_pmd_usage:
    pmd_cpus: [6, 7, 9, 11]
  register: pmd_interrupts
- name: Run PMD threads used by other processes or not with exclude processes
  become: true
  check_other_processes_pmd_usage:
    pmd_cpus: [6, 7, 9, 11]
    exclude_processes_pid: ['24', '26']
  register: pmd_interrupts