Source code for exporters.stats_managers.basic_stats_manager

from exporters.stats_managers.base_stats_manager import BaseStatsManager


[docs]class BasicStatsManager(BaseStatsManager): """ Module to be used when no stats tracking is needed. It does nothing for iteration reports, and only prints a debug log message with final stats """
[docs] def iteration_report(self, times): pass
[docs] def final_report(self): self.logger.debug(repr(self.metadata.to_dict()))