@@ -63,66 +63,66 @@ bool CCmdLineParser::parse(int argc,
63
63
(" help" , " Display this information and exit" )
64
64
(" version" , " Display version information and exit" )
65
65
(" limitconfig" , boost::program_options::value<std::string>(),
66
- " Optional limit config file" )
66
+ " Optional limit config file" )
67
67
(" modelconfig" , boost::program_options::value<std::string>(),
68
- " Optional model config file" )
68
+ " Optional model config file" )
69
69
(" fieldconfig" , boost::program_options::value<std::string>(),
70
- " Optional field config file" )
70
+ " Optional field config file" )
71
71
(" modelplotconfig" , boost::program_options::value<std::string>(),
72
- " Optional model plot config file" )
72
+ " Optional model plot config file" )
73
73
(" jobid" , boost::program_options::value<std::string>(),
74
- " ID of the job this process is associated with" )
74
+ " ID of the job this process is associated with" )
75
75
(" logProperties" , boost::program_options::value<std::string>(),
76
- " Optional logger properties file" )
76
+ " Optional logger properties file" )
77
77
(" logPipe" , boost::program_options::value<std::string>(),
78
- " Optional log to named pipe" )
78
+ " Optional log to named pipe" )
79
79
(" bucketspan" , boost::program_options::value<core_t ::TTime>(),
80
- " Optional aggregation bucket span (in seconds) - default is 300" )
80
+ " Optional aggregation bucket span (in seconds) - default is 300" )
81
81
(" latency" , boost::program_options::value<core_t ::TTime>(),
82
- " Optional maximum delay for out-of-order records (in seconds) - default is 0" )
82
+ " Optional maximum delay for out-of-order records (in seconds) - default is 0" )
83
83
(" summarycountfield" , boost::program_options::value<std::string>(),
84
- " Optional field to that contains counts for pre-summarized input - default is none" )
84
+ " Optional field to that contains counts for pre-summarized input - default is none" )
85
85
(" delimiter" , boost::program_options::value<char >(),
86
- " Optional delimiter character for delimited data formats - default is '\t ' (tab separated)" )
86
+ " Optional delimiter character for delimited data formats - default is '\t ' (tab separated)" )
87
87
(" lengthEncodedInput" ,
88
- " Take input in length encoded binary format - default is delimited" )
88
+ " Take input in length encoded binary format - default is delimited" )
89
89
(" timefield" , boost::program_options::value<std::string>(),
90
- " Optional name of the field containing the timestamp - default is 'time'" )
90
+ " Optional name of the field containing the timestamp - default is 'time'" )
91
91
(" timeformat" , boost::program_options::value<std::string>(),
92
- " Optional format of the date in the time field in strptime code - default is the epoch time in seconds" )
92
+ " Optional format of the date in the time field in strptime code - default is the epoch time in seconds" )
93
93
(" quantilesState" , boost::program_options::value<std::string>(),
94
- " Optional file to quantiles for normalization" )
94
+ " Optional file to quantiles for normalization" )
95
95
(" deleteStateFiles" ,
96
- " If the 'quantilesState' option is used and this flag is set then delete the model state files once they have been read" )
96
+ " If the 'quantilesState' option is used and this flag is set then delete the model state files once they have been read" )
97
97
(" namedPipeConnectTimeout" , boost::program_options::value<core_t ::TTime>(),
98
- " Optional timeout (in seconds) for connecting named pipes on startup - default is 300 seconds" )
98
+ " Optional timeout (in seconds) for connecting named pipes on startup - default is 300 seconds" )
99
99
(" input" , boost::program_options::value<std::string>(),
100
- " Optional file to read input from - not present means read from STDIN" )
100
+ " Optional file to read input from - not present means read from STDIN" )
101
101
(" inputIsPipe" , " Specified input file is a named pipe" )
102
102
(" output" , boost::program_options::value<std::string>(),
103
- " Optional file to write output to - not present means write to STDOUT" )
103
+ " Optional file to write output to - not present means write to STDOUT" )
104
104
(" outputIsPipe" , " Specified output file is a named pipe" )
105
105
(" restore" , boost::program_options::value<std::string>(),
106
- " Optional file to restore state from - not present means no state restoration" )
106
+ " Optional file to restore state from - not present means no state restoration" )
107
107
(" restoreIsPipe" , " Specified restore file is a named pipe" )
108
108
(" persist" , boost::program_options::value<std::string>(),
109
- " Optional file to persist state to - not present means no state persistence" )
109
+ " Optional file to persist state to - not present means no state persistence" )
110
110
(" persistIsPipe" , " Specified persist file is a named pipe" )
111
111
(" persistInterval" , boost::program_options::value<core_t ::TTime>(),
112
- " Optional time interval at which to periodically persist model state (Mutually exclusive with bucketPersistInterval)" )
112
+ " Optional time interval at which to periodically persist model state (Mutually exclusive with bucketPersistInterval)" )
113
113
(" persistInForeground" , " Persistence occurs in the foreground. Defaults to background persistence." )
114
114
(" bucketPersistInterval" , boost::program_options::value<std::size_t >(),
115
- " Optional number of buckets after which to periodically persist model state (Mutually exclusive with persistInterval)" )
115
+ " Optional number of buckets after which to periodically persist model state (Mutually exclusive with persistInterval)" )
116
116
(" maxQuantileInterval" , boost::program_options::value<core_t ::TTime>(),
117
- " 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" )
117
+ " 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" )
118
118
(" maxAnomalyRecords" , boost::program_options::value<std::size_t >(),
119
- " The maximum number of records to be outputted for each bucket. Defaults to 100, a value 0 removes the limit." )
119
+ " The maximum number of records to be outputted for each bucket. Defaults to 100, a value 0 removes the limit." )
120
120
(" memoryUsage" ,
121
- " Log the model memory usage at the end of the job" )
121
+ " Log the model memory usage at the end of the job" )
122
122
(" multivariateByFields" ,
123
- " Optional flag to enable multi-variate analysis of correlated by fields" )
123
+ " Optional flag to enable multi-variate analysis of correlated by fields" )
124
124
(" stopCategorizationOnWarnStatus" ,
125
- " Optional flag to stop categorization for partitions where the status is 'warn'." )
125
+ " Optional flag to stop categorization for partitions where the status is 'warn'." )
126
126
;
127
127
// clang-format on
128
128
0 commit comments