Skip to content

Commit

Permalink
vpoller-client: Add options for providing performance metrics parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaeon committed Jan 21, 2015
1 parent 044cc2d commit e2afed2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/vpoller-client
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ Options:
-e <endpoint>, --endpoint <endpoint> Endpoint of vPoller Proxy/Worker the client connects to
[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
-c <counter-id>, --counter-id <counter-id> Retrieve performance metrics with this counter ID
-i <instance>, --instance <instance> Performance metric instance name
-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 @@ -95,7 +96,8 @@ Examples:
'password': args['--guest-password'],
'key': args['--key'],
'properties': args['--properties'].split(',') if args['--properties'] else None,
'counter-id': args['--counter-id'],
'counter-id': args['--counter-id'].split(',') if args['--counter-id'] else None,
'instance': args['--instance'],
'helper': args['--helper'],
}

Expand Down

0 comments on commit e2afed2

Please sign in to comment.