cli usage corrections

pull/2603/head
Cory LaNou 2015-05-18 14:40:42 -06:00
parent 8beda919d0
commit 60729fdd77
1 changed files with 5 additions and 5 deletions

View File

@ -64,7 +64,7 @@ func main() {
fmt.Println(`Usage of influx: fmt.Println(`Usage of influx:
-host 'host name' -host 'host name'
Host to connect to. Host to connect to.
-port -port 'port #'
Port to connect to. Port to connect to.
-database 'database name' -database 'database name'
Database to connect to the server. Database to connect to the server.
@ -78,19 +78,19 @@ func main() {
Execute command and quit. Execute command and quit.
-format 'json|csv|column' -format 'json|csv|column'
Format specifies the format of the server responses: json, csv, or column. Format specifies the format of the server responses: json, csv, or column.
-pretty 'true|false' -pretty
Turns on pretty print for the json format. Turns on pretty print for the json format.
Examples: Examples:
# Use influx in a non-interactive mode to query the database "metrics" and pretty print json # Use influx in a non-interactive mode to query the database "metrics" and pretty print json
$ influx -database="metrics" -execute="select * from cpu" -format="json" -pretty="true" $ influx -database 'metrics' -execute 'select * from cpu' -format 'json' -pretty
# Dumping out your data # Dumping out your data
$ influx -dump=true -database="metrics" $ influx -database 'metrics' -dump
# Connect to a specific database on startup and set database context # Connect to a specific database on startup and set database context
$ influx -database="metrics" -host="localhost" -port="8086 $ influx -database 'metrics' -host 'localhost' -port '8086'
`) `)
} }