def report_gc_times(self, store): young_gc_time = store.get_one("node_total_young_gen_gc_time") old_gc_time = store.get_one("node_total_old_gen_gc_time") print(" Total time spent in young gen GC: %.5fs" % convert.ms_to_seconds(young_gc_time)) print(" Total time spent in old gen GC: %.5fs" % convert.ms_to_seconds(old_gc_time))
def report_gc_times(self, stats): return [[ self.lap, "Total Young Gen GC", "", convert.ms_to_seconds(stats.young_gc_time), "s" ], [ self.lap, "Total Old Gen GC", "", convert.ms_to_seconds(stats.old_gc_time), "s" ]]
def report_ml_max_processing_time(self, stats): return self.join( self.line("Max Processing Time (ML)", "", convert.ms_to_seconds(stats.ml_max_processing_time), "s"))
def report_gc_times(self, stats): return [ [self.lap, "Total Young Gen GC", "", convert.ms_to_seconds(stats.young_gc_time), "s"], [self.lap, "Total Old Gen GC", "", convert.ms_to_seconds(stats.old_gc_time), "s"] ]
def report_gc_times(self, stats): return [ ["Total Young Gen GC [s]", convert.ms_to_seconds(stats.young_gc_time)], ["Total Old Gen GC [s]", convert.ms_to_seconds(stats.old_gc_time)] ]