Commit 5893c690 by Joseph Mulloy

Prevent reconfiguring alarms OPS-2545

parent 15cf6656
...@@ -129,21 +129,26 @@ def check_queues(host, port, environment, deploy, max_metrics, threshold, ...@@ -129,21 +129,26 @@ def check_queues(host, port, environment, deploy, max_metrics, threshold,
treat_missing_data = "missing" treat_missing_data = "missing"
statistic = "Maximum" statistic = "Maximum"
actions = [sns_arn] actions = [sns_arn]
alarm_name = "{} queue length over threshold".format(queue) alarm_name = "{}-{} {} queue length over threshold".format(environment,
deploy,
# Always create/configure alert to keep config up to date queue)
cloudwatch.put_metric_alarm(AlarmName=alarm_name, if len(cloudwatch.describe_alarms_for_metric(Namespace=namespace,
AlarmDescription=alarm_name, MetricName=metric_name,
Namespace=namespace, Dimensions=dimensions)
MetricName=metric_name, ['MetricAlarms']) < 1:
Dimensions=dimensions, print('Creating new alarm "{}"'.format(alarm_name))
Period=period, cloudwatch.put_metric_alarm(AlarmName=alarm_name,
EvaluationPeriods=evaluation_periods, AlarmDescription=alarm_name,
TreatMissingData=treat_missing_data, Namespace=namespace,
Threshold=threshold, MetricName=metric_name,
ComparisonOperator=comparison_operator, Dimensions=dimensions,
Statistic=statistic, Period=period,
AlarmActions=actions) EvaluationPeriods=evaluation_periods,
TreatMissingData=treat_missing_data,
Threshold=threshold,
ComparisonOperator=comparison_operator,
Statistic=statistic,
AlarmActions=actions)
if __name__ == '__main__': if __name__ == '__main__':
......
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