From e8bf783d6aec35a694db491c8df580db54fa4de0 Mon Sep 17 00:00:00 2001 From: Eoghan Glynn Date: Thu, 8 Aug 2013 15:01:21 +0000 Subject: Add support for new alarm repeat_actions attribute Continuous notification is generally required by Heat. Change-Id: Ib396f47c68298f883e305c755d821c2679a56a5c --- ceilometerclient/v2/shell.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'ceilometerclient/v2/shell.py') diff --git a/ceilometerclient/v2/shell.py b/ceilometerclient/v2/shell.py index 1ea3e52..3659988 100644 --- a/ceilometerclient/v2/shell.py +++ b/ceilometerclient/v2/shell.py @@ -148,7 +148,7 @@ def _display_alarm(alarm): 'evaluation_periods', 'threshold', 'comparison_operator', 'state', 'enabled', 'alarm_id', 'user_id', 'project_id', 'alarm_actions', 'ok_actions', 'insufficient_data_actions', - 'matching_metadata'] + 'repeat_actions', 'matching_metadata'] data = dict([(f, getattr(alarm, f, '')) for f in fields]) utils.print_dict(data, wrap=72) @@ -205,6 +205,10 @@ def do_alarm_show(cc, args={}): metavar='', action='append', default=None, help=('URL to invoke when state transitions to unkown. ' 'May be used multiple times.')) +@utils.arg('--repeat-actions', dest='repeat_actions', metavar='{True|False}', + type=utils.string_to_bool, default=False, + help=('True if actions should be repeatedly notified ' + 'while alarm remains in target state')) @utils.arg('--matching-metadata', dest='matching_metadata', metavar='', action='append', default=None, help=('A meter should match this resource metadata (key=value) ' @@ -249,6 +253,10 @@ def do_alarm_create(cc, args={}): metavar='', action='append', default=None, help=('URL to invoke when state transitions to unkown. ' 'May be used multiple times.')) +@utils.arg('--repeat-actions', dest='repeat_actions', + metavar='{True|False}', type=utils.string_to_bool, + help=('True if actions should be repeatedly notified ' + 'while alarm remains in target state')) @utils.arg('--matching-metadata', dest='matching_metadata', metavar='', action='append', default=None, help=('A meter should match this resource metadata (key=value) ' -- cgit v1.2.1