summaryrefslogtreecommitdiff
path: root/ceilometerclient/v2
diff options
context:
space:
mode:
Diffstat (limited to 'ceilometerclient/v2')
-rw-r--r--ceilometerclient/v2/alarms.py1
-rw-r--r--ceilometerclient/v2/shell.py10
2 files changed, 10 insertions, 1 deletions
diff --git a/ceilometerclient/v2/alarms.py b/ceilometerclient/v2/alarms.py
index 41c17aa..dde7430 100644
--- a/ceilometerclient/v2/alarms.py
+++ b/ceilometerclient/v2/alarms.py
@@ -33,6 +33,7 @@ UPDATABLE_ATTRIBUTES = [
'alarm_actions',
'ok_actions',
'insufficient_data_actions',
+ 'repeat_actions',
'matching_metadata',
]
CREATION_ATTRIBUTES = UPDATABLE_ATTRIBUTES + ['name', 'project_id', 'user_id']
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='<Webhook URL>', 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='<Matching Metadata>', 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='<Webhook URL>', 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='<Matching Metadata>', action='append', default=None,
help=('A meter should match this resource metadata (key=value) '