Start the counter with measurements at the frequency specified at instance creation
(self)
| 70 | inst_dict = kind_dict.setdefault(inst, {}) |
| 71 | |
| 72 | def start(self): |
| 73 | """Start the counter with measurements at the frequency specified at |
| 74 | instance creation""" |
| 75 | self.starttime = datetime.utcnow() |
| 76 | self.collectdatawhile(self.tick_freq) |
| 77 | |
| 78 | def stop(self): |
| 79 | """Stop collecting data""" |
no outgoing calls
no test coverage detected