Measuring time spent on GC in JVM

后端 未结 7 1100
天命终不由人
天命终不由人 2020-12-03 01:47

Suppose I am testing a Java server application. I know how much time it takes to finish the test. Now I\'d like to know how much was spent on GC during that test. How can I

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-03 02:29

    The simplest way is to use the -Xloggc and -XX:-PrintGCTimeStamps options when starting up your JVM. I think it prints out how long garbage collection takes.

    http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html

提交回复
热议问题