Tracing IO in java application ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T06:32:50Z http://stackoverflow.com/feeds/question/446023 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/446023/tracing-io-in-java-application 1 Tracing IO in java application ? krosenvold 2009-01-15T08:35:23Z 2009-01-19T21:56:29Z <p>I am trying to find out why Apache CXF is running away doing "something" upon first-time initialization of a web-service. "Something" is probably some kind of IO, and I'm guessing it's trying to resolve an external address/schema/DTD of some sort.</p> <p>So I'm trying to find some kind of hook where I can monitor all IO. Either at VM level or at OS level (I can run on both linux and windows but I'm not allowed to run wireshark, and there is a theoretical possibility that it could be file IO).</p> <p>Any suggestions on how I can track down what is happening ?</p> http://stackoverflow.com/questions/446023/tracing-io-in-java-application/446072#446072 1 Answer by Tom for Tracing IO in java application ? Tom 2009-01-15T08:53:26Z 2009-01-15T08:53:26Z <p>On windows you can use <a href="http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx" rel="nofollow">filemon</a>, it'll list out all file accesses and allows you to filter them so you only see those of the process your interested in.</p> <p>Looks like for more recent versions of windows <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> is the way forward.</p> http://stackoverflow.com/questions/446023/tracing-io-in-java-application/446106#446106 3 Answer by wic for Tracing IO in java application ? wic 2009-01-15T09:06:05Z 2009-01-15T09:06:05Z <p>One way if you really want do know whats happening is to run 'strace' or 'ltrace' on the apache process. There is a short introduction to it <a href="http://tldp.org/LDP/LGNET/132/vishnu.html" rel="nofollow">here</a>. The interesting is that strace should block in a certain call, ie waiting for i/o if your hypothesis is correct.</p> <p>To check what files (and network sockets) a certain process is using, have a look at 'lsof'. For instance, to check what files are opened by a certain process:</p> <pre><code>lsof -p process_id # by PID lsof -c httpd # by a process name </code></pre> <p>To check network connections in general, try 'netstat'</p> http://stackoverflow.com/questions/446023/tracing-io-in-java-application/448178#448178 1 Answer by joev for Tracing IO in java application ? joev 2009-01-15T19:44:13Z 2009-01-15T19:44:13Z <p>In addition to strace and filemon, which monitor the app from the OS level, you might also want to give an interactive profiler a shot. A tool like Sun's free <a href="https://visualvm.dev.java.net/" rel="nofollow">VisualVM</a> can show you how frequently various methods are being called, as well as an easy way to generate and view thread dumps. That way, you can see if the app is spinning in your own code, or if the thread is blocking waiting for some IO that never completes.</p> http://stackoverflow.com/questions/446023/tracing-io-in-java-application/459335#459335 1 Answer by Daniel Kulp for Tracing IO in java application ? Daniel Kulp 2009-01-19T21:56:29Z 2009-01-19T21:56:29Z <p>It's most likely busy resolving the WSDL, parsing it, processing it, etc....</p> <p>Actually, first time, it's also processing all the spring config files which involves loading schemas for those as well and validating and such.</p> <p>You COULD also run something like wireshark to track all the network traffic to see if it's going out to get anything.</p>