mirror of
https://github.com/ansible/awx.git
synced 2026-02-17 11:10:03 -03:30
Merge pull request #3848 from wenottingham/have-never-read-or-watched-the-help
Adjust description/help text for profiling features.
This commit is contained in:
@@ -351,8 +351,9 @@ register(
|
|||||||
'AWX_RESOURCE_PROFILING_ENABLED',
|
'AWX_RESOURCE_PROFILING_ENABLED',
|
||||||
field_class=fields.BooleanField,
|
field_class=fields.BooleanField,
|
||||||
default=False,
|
default=False,
|
||||||
label=_('Enable resource profiling on all tower jobs'),
|
label=_('Enable detailed resource profiling on all playbook runs'),
|
||||||
help_text=_('If set, resource profiling data will be collected on all jobs.'), # noqa
|
help_text=_('If set, detailed resource profiling data will be collected on all jobs. '
|
||||||
|
'This data can be gathered with `sosreport`.'), # noqa
|
||||||
category=_('Jobs'),
|
category=_('Jobs'),
|
||||||
category_slug='jobs',
|
category_slug='jobs',
|
||||||
)
|
)
|
||||||
@@ -362,7 +363,8 @@ register(
|
|||||||
field_class=FloatField,
|
field_class=FloatField,
|
||||||
default='0.25',
|
default='0.25',
|
||||||
label=_('Interval (in seconds) between polls for cpu usage.'),
|
label=_('Interval (in seconds) between polls for cpu usage.'),
|
||||||
help_text=_('Interval (in seconds) between polls for cpu usage.'),
|
help_text=_('Interval (in seconds) between polls for cpu usage. '
|
||||||
|
'Setting this lower than the default will affect playbook performance.'),
|
||||||
category=_('Jobs'),
|
category=_('Jobs'),
|
||||||
category_slug='jobs',
|
category_slug='jobs',
|
||||||
required=False,
|
required=False,
|
||||||
@@ -373,7 +375,8 @@ register(
|
|||||||
field_class=FloatField,
|
field_class=FloatField,
|
||||||
default='0.25',
|
default='0.25',
|
||||||
label=_('Interval (in seconds) between polls for memory usage.'),
|
label=_('Interval (in seconds) between polls for memory usage.'),
|
||||||
help_text=_('Interval (in seconds) between polls for memory usage.'),
|
help_text=_('Interval (in seconds) between polls for memory usage. '
|
||||||
|
'Setting this lower than the default will affect playbook performance.'),
|
||||||
category=_('Jobs'),
|
category=_('Jobs'),
|
||||||
category_slug='jobs',
|
category_slug='jobs',
|
||||||
required=False,
|
required=False,
|
||||||
@@ -384,7 +387,8 @@ register(
|
|||||||
field_class=FloatField,
|
field_class=FloatField,
|
||||||
default='0.25',
|
default='0.25',
|
||||||
label=_('Interval (in seconds) between polls for PID count.'),
|
label=_('Interval (in seconds) between polls for PID count.'),
|
||||||
help_text=_('Interval (in seconds) between polls for PID count.'),
|
help_text=_('Interval (in seconds) between polls for PID count. '
|
||||||
|
'Setting this lower than the default will affect playbook performance.'),
|
||||||
category=_('Jobs'),
|
category=_('Jobs'),
|
||||||
category_slug='jobs',
|
category_slug='jobs',
|
||||||
required=False,
|
required=False,
|
||||||
|
|||||||
Reference in New Issue
Block a user