Skip to content

Commit

Permalink
vpoller-client now supports --max-sample and --perf-interval
Browse files Browse the repository at this point in the history
command-line options
  • Loading branch information
dnaeon committed Feb 11, 2015
1 parent 7878ffb commit 3f1dad0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/vpoller-client
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ Options:
[default: tcp://localhost:10123]
-k <key>, --key <key> Provide additional key for data filtering
-c <counter-id>, --counter-id <counter-id> Retrieve performance metrics with this counter ID
-s <max-sample>, --max-sample <max-sample> Max number of performance samples to retrieve
-i <instance>, --instance <instance> Performance metric instance name
-t <interval> --perf-interval <interval> Historical performance interval key
-U <username>, --guest-username <username> Username to use for authentication in guest system
-P <password>, --guest-password <password> Password to use for authentication in guest system
-H <helper>, --helper <helper> Specify a helper module to use for processing of the
Expand Down Expand Up @@ -98,8 +100,10 @@ Examples:
'password': args['--guest-password'],
'key': args['--key'],
'properties': args['--properties'].split(',') if args['--properties'] else None,
'counter-id': args['--counter-id'].split(',') if args['--counter-id'] else None,
'counter-id': args['--counter-id'],
'instance': args['--instance'],
'max-sample': args['--max-sample'],
'perf-interval': args['--perf-interval'],
'helper': args['--helper'],
}

Expand Down

0 comments on commit 3f1dad0

Please sign in to comment.