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
@@ -943,6 +945,7 @@ int main(int argc, char** argv)
943
945
std::string what = "";
944
946
std::string config = "";
945
947
uint64_t minDuration = 0;
948
+
uint64_t timeInterval = 30;
946
949
int warningLevel = 1;
947
950
int printLevel = 1;
948
951
std::string outFileName = "";
@@ -955,6 +958,7 @@ int main(int argc, char** argv)
955
958
("channels,c",po::value<std::string>(&what)->default_value(""),R"(channel(s) to scan ("HV" or "LV" or comma separated list of (part of) DCS aliases))")
956
959
("configKeyValues",po::value<std::string>(&config)->default_value(""),"Semicolon separated key=value strings to change HV thresholds")
957
960
("duration,d",po::value<uint64_t>(&minDuration)->default_value(0),"minimum duration (ms) of HV/LV issues to consider")
961
+
("interval,i",po::value<uint64_t>(&timeInterval)->default_value(30),"creation time interval (minutes) between CCDB files")
958
962
("warning,w",po::value<int>(&warningLevel)->default_value(1),"warning level (0, 1 or 2)")
959
963
("print,p",po::value<int>(&printLevel)->default_value(1),"print level (0, 1, 2 or 3)")
0 commit comments