36 self.columns['events'] = Column("Raw Active Events", "Raw underlying statistics on the number of events in which this ROS was accessed.")
37 self.columns['eventsWeighted'] = Column("Active Events", "How many events in which this sequence was executed.")
38 self.columns['requestRate'] = Column("Data Requests Rate [Hz]", "Rate of ROS access requests each may contain many ROB reads.", True)
39 self.columns['networkRequestRate'] = Column("Retrieved Data Requests Rate [Hz]", "Rate of ROS access requests that fetch data from the ROBs.", True)
40 self.columns['retrievedSizeRate'] = Column("Retrieved ROB Data Rate [kB/s]", "Amount of data fetched from the ROBs in kB/s.", True)
41 self.columns['cachedSizeRate'] = Column("Cached ROB Data Rate [kB/s]", "Amount of cached data requested from the ROBs in kB/s.", True)
42 self.columns['time'] = Column("Time Per Event [ms]", "Average time for all requests and retrievals per event.")
43 self.columns['fullRequests'] = Column("Full ROS requests [%]", "How many of requests to the ROS requested all ROBs")
44 self.columns['robsUnclassified'] = Column("Unclassified ROBs Rate [Hz]", "Rate of ROB calls which were flagged unclassified.", True)
45 self.columns['robsRetrieved'] = Column("Retrieved ROBs Rate [Hz]","Total rate of fetched ROB calls.", True)
46 self.columns['robsHLTCached'] = Column("Cached HLT ROBs Rate [Hz]","Total rate of HLT cached ROB calls.", True)
47 self.columns['robsDCMCached'] = Column("Cached DCM ROBs Rate [Hz]","Total rate of DCM cached ROB calls.", True)
48 self.columns['robsIgnored'] = Column("Ignored ROBs Rate [Hz]", "Rate of ROB calls which were flagged as ignored.", True)
49 self.columns['robsDisabled'] = Column("Disabled ROBs Rate [Hz]", "Rate of ROB calls which were flagged as disabled.", True)
50 self.columns['robsNotOk'] = Column("Not OK ROBs Rate [Hz]", "Rate of ROB calls in which the is OK bit was false.", True)