Parameter |
Choices/Defaults |
Configuration |
Comments |
control_group
-
/ required
|
|
ini entries:
[callback_cgroup_perf_recap] control_group = VALUE
env:CGROUP_CONTROL_GROUP
|
Name of cgroups control group
|
cpu_poll_interval
float
|
Default:
0.25
|
ini entries:
[callback_cgroup_perf_recap] cpu_poll_interval = 0.25
env:CGROUP_CPU_POLL_INTERVAL
|
Interval between CPU polling for determining CPU usage. A lower value may produce inaccurate results, a higher value may not be short enough to collect results for short tasks.
|
display_recap
boolean
|
|
ini entries:
[callback_cgroup_perf_recap] display_recap = yes
env:CGROUP_DISPLAY_RECAP
|
Controls whether the recap is printed at the end, useful if you will automatically process the output files
|
file_name_format
string
|
Default:
"%(feature)s.%(ext)s"
|
ini entries:
[callback_cgroup_perf_recap] file_name_format = %(feature)s.%(ext)s
env:CGROUP_FILE_NAME_FORMAT
|
Format of filename. Accepts %(counter s), %(task_uuid s), %(feature s), %(ext s). Defaults to %(feature s.%(ext)s) when file_per_task is False and %(counter s-%(task_uuid)s-%(feature)s.%(ext)s) when True
|
file_per_task
boolean
|
|
ini entries:
[callback_cgroup_perf_recap] file_per_task = no
env:CGROUP_FILE_PER_TASK
|
When set as True along with write_files , this callback will write 1 file per task instead of 1 file for the entire playbook run
|
memory_poll_interval
float
|
Default:
0.25
|
ini entries:
[callback_cgroup_perf_recap] memory_poll_interval = 0.25
env:CGROUP_MEMORY_POLL_INTERVAL
|
Interval between memory polling for determining memory usage. A lower value may produce inaccurate results, a higher value may not be short enough to collect results for short tasks.
|
output_dir
path
|
Default:
"/tmp/ansible-perf-%s"
|
ini entries:
[callback_cgroup_perf_recap] output_dir = /tmp/ansible-perf-%s
env:CGROUP_OUTPUT_DIR
|
Output directory for files containing recorded performance readings. If the value contains a single %s, the start time of the playbook run will be inserted in that space. Only the deepest level directory will be created if it does not exist, parent directories will not be created.
|
output_format
string
|
|
ini entries:
[callback_cgroup_perf_recap] output_format = csv
env:CGROUP_OUTPUT_FORMAT
|
Output format, either CSV or JSON-seq
|
pid_poll_interval
float
|
Default:
0.25
|
ini entries:
[callback_cgroup_perf_recap] pid_poll_interval = 0.25
env:CGROUP_PID_POLL_INTERVAL
|
Interval between PID polling for determining PID count. A lower value may produce inaccurate results, a higher value may not be short enough to collect results for short tasks.
|
write_files
boolean
|
|
ini entries:
[callback_cgroup_perf_recap] write_files = no
env:CGROUP_WRITE_FILES
|
Dictates whether files will be written containing performance readings
|