Merge "Lower default collection time from 60 seconds to 30"

This commit is contained in:
Jenkins 2015-06-26 03:56:43 +00:00 committed by Gerrit Code Review
commit c189c45be7
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ def main(argv=None):
"This assumes the base config has already run.")
parser.add_argument('-a', '--detection_args', help="A string of arguments that will be passed to detection " +
"plugins. Only certain detection plugins use arguments.")
parser.add_argument('--check_frequency', help="How often to run metric collection in seconds", type=int, default=60)
parser.add_argument('--check_frequency', help="How often to run metric collection in seconds", type=int, default=30)
parser.add_argument('--dimensions', help="Additional dimensions to set for all metrics. A comma seperated list " +
"of name/value pairs, 'name:value,name2:value2'")
parser.add_argument('--ca_file', help="Sets the path to the ca certs file if using certificates. " +