diff options
| author | Thomas Herve <thomas.herve@enovance.com> | 2013-12-11 11:25:58 +0100 |
|---|---|---|
| committer | Thomas Herve <thomas.herve@enovance.com> | 2013-12-11 11:28:13 +0100 |
| commit | 7fa59bda16d9721c61fa214ee809938e123158f1 (patch) | |
| tree | 95d3b8775c5b5ec610c735de1b3a11861d72ec3d /ceilometerclient | |
| parent | 419c27fdff45a16dffbe72e738886e64fcc976ae (diff) | |
| download | python-ceilometerclient-7fa59bda16d9721c61fa214ee809938e123158f1.tar.gz | |
Improve description of some commands
Change description of sample-list and statistics commands to not refer
to the meter as "this meter(s)".
Change-Id: Ib8301361f43f8e08ef9975a609548afffba1ba41
Closes-Bug: #1259853
Diffstat (limited to 'ceilometerclient')
| -rw-r--r-- | ceilometerclient/v2/shell.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ceilometerclient/v2/shell.py b/ceilometerclient/v2/shell.py index a4cec33..065727d 100644 --- a/ceilometerclient/v2/shell.py +++ b/ceilometerclient/v2/shell.py @@ -41,7 +41,7 @@ OPERATORS_STRING = dict(gt='>', ge='>=', @utils.arg('-p', '--period', metavar='<PERIOD>', help='Period in seconds over which to group samples.') def do_statistics(cc, args): - '''List the statistics for this meter.''' + '''List the statistics for a meter.''' fields = {'meter_name': args.meter, 'q': options.cli_to_array(args.query), 'period': args.period} @@ -66,7 +66,7 @@ def do_statistics(cc, args): @utils.arg('-l', '--limit', metavar='<NUMBER>', help='Maximum number of samples to return.') def do_sample_list(cc, args): - '''List the samples for this meters.''' + '''List the samples for a meter.''' fields = {'meter_name': args.meter, 'q': options.cli_to_array(args.query), 'limit': args.limit} |
