37 self.columns['group'] = Column("Group", "Bandwidth group this chain is associated to")
38 self.columns['events'] = Column("Raw Active Events", "Raw underlying statistics on the number of events in which this ROS was accessed")
39 self.columns['eventsWeighted'] = Column("Active Events", "How many events in which this sequence was executed")
40 self.columns['time'] = Column("Time Per Event [ms]", "Average execution time of this chain per event")
41 self.columns['chainRate'] = Column("Execute Rate [Hz]", "Number of chain executions normalised to the wall time for this run range", True)
42 self.columns['passFraction'] = Column("Pass Fraction [%]", "What percentage of events pass events are kept")
43 self.columns["callsSlow"] = Column("Calls > 1000 ms", "Number of algorithm executions which were particularly slow")
44 self.columns['totalTime'] = Column("Total Chain Time [s]", "Total time used by this chain for this run range")
45 self.columns['totalTimeFrac'] = Column("Total Chain Time [%]", "Total chain time as a percentage of the total time of all chains in this run range")
46 self.columns["totalUniqTime"] = Column("Total Unique Time [s]", "Total time used by algorithms for this chain for this run range")
47 self.columns['totalUniqTimeFrac'] = Column("Total Unique Time [%]", "Total unique chain time as a percentage of the total time of all chains in this run range")
48 self.columns['algPerEvent'] = Column("Run Algs/Event", "Total number of algorithms executed by this chain")
49 self.columns["dataRate"] = Column("Data Request Rate [Hz]", "Rate of data requests to ROSes (one request can be to many ROSes) from this chain in this run range", True)
50 self.columns["retrievedDataRate"] = Column("Retrieved Data Request Rate [Hz]", "Rate of data request with at least one network ROS request from this chain in this run range", True)
51 self.columns["cachedDataSizeRate"] = Column("Cached ROB Rate [kB/s]", "Average size of cached ROB data fetches from this algorithm in this run range", True)
52 self.columns["retrievedDataSizeRate"] = Column("Retrieved ROB Rate [kB/s]", "Average size of retrieved ROB data fetches for this algorithm in this run range")