You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
addOptionalCommandLineArg(p, nt, "Set the number of RPC handler threads (max-2 by default)");
53
-
addOptionalCommandLineArg(p, logdir, "Set the output log directory (default: job directory)");
54
-
addOptionalCommandLineArg(p, ws_addr, "Provide the address of the visualization module (aka webserver). If not provided no information will be sent to the visualization");
55
-
addOptionalCommandLineArg(p, stat_outputdir, "Optionally provide a directory where the stat data will be written alongside/in place of sending to the viz module (default: unused");
addOptionalCommandLineArgWithFlag(p, save_params, save_params_set, "Save anomaly algorithm parameters to file");
58
-
addOptionalCommandLineArg(p, freeze_params, "Fix the anomaly algorithm parameters, preventing updates from the AD. Use in conjunction with -load_params. Value should be 'true' or 'false' (or 0/1)");
59
-
addOptionalCommandLineArg(p, stat_send_freq, "The frequency in ms at which statistics are sent to the visualization (default 1000ms)");
60
-
addOptionalCommandLineArg(p, base_port, "The base port. Thread worker ports are base_port+thread_index (default 5559)");
53
+
addOptionalCommandLineArg(p, instance, nt, "Set the number of RPC handler threads (max-2 by default)");
addOptionalCommandLineArg(p, instance, ws_addr, "Provide the address of the visualization module (aka webserver). If not provided no information will be sent to the visualization");
56
+
addOptionalCommandLineArg(p, instance, stat_outputdir, "Optionally provide a directory where the stat data will be written alongside/in place of sending to the viz module (default: unused");
addOptionalCommandLineArgWithFlag(p, instance, save_params, save_params_set, "Save anomaly algorithm parameters to file");
59
+
addOptionalCommandLineArg(p, instance, freeze_params, "Fix the anomaly algorithm parameters, preventing updates from the AD. Use in conjunction with -load_params. Value should be 'true' or 'false' (or 0/1)");
60
+
addOptionalCommandLineArg(p, instance, stat_send_freq, "The frequency in ms at which statistics are sent to the visualization (default 1000ms)");
61
+
addOptionalCommandLineArg(p, instance, base_port, "The base port. Thread worker ports are base_port+thread_index (default 5559)");
61
62
init = true;
62
63
}
63
64
return p;
@@ -75,11 +76,11 @@ int main (int argc, char ** argv){
Copy file name to clipboardExpand all lines: app/pclient_stats.cpp
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,16 @@
1
1
//A test application that mocks part of the anomaly detection modules, acting as a client for the parameter server and sending it function statistics information
0 commit comments