20 using namespace jsoncollector;
24 #define NRESERVEDMODULES 33
25 #define NSPECIALMODULES 7
26 #define NRESERVEDPATHS 1
30 const std::string FastMonitoringService::macroStateNames[FastMonitoringThread::MCOUNT] =
31 {
"Init",
"JobReady",
"RunGiven",
"Running",
32 "Stopping",
"Done",
"JobEnded",
"Error",
"ErrorEnded",
"End",
35 const std::string FastMonitoringService::nopath_ =
"NoPath";
42 ,sleepTime_(iPS.getUntrackedParameter<int>(
"sleepTime", 1))
43 ,fastMonIntervals_(iPS.getUntrackedParameter<unsigned int>(
"fastMonIntervals", 1))
44 ,microstateDefPath_(iPS.getUntrackedParameter<std::
string> (
"microstateDefPath", std::
string(getenv(
"CMSSW_BASE"))+
"/src/EventFilter/Utilities/plugins/microstatedef.jsd"))
45 ,fastMicrostateDefPath_(iPS.getUntrackedParameter<std::
string>(
"fastMicrostateDefPath", microstateDefPath_))
46 ,fastName_(iPS.getUntrackedParameter<std::
string>(
"fastName",
"fastmoni"))
47 ,slowName_(iPS.getUntrackedParameter<std::
string>(
"slowName",
"slowmoni"))
48 ,totalEventsProcessed_(0)
94 pathLegend[
"names"]=legendaVector;
95 pathLegend[
"reserved"]=valReserved;
97 return writer.
write(pathLegend);
108 moduleLegend[
"names"]=legendaVector;
109 moduleLegend[
"reserved"]=valReserved;
110 moduleLegend[
"special"]=valSpecial;
111 moduleLegend[
"output"]=valOutputModules;
113 return writer.
write(moduleLegend);
124 throw cms::Exception(
"FastMonitoringService") <<
"EvFDaqDirector is not present";
137 <<
". No monitoring data will be written.";
140 std::ostringstream fastFileName;
142 fastFileName <<
fastName_ <<
"_pid" << std::setfill(
'0') << std::setw(5) << getpid() <<
".fast";
144 fast /= fastFileName.str();
147 std::ostringstream moduleLegFile;
148 std::ostringstream moduleLegFileJson;
149 moduleLegFile <<
"microstatelegend_pid" << std::setfill(
'0') << std::setw(5) << getpid() <<
".leg";
150 moduleLegFileJson <<
"microstatelegend_pid" << std::setfill(
'0') << std::setw(5) << getpid() <<
".jsn";
154 std::ostringstream pathLegFile;
155 std::ostringstream pathLegFileJson;
156 pathLegFile <<
"pathlegend_pid" << std::setfill(
'0') << std::setw(5) << getpid() <<
".leg";
158 pathLegFileJson <<
"pathlegend_pid" << std::setfill(
'0') << std::setw(5) << getpid() <<
".jsn";
161 LogDebug(
"FastMonitoringService") <<
"Initializing FastMonitor with microstate def path -: "
181 for(
unsigned int i = 0;
i < (
mCOUNT);
i++)
216 monInit_.store(
false,std::memory_order_release);
251 edm::LogInfo(
"FastMonitoringService") <<
" GLOBAL " <<
"earlyTermination -: LS:"
264 edm::LogInfo(
"FastMonitoringService") <<
" SOURCE " <<
"earlyTermination -: " << context;
322 timeval lumiStartTime;
323 gettimeofday(&lumiStartTime, 0);
347 LogDebug(
"FastMonitoringService") <<
"Lumi ended. Writing JSON information. LUMI -: "
349 timeval lumiStopTime;
350 gettimeofday(&lumiStopTime, 0);
356 unsigned long usecondsForLumi = (lumiStopTime.tv_sec - stt.tv_sec)*1000000
357 + (lumiStopTime.tv_usec - stt.tv_usec);
359 double throughput =
throughputFactor()* double(accuSize) / double(usecondsForLumi);
367 std::stringstream slowFileName;
368 slowFileName <<
slowName_ <<
"_ls" << std::setfill(
'0') << std::setw(4)
369 << lumi <<
"_pid" << std::setfill(
'0')
370 << std::setw(5) << getpid() <<
".jsn";
372 slow /= slowFileName.str();
376 if (!lumiProcessedJptr)
377 throw cms::Exception(
"FastMonitoringService") <<
"Internal error: got null pointer from FastMonitor";
386 if (lumi == ex) exception_detected=
true;
389 edm::LogInfo(
"FastMonitoringService") <<
"Run interrupted. Skip writing EoL information -: "
401 throw cms::Exception(
"FastMonitoringService") <<
"MISMATCH with SOURCE update. LUMI -: "
404 <<
" events(source):" << itr->second;
409 edm::LogInfo(
"FastMonitoringService") <<
"Statistics for lumisection -: lumi = " << lumi <<
" events = "
410 << lumiProcessedJptr->
value() <<
" time = " << usecondsForLumi/1000000
411 <<
" size = " << accuSize <<
" thr = " << throughput;
412 delete lumiProcessedJptr;
516 #elif ATOMIC_LEVEL==1
520 #elif ATOMIC_LEVEL==0 //default
628 unsigned int proc = it->second.first;
629 if (abortFlag) *abortFlag=it->second.second;
633 throw cms::Exception(
"FastMonitoringService") <<
"output module wants already deleted (or never reported by SOURCE) lumisection event count for LUMI -: "<<
lumi;
644 unsigned int abortFlag = it->second.second;
648 throw cms::Exception(
"FastMonitoringService") <<
"output module wants already deleted (or never reported by SOURCE) lumisection status for LUMI -: "<<
lumi;
int encode(const void *add)
void prePathEvent(edm::StreamContext const &, edm::PathContext const &)
std::string const & pathName() const
unsigned int maxNumberOfThreads() const
std::string pathLegendFileJson_
EventNumber_t event() const
void watchPreStreamEarlyTermination(PreStreamEarlyTermination::slot_type const &iSlot)
void watchPreEvent(PreEvent::slot_type const &iSlot)
unsigned int getEventsProcessedForLumi(unsigned int lumi, bool *abortFlag=0)
static const edm::ModuleDescription reservedMicroStateNames[mCOUNT]
std::string pathLegendFile_
void postSourceEvent(edm::StreamID)
std::string makePathLegendaJson()
void watchPrePathEvent(PrePathEvent::slot_type const &iSlot)
void watchPreallocate(Preallocate::slot_type const &iSlot)
void startedLookingForFile()
void setExceptionDetected(unsigned int ls)
boost::filesystem::path runDirectory_
void watchPostEndJob(PostEndJob::slot_type const &iSlot)
void preallocate(edm::service::SystemBounds const &)
std::map< unsigned int, timeval > lumiStartTime_
void start(void(FastMonitoringService::*fp)(), FastMonitoringService *cp)
void preGlobalBeginLumi(edm::GlobalContext const &)
double throughputFactor()
void watchPreModuleEvent(PreModuleEvent::slot_type const &iSlot)
void postGlobalEndLumi(edm::GlobalContext const &)
TrainProcessor *const proc
void postEvent(edm::StreamContext const &)
void accumulateFileSize(unsigned int lumi, unsigned long fileSize)
void watchPreGlobalEndLumi(PreGlobalEndLumi::slot_type const &iSlot)
std::map< unsigned int, unsigned long > accuSize_
FastMonitoringThread fmt_
unsigned int microstateBins_
std::vector< unsigned int > eventCountForPathInit_
std::vector< std::atomic< bool > * > streamCounterUpdating_
void watchPostEvent(PostEvent::slot_type const &iSlot)
jsoncollector::DoubleJ fastThroughputJ_
LuminosityBlockID const & luminosityBlockID() const
void watchPostStreamEndLumi(PostStreamEndLumi::slot_type const &iSlot)
void watchPreGlobalBeginLumi(PreGlobalBeginLumi::slot_type const &iSlot)
unsigned int nOutputModules_
std::string const & moduleName() const
void watchPostModuleEvent(PostModuleEvent::slot_type const &iSlot)
Value & append(const Value &value)
Append value to array at the end.
void watchPostSourceEvent(PostSourceEvent::slot_type const &iSlot)
volatile std::atomic< bool > shutdown_flag
void doStreamEOLSnapshot(const unsigned int ls, const unsigned int streamID)
std::map< unsigned int, unsigned int > filesProcessedDuringLumi_
void preGlobalEndLumi(edm::GlobalContext const &)
unsigned int lastGlobalLumi_
LuminosityBlockNumber_t luminosityBlock() const
void watchPreStreamEndLumi(PreStreamEndLumi::slot_type const &iSlot)
void preGlobalEarlyTermination(edm::GlobalContext const &, edm::TerminationOrigin)
void watchPreSourceEarlyTermination(PreSourceEarlyTermination::slot_type const &iSlot)
jsoncollector::IntJ fastMacrostateJ_
void watchJobFailure(JobFailure::slot_type const &iSlot)
convenience function for attaching to signal
void reportEventsThisLumiInSource(unsigned int lumi, unsigned int events)
void registerVariables(jsoncollector::FastMonitor *fm, unsigned int nStreams, unsigned int nThreads)
std::atomic< bool > monInit_
std::string makeModuleLegendaJson()
unsigned int maxNumberOfStreams() const
void preModuleBeginJob(edm::ModuleDescription const &)
void updateReserved(void *add)
unsigned int lumiFromSource_
std::vector< std::atomic< bool > * > collectedPathList_
std::queue< unsigned int > lastGlobalLumisClosed_
std::string microstateDefPath_
void preStreamEndLumi(edm::StreamContext const &)
std::map< unsigned int, double > avgLeadTime_
std::string moduleLegendFile_
void watchPostStreamBeginLumi(PostStreamBeginLumi::slot_type const &iSlot)
void doSnapshot(const unsigned int ls, const bool isGlobalEOL)
void preStreamEarlyTermination(edm::StreamContext const &, edm::TerminationOrigin)
void watchPreGlobalEarlyTermination(PreGlobalEarlyTermination::slot_type const &iSlot)
std::unique_ptr< jsoncollector::FastMonitor > jsonMonitor_
jsoncollector::IntJ fastFilesProcessedJ_
jsoncollector::DoubleJ fastAvgLeadTimeJ_
static const std::string nopath_
ModuleDescription const * moduleDescription() const
void resetFastMonitor(std::string const µStateDefPath, std::string const &fastMicroStateDefPath)
std::string fastMicrostateDefPath_
bool emptyLumisectionMode_
void watchPostGlobalEndLumi(PostGlobalEndLumi::slot_type const &iSlot)
std::map< unsigned int, std::pair< double, unsigned int > > lockStatsDuringLumi_
std::string moduleLegendFileJson_
std::vector< unsigned long > firstEventId_
void watchPreModuleBeginJob(PreModuleBeginJob::slot_type const &iSlot)
jsoncollector::DoubleJ fastLockWaitJ_
void postModuleEvent(edm::StreamContext const &, edm::ModuleCallingContext const &)
virtual std::string write(const Value &root)
Serialize a Value in JSON format.
tuple FastMonitoringService
void postStreamBeginLumi(edm::StreamContext const &)
void completeReservedWithDummies()
StreamID const & streamID() const
void preSourceEvent(edm::StreamID)
void postStreamEndLumi(edm::StreamContext const &)
std::vector< const void * > microstate_
std::vector< unsigned int > microstateEncoded_
unsigned int value() const
std::map< unsigned int, std::pair< unsigned int, bool > > processedEventsPerLumi_
void preStreamBeginLumi(edm::StreamContext const &)
std::atomic< unsigned long > totalEventsProcessed_
LuminosityBlockNumber_t luminosityBlock() const
void watchPreStreamBeginLumi(PreStreamBeginLumi::slot_type const &iSlot)
FastMonitoringThread::Macrostate macrostate_
std::vector< double > leadTimes_
jsoncollector::IntJ fastPathProcessedJ_
void stoppedLookingForFile(unsigned int lumi)
void setMicroState(MicroStateService::Microstate)
boost::filesystem::path workingDirectory_
jsoncollector::IntJ fastLockCountJ_
std::map< unsigned int, unsigned int > sourceEventsReport_
std::vector< jsoncollector::AtomicMonUInt * > processed_
void postGlobalBeginRun(edm::GlobalContext const &)
void preEvent(edm::StreamContext const &)
bool isGlobalLumiTransition_
void preSourceEarlyTermination(edm::TerminationOrigin)
EventID const & eventID() const
void watchPreSourceEvent(PreSourceEvent::slot_type const &iSlot)
bool getAbortFlagForLumi(unsigned int lumi)
void preModuleEvent(edm::StreamContext const &, edm::ModuleCallingContext const &)
Writes a Value in JSON format in a human friendly way.
std::vector< const void * > ministate_
unsigned int macrostateBins_
const void * decode(unsigned int index)
std::vector< unsigned int > streamLumi_
unsigned int ministateBins_
std::vector< Encoding > encPath_
std::vector< unsigned int > ministateEncoded_
void reportLockWait(unsigned int ls, double waitTime, unsigned int lockCount)
std::vector< unsigned int > exceptionInLS_
void watchPostBeginJob(PostBeginJob::slot_type const &iSlot)
convenience function for attaching to signal
array value (ordered list)