CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DQMMonitoringService.cc
Go to the documentation of this file.
1 #include "DQMMonitoringService.h"
2 
3 #include <boost/algorithm/string.hpp>
4 #include <boost/format.hpp>
5 #include <boost/algorithm/string/predicate.hpp>
6 
7 
8 #include <ctime>
9 
10 /*
11  * This service is very similar to the FastMonitoringService in the HLT,
12  * except that it is used for monitoring online DQM applications
13  */
14 
15 namespace dqmservices {
16 
18  const char* x = getenv("DQM2_SOCKET");
19  if (x) {
20  std::cerr << "Monitoring pipe: " << x << std::endl;
21  mstream_.connect(boost::asio::local::stream_protocol::endpoint(x));
22  } else {
23  std::cerr << "Monitoring file not found, disabling." << std::endl;
24  }
25 
26  // init counters
27  nevents_ = 0;
28 
29  last_lumi_ = 0;
32 
33  run_ = 0;
34  lumi_ = 0;
35 
38 }
39 
41 }
42 
44  using std::chrono::duration_cast;
45  using std::chrono::milliseconds;
46 
48 
49  ptree doc;
50 
51  // these might be different than the numbers we want to report
52  // rate/stats per lumi are calculated from last_*_ fields
53  doc.put("cmssw_run", run_);
54  doc.put("cmssw_lumi", lumi_);
55  doc.put("events_total", nevents_);
56 
57  // do statistics for the last (elapsed) ls
58  auto lumi_millis = duration_cast<milliseconds>(now - last_lumi_time_).count();
59  auto lumi_events = nevents_ - last_lumi_nevents_;
60  auto lumi_last = last_lumi_;
61 
62  if ((lumi_last > 0) && (lumi_millis > 0)) {
63  doc.put("lumi_number", lumi_last);
64  doc.put("lumi_events", lumi_events);
65  doc.put("lumi_duration_ms", lumi_millis);
66 
67  float rate = ((float)lumi_events * 1000) / lumi_millis;
68  doc.put("events_rate", rate);
69 
70  // also save the history entry
71  ptree plumi;
72  plumi.put("n", lumi_last);
73  plumi.put("nevents", lumi_events);
74  plumi.put("nmillis", lumi_millis);
75  plumi.put("rate", rate);
76 
77  std::time_t hkey = std::time(NULL);
78  doc.add_child(str(boost::format("extra.lumi_stats.%d") % hkey), plumi);
79  }
80 
81  outputUpdate(doc);
82 
83 }
84 
86  using std::chrono::duration_cast;
87  using std::chrono::milliseconds;
88 
89  // these might be different than the numbers we want to report
90  // rate/stats per lumi are calculated from last_*_ fields
91  run_ = iContext.luminosityBlockID().run();
93 
95 
98  last_lumi_ = lumi_;
99 }
100 
102  nevents_ += 1;
103  tryUpdate();
104 }
105 
107  using std::chrono::duration_cast;
108  using std::chrono::milliseconds;
109 
110  if (!mstream_)
111  return;
112 
113  try {
115  doc.put("update_timestamp", std::time(NULL));
116 
117  write_json(mstream_, doc, false);
118  mstream_.flush();
119  } catch (...) {
120  // pass
121  }
122 }
123 
125  if (!mstream_)
126  return;
127 
128  mstream_ << "\n";
129  mstream_.flush();
130 
131  tryUpdate();
132 }
133 
135  using std::chrono::duration_cast;
136  using std::chrono::milliseconds;
137 
138  if (!mstream_)
139  return;
140 
141  // sometimes we don't see any transition for a very long time
142  // but we still want updates
143  // luckily, keepAlive is called rather often by the input source
145  auto millis = duration_cast<milliseconds>(now - last_update_time_).count();
146  if (millis >= (25*1000)) {
148  }
149 }
150 
151 
152 } // end-of-namespace
153 
155 
LuminosityBlockID const & luminosityBlockID() const
Definition: GlobalContext.h:52
void watchPreGlobalBeginLumi(PreGlobalBeginLumi::slot_type const &iSlot)
#define NULL
Definition: scimark2.h:8
string format
Some error handling for the usage.
T x() const
Cartesian x coordinate.
RunNumber_t run() const
boost::asio::local::stream_protocol::iostream mstream_
tuple DQMMonitoringService
#define DEFINE_FWK_SERVICE(type)
Definition: ServiceMaker.h:113
LuminosityBlockNumber_t luminosityBlock() const
std::chrono::high_resolution_clock::time_point last_lumi_time_
double rate(double x)
Definition: Constants.cc:3
DQMMonitoringService(const edm::ParameterSet &, edm::ActivityRegistry &)
void watchPreSourceEvent(PreSourceEvent::slot_type const &iSlot)
std::chrono::high_resolution_clock::time_point last_update_time_
void evLumi(GlobalContext const &)