Creates timeline into log directory.
(self)
| 734 | _INTERESTING_RE = re.compile("|".join("(%s)" % (s,) for s in _INTERESTING_STRINGS)) |
| 735 | |
| 736 | def create_timeline(self): |
| 737 | """Creates timeline into log directory.""" |
| 738 | timeline = monitor.Timeline( |
| 739 | monitor_file=self.monitoring_output_file, |
| 740 | containers=self.containers, |
| 741 | interesting_re=self._INTERESTING_RE, |
| 742 | buildname=self.name) |
| 743 | timeline.create(os.path.join(self.log_dir, "timeline.html")) |
| 744 | |
| 745 | def log_summary(self): |
| 746 | logging.info("Containers:") |