From: <lak...@go...> - 2007-11-07 19:54:44
|
> I have to estimate he cpu and memory usage for the openorb 1.4.0.. please > let me know how to find this on solaris 9 or 10 machine. > > Please mention the command to capture this. To get a rough picture you could use the standard unix commands like top or vmstat. If you neded to drill down more, you can profile cpu and memory usage using standard profilers like yourkit, jprofiler, etc - I guess most of them are supported on solaris as well. If you need to dig really deep, you could use a Solaris tool called DTrace, which was introduced in Solaris 10. This is a command line tool that allows you to take probes on every level of the runing software stack (java code, jvm and kernel activities). Unfortunately I don't have access to a Solaris 10 machine, so I have never been able to use dtrace myself, so for details please read the dtrace docs on sun.com Regards, Lars |