@@ -202,7 +202,7 @@ def parse_cmd_args(argv):
202
202
help = 'ZIMon collector port number (Default from config.ini: 9980)' )
203
203
parser .add_argument ('-l' , '--logPath' , action = "store" , default = None ,
204
204
help = 'location path of the log file (Default from config.ini: \' /var/log/ibm_bridge_for_grafana\' )' )
205
- parser .add_argument ('-f' , '--logFile' , action = "store" , default = None ,
205
+ parser .add_argument ('-f' , '--logFile' , action = "store" , default = None ,
206
206
help = 'Name of the log file (Default from config.ini: zserver.log). If no log file name specified \
207
207
all traces will be printed out directly on the command line' )
208
208
parser .add_argument ('-c' , '--logLevel' , action = "store" , type = int , default = None ,
@@ -213,17 +213,17 @@ def parse_cmd_args(argv):
213
213
help = 'port number listening on OpenTSDB API HTTP(S) connections (Default from config.ini: 4242, if enabled)' )
214
214
parser .add_argument ('-r' , '--protocol' , action = "store" , choices = ["http" , "https" ], default = None ,
215
215
help = 'Connection protocol HTTP/HTTPS (Default from config.ini: "http")' )
216
- parser .add_argument ('-t' , '--tlsKeyPath' , action = "store" , default = None ,
216
+ parser .add_argument ('-t' , '--tlsKeyPath' , action = "store" , default = None ,
217
217
help = 'Directory path of tls privkey.pem and cert.pem file location (Required only for HTTPS ports 8443/9250)' )
218
218
parser .add_argument ('-k' , '--tlsKeyFile' , action = "store" , default = None ,
219
219
help = 'Name of TLS key file, f.e.: privkey.pem (Required only for HTTPS ports 8443/9250)' )
220
- parser .add_argument ('-m' , '--tlsCertFile' , action = "store" , default = None ,
220
+ parser .add_argument ('-m' , '--tlsCertFile' , action = "store" , default = None ,
221
221
help = 'Name of TLS certificate file, f.e.: cert.pem (Required only for HTTPS ports 8443/9250)' )
222
- parser .add_argument ('-n' , '--apiKeyName' , action = "store" , default = None ,
222
+ parser .add_argument ('-n' , '--apiKeyName' , action = "store" , default = None ,
223
223
help = 'Name of api key file (Default from config.ini: \' scale_grafana\' )' )
224
- parser .add_argument ('-v' , '--apiKeyValue' , action = Password , nargs = '?' , dest = 'apiKeyValue' , default = None ,
224
+ parser .add_argument ('-v' , '--apiKeyValue' , action = Password , nargs = '?' , dest = 'apiKeyValue' , default = None ,
225
225
help = 'Enter your apiKey value:' )
226
- parser .add_argument ('-d' , '--includeDiskData' , action = "store" , choices = ["yes" , "no" ], default = None ,
226
+ parser .add_argument ('-d' , '--includeDiskData' , action = "store" , choices = ["yes" , "no" ], default = None ,
227
227
help = 'Use or not the historical data from disk (Default from config.ini: "no")' )
228
228
229
229
args = parser .parse_args (argv )
0 commit comments