Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 1 | // This file was auto-generated via go generate. |
| 2 | // DO NOT UPDATE MANUALLY |
| 3 | |
| 4 | /* |
| 5 | The application tool facilitates interaction with the veyron application |
| 6 | repository. |
| 7 | |
| 8 | Usage: |
| 9 | application <command> |
| 10 | |
| 11 | The application commands are: |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 12 | match Shows the first matching envelope that matches the given |
| 13 | profiles. |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 14 | put Add the given envelope to the application for the given profiles. |
| 15 | remove removes the application envelope for the given profile. |
| 16 | edit edits the application envelope for the given profile. |
| 17 | help Display help for commands or topics |
| 18 | Run "application help [command]" for command usage. |
| 19 | |
| 20 | The global flags are: |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 21 | -alsologtostderr=true |
| 22 | log to standard error as well as files |
| 23 | -log_backtrace_at=:0 |
| 24 | when logging hits line file:N, emit a stack trace |
| 25 | -log_dir= |
| 26 | if non-empty, write log files to this directory |
| 27 | -logtostderr=false |
| 28 | log to standard error instead of files |
| 29 | -max_stack_buf_size=4292608 |
| 30 | max size in bytes of the buffer to use for logging stack traces |
| 31 | -stderrthreshold=2 |
| 32 | logs at or above this threshold go to stderr |
| 33 | -v=0 |
| 34 | log level for V logs |
Jiri Simsa | 3540e3a | 2014-12-26 07:54:09 -0800 | [diff] [blame] | 35 | -vanadium.i18n_catalogue= |
| 36 | 18n catalogue files to load, comma separated |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 37 | -veyron.credentials= |
| 38 | directory to use for storing security credentials |
Robin Thellend | 8fea01c | 2014-12-11 13:48:10 -0800 | [diff] [blame] | 39 | -veyron.namespace.root=[/ns.dev.v.io:8101] |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 40 | local namespace root; can be repeated to provided multiple roots |
Jiri Simsa | e44e74e | 2015-02-03 16:04:48 -0800 | [diff] [blame] | 41 | -veyron.proxy= |
| 42 | object name of proxy service to use to export services across network |
| 43 | boundaries |
| 44 | -veyron.tcp.address= |
| 45 | address to listen on |
| 46 | -veyron.tcp.protocol=tcp |
| 47 | protocol to listen with |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 48 | -veyron.vtrace.cache_size=1024 |
| 49 | The number of vtrace traces to store in memory. |
Jiri Simsa | 7fc2271 | 2015-02-03 11:27:02 -0800 | [diff] [blame] | 50 | -veyron.vtrace.collect_regexp= |
| 51 | Spans and annotations that match this regular expression will trigger trace |
| 52 | collection. |
| 53 | -veyron.vtrace.dump_on_shutdown=true |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 54 | If true, dump all stored traces on runtime shutdown. |
| 55 | -veyron.vtrace.sample_rate=0 |
| 56 | Rate (from 0.0 to 1.0) to sample vtrace traces. |
| 57 | -vmodule= |
| 58 | comma-separated list of pattern=N settings for file-filtered logging |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 59 | |
| 60 | Application Match |
| 61 | |
| 62 | Shows the first matching envelope that matches the given profiles. |
| 63 | |
| 64 | Usage: |
| 65 | application match <application> <profiles> |
| 66 | |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 67 | <application> is the full name of the application. <profiles> is a |
| 68 | comma-separated list of profiles. |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 69 | |
| 70 | Application Put |
| 71 | |
| 72 | Add the given envelope to the application for the given profiles. |
| 73 | |
| 74 | Usage: |
Jiri Simsa | 7fc2271 | 2015-02-03 11:27:02 -0800 | [diff] [blame] | 75 | application put <application> <profiles> [<envelope>] |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 76 | |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 77 | <application> is the full name of the application. <profiles> is a |
| 78 | comma-separated list of profiles. <envelope> is the file that contains a |
Jiri Simsa | 7fc2271 | 2015-02-03 11:27:02 -0800 | [diff] [blame] | 79 | JSON-encoded envelope. If this file is not provided, the user will be prompted |
| 80 | to enter the data manually. |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 81 | |
| 82 | Application Remove |
| 83 | |
| 84 | removes the application envelope for the given profile. |
| 85 | |
| 86 | Usage: |
| 87 | application remove <application> <profile> |
| 88 | |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 89 | <application> is the full name of the application. <profile> is a profile. |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 90 | |
| 91 | Application Edit |
| 92 | |
| 93 | edits the application envelope for the given profile. |
| 94 | |
| 95 | Usage: |
| 96 | application edit <application> <profile> |
| 97 | |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 98 | <application> is the full name of the application. <profile> is a profile. |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 99 | |
| 100 | Application Help |
| 101 | |
| 102 | Help with no args displays the usage of the parent command. |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 103 | |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 104 | Help with args displays the usage of the specified sub-command or help topic. |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 105 | |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 106 | "help ..." recursively displays help for all commands and topics. |
| 107 | |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 108 | The output is formatted to a target width in runes. The target width is |
| 109 | determined by checking the environment variable CMDLINE_WIDTH, falling back on |
| 110 | the terminal width from the OS, falling back on 80 chars. By setting |
| 111 | CMDLINE_WIDTH=x, if x > 0 the width is x, if x < 0 the width is unlimited, and |
| 112 | if x == 0 or is unset one of the fallbacks is used. |
| 113 | |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 114 | Usage: |
| 115 | application help [flags] [command/topic ...] |
| 116 | |
| 117 | [command/topic ...] optionally identifies a specific sub-command or help topic. |
| 118 | |
Cosmos Nicolaou | d83b90b | 2014-11-30 15:01:31 -0800 | [diff] [blame] | 119 | The application help flags are: |
| 120 | -style=text |
| 121 | The formatting style for help output, either "text" or "godoc". |
Todd Wang | 0d12d71 | 2014-10-06 17:25:41 -0700 | [diff] [blame] | 122 | */ |
| 123 | package main |