From 2f350cfda7bd30255dbd5e987957883e341090a7 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 17 Oct 2019 14:56:29 -0400 Subject: [PATCH] Adjust description/help text for profiling features. Note that data is merely for sosreport collection for now, and warn against increasing collection frequency. --- awx/main/conf.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/awx/main/conf.py b/awx/main/conf.py index d75e254d1e..cce5e0a5de 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -351,8 +351,9 @@ register( 'AWX_RESOURCE_PROFILING_ENABLED', field_class=fields.BooleanField, default=False, - label=_('Enable resource profiling on all tower jobs'), - help_text=_('If set, resource profiling data will be collected on all jobs.'), # noqa + label=_('Enable detailed resource profiling on all playbook runs'), + 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_slug='jobs', ) @@ -362,7 +363,8 @@ register( field_class=FloatField, default='0.25', 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_slug='jobs', required=False, @@ -373,7 +375,8 @@ register( field_class=FloatField, default='0.25', 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_slug='jobs', required=False, @@ -384,7 +387,8 @@ register( field_class=FloatField, default='0.25', 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_slug='jobs', required=False,