Beispiel #1
0
 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))
Beispiel #2
0
 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"
             ]]
Beispiel #3
0
 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"))
Beispiel #4
0
 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"]
     ]
Beispiel #5
0
 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))
Beispiel #6
0
 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)]
     ]
Beispiel #7
0
 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)]
     ]