@@ -64,68 +64,68 @@ bool CCmdLineParser::parse(int argc,
6464 (" help" , " Display this information and exit" )
6565 (" version" , " Display version information and exit" )
6666 (" config" , boost::program_options::value<std::string>(),
67- " The job configuration file" )
67+ " The job configuration file" )
6868 (" limitconfig" , boost::program_options::value<std::string>(),
69- " Optional limit config file" )
69+ " Optional limit config file" )
7070 (" modelconfig" , boost::program_options::value<std::string>(),
71- " Optional model config file" )
71+ " Optional model config file" )
7272 (" fieldconfig" , boost::program_options::value<std::string>(),
73- " Optional field config file" )
73+ " Optional field config file" )
7474 (" modelplotconfig" , boost::program_options::value<std::string>(),
75- " Optional model plot config file" )
75+ " Optional model plot config file" )
7676 (" jobid" , boost::program_options::value<std::string>(),
77- " ID of the job this process is associated with" )
77+ " ID of the job this process is associated with" )
7878 (" logProperties" , boost::program_options::value<std::string>(),
79- " Optional logger properties file" )
79+ " Optional logger properties file" )
8080 (" logPipe" , boost::program_options::value<std::string>(),
81- " Optional log to named pipe" )
81+ " Optional log to named pipe" )
8282 (" bucketspan" , boost::program_options::value<core_t ::TTime>(),
83- " Optional aggregation bucket span (in seconds) - default is 300" )
83+ " Optional aggregation bucket span (in seconds) - default is 300" )
8484 (" latency" , boost::program_options::value<core_t ::TTime>(),
85- " Optional maximum delay for out-of-order records (in seconds) - default is 0" )
85+ " Optional maximum delay for out-of-order records (in seconds) - default is 0" )
8686 (" summarycountfield" , boost::program_options::value<std::string>(),
87- " Optional field to that contains counts for pre-summarized input - default is none" )
87+ " Optional field to that contains counts for pre-summarized input - default is none" )
8888 (" delimiter" , boost::program_options::value<char >(),
89- " Optional delimiter character for delimited data formats - default is '\t ' (tab separated)" )
89+ " Optional delimiter character for delimited data formats - default is '\t ' (tab separated)" )
9090 (" lengthEncodedInput" ,
91- " Take input in length encoded binary format - default is delimited" )
91+ " Take input in length encoded binary format - default is delimited" )
9292 (" timefield" , boost::program_options::value<std::string>(),
93- " Optional name of the field containing the timestamp - default is 'time'" )
93+ " Optional name of the field containing the timestamp - default is 'time'" )
9494 (" timeformat" , boost::program_options::value<std::string>(),
95- " Optional format of the date in the time field in strptime code - default is the epoch time in seconds" )
95+ " Optional format of the date in the time field in strptime code - default is the epoch time in seconds" )
9696 (" quantilesState" , boost::program_options::value<std::string>(),
97- " Optional file to quantiles for normalization" )
97+ " Optional file to quantiles for normalization" )
9898 (" deleteStateFiles" ,
99- " If the 'quantilesState' option is used and this flag is set then delete the model state files once they have been read" )
99+ " If the 'quantilesState' option is used and this flag is set then delete the model state files once they have been read" )
100100 (" namedPipeConnectTimeout" , boost::program_options::value<core_t ::TTime>(),
101- " Optional timeout (in seconds) for connecting named pipes on startup - default is 300 seconds" )
101+ " Optional timeout (in seconds) for connecting named pipes on startup - default is 300 seconds" )
102102 (" input" , boost::program_options::value<std::string>(),
103- " Optional file to read input from - not present means read from STDIN" )
103+ " Optional file to read input from - not present means read from STDIN" )
104104 (" inputIsPipe" , " Specified input file is a named pipe" )
105105 (" output" , boost::program_options::value<std::string>(),
106- " Optional file to write output to - not present means write to STDOUT" )
106+ " Optional file to write output to - not present means write to STDOUT" )
107107 (" outputIsPipe" , " Specified output file is a named pipe" )
108108 (" restore" , boost::program_options::value<std::string>(),
109- " Optional file to restore state from - not present means no state restoration" )
109+ " Optional file to restore state from - not present means no state restoration" )
110110 (" restoreIsPipe" , " Specified restore file is a named pipe" )
111111 (" persist" , boost::program_options::value<std::string>(),
112- " Optional file to persist state to - not present means no state persistence" )
112+ " Optional file to persist state to - not present means no state persistence" )
113113 (" persistIsPipe" , " Specified persist file is a named pipe" )
114114 (" persistInterval" , boost::program_options::value<core_t ::TTime>(),
115- " Optional time interval at which to periodically persist model state (Mutually exclusive with bucketPersistInterval)" )
115+ " Optional time interval at which to periodically persist model state (Mutually exclusive with bucketPersistInterval)" )
116116 (" persistInForeground" , " Persistence occurs in the foreground. Defaults to background persistence." )
117117 (" bucketPersistInterval" , boost::program_options::value<std::size_t >(),
118- " Optional number of buckets after which to periodically persist model state (Mutually exclusive with persistInterval)" )
118+ " Optional number of buckets after which to periodically persist model state (Mutually exclusive with persistInterval)" )
119119 (" maxQuantileInterval" , boost::program_options::value<core_t ::TTime>(),
120- " Optional interval at which to periodically output quantiles if they have not been output due to an anomaly - if not specified then quantiles will only be output following a big anomaly" )
120+ " Optional interval at which to periodically output quantiles if they have not been output due to an anomaly - if not specified then quantiles will only be output following a big anomaly" )
121121 (" maxAnomalyRecords" , boost::program_options::value<std::size_t >(),
122- " The maximum number of records to be outputted for each bucket. Defaults to 100, a value 0 removes the limit." )
122+ " The maximum number of records to be outputted for each bucket. Defaults to 100, a value 0 removes the limit." )
123123 (" memoryUsage" ,
124- " Log the model memory usage at the end of the job" )
124+ " Log the model memory usage at the end of the job" )
125125 (" multivariateByFields" ,
126- " Optional flag to enable multi-variate analysis of correlated by fields" )
126+ " Optional flag to enable multi-variate analysis of correlated by fields" )
127127 (" stopCategorizationOnWarnStatus" ,
128- " Optional flag to stop categorization for partitions where the status is 'warn'." )
128+ " Optional flag to stop categorization for partitions where the status is 'warn'." )
129129 ;
130130 // clang-format on
131131
0 commit comments