admin管理员组

文章数量:1195210

I'm having touble with jprofiler.

I hava a Java service running on a 4 cpu core server. When I run "top" command, it shows the Java process consuming 340% of cpu. And when I check Jprofiler, it shows that both "process load" and "system load" are almost 90%.

I wonder what "process load" and "system load" means.

I'm having touble with jprofiler.

I hava a Java service running on a 4 cpu core server. When I run "top" command, it shows the Java process consuming 340% of cpu. And when I check Jprofiler, it shows that both "process load" and "system load" are almost 90%.

I wonder what "process load" and "system load" means.

Share Improve this question asked Jan 24 at 7:28 Calvin_ZCalvin_Z 1351 silver badge11 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Process load is the CPU load created by the profiled process, and system load is the total CPU load on the system.

You can measure CPU load with a maximum of 100% (as here in the case of JProfiler) or multiply by the number of processors (as in the case of top). So ~90% and ~340% are compatible measurements if you have 4 processors.

本文标签: What is quotprocess loadquot and quotsystem loadquot in jprofilerStack Overflow