Unverified Commit c1fbdcf6 by Kevin Falcone Committed by GitHub

Merge pull request #4620 from edx/jibsheet/reduce-max-metrics

CloudWatch is throwing errors when we go past 20
parents 8dbcf3ad f13400fc
...@@ -69,7 +69,7 @@ class CwBotoWrapper(object): ...@@ -69,7 +69,7 @@ class CwBotoWrapper(object):
@click.option('--environment', '-e', required=True) @click.option('--environment', '-e', required=True)
@click.option('--deploy', '-d', required=True, @click.option('--deploy', '-d', required=True,
help="Deployment (i.e. edx or edge)") help="Deployment (i.e. edx or edge)")
@click.option('--max-metrics', default=30, @click.option('--max-metrics', default=20,
help='Maximum number of CloudWatch metrics to publish') help='Maximum number of CloudWatch metrics to publish')
@click.option('--threshold', default=50, @click.option('--threshold', default=50,
help='Default maximum queue length before alarm notification is' help='Default maximum queue length before alarm notification is'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment