<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Monitoring Java garbage collection with jstat</title>
	<atom:link href="http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/feed/" rel="self" type="application/rss+xml" />
	<link>http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/</link>
	<description>Blog O' Matty</description>
	<lastBuildDate>Fri, 04 May 2012 19:58:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: jtayl22</title>
		<link>http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/comment-page-1/#comment-806084</link>
		<dc:creator>jtayl22</dc:creator>
		<pubDate>Wed, 24 Jun 2009 20:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2008/01/16/monitoring-garabge-collection-with-jstat/#comment-806084</guid>
		<description>In response to May&#039;s question about monitoring threads on Solaris: 
(1) In &quot;prstat&quot; the last number of each column is the NLWP (number light weight processes aka threads) that are currently active.
(2) &quot;prstat -mLp &quot; will show the current threads for one process. The last column is the LWPID (light weight process ID)
(3) LWPID&#039;s increment by one, hence the highest LWPID indicates how many threads have been launched since process creation.
(4) &quot;ps -fLp &quot; gives similar info to #3
(5) View system calls for one thread with &quot;truss -f -p 10135/997&quot; where 10135 is the PID &amp; 997 is the LWPID</description>
		<content:encoded><![CDATA[<p>In response to May&#8217;s question about monitoring threads on Solaris:<br />
(1) In &#8220;prstat&#8221; the last number of each column is the NLWP (number light weight processes aka threads) that are currently active.<br />
(2) &#8220;prstat -mLp &#8221; will show the current threads for one process. The last column is the LWPID (light weight process ID)<br />
(3) LWPID&#8217;s increment by one, hence the highest LWPID indicates how many threads have been launched since process creation.<br />
(4) &#8220;ps -fLp &#8221; gives similar info to #3<br />
(5) View system calls for one thread with &#8220;truss -f -p 10135/997&#8243; where 10135 is the PID &amp; 997 is the LWPID</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: may</title>
		<link>http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/comment-page-1/#comment-788455</link>
		<dc:creator>may</dc:creator>
		<pubDate>Fri, 08 May 2009 07:41:17 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2008/01/16/monitoring-garabge-collection-with-jstat/#comment-788455</guid>
		<description>Thank you for nice explanation of jstat.

Is there anyway to get the details of threads spawned by a java process ( like &#039;top&#039; tool).

e.g.: Tomcat starts many threads. So if I pass the tomcat&#039;s (java) process id to a tool, I can get details like, how many threads it has created so far, etc.

Thank you.</description>
		<content:encoded><![CDATA[<p>Thank you for nice explanation of jstat.</p>
<p>Is there anyway to get the details of threads spawned by a java process ( like &#8216;top&#8217; tool).</p>
<p>e.g.: Tomcat starts many threads. So if I pass the tomcat&#8217;s (java) process id to a tool, I can get details like, how many threads it has created so far, etc.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikram</title>
		<link>http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/comment-page-1/#comment-612078</link>
		<dc:creator>vikram</dc:creator>
		<pubDate>Fri, 19 Sep 2008 11:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2008/01/16/monitoring-garabge-collection-with-jstat/#comment-612078</guid>
		<description>nice one</description>
		<content:encoded><![CDATA[<p>nice one</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dario the boring</title>
		<link>http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/comment-page-1/#comment-571442</link>
		<dc:creator>dario the boring</dc:creator>
		<pubDate>Tue, 12 Aug 2008 15:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2008/01/16/monitoring-garabge-collection-with-jstat/#comment-571442</guid>
		<description>what is the unit of expression on young garbage coll time? segs? millisegs?</description>
		<content:encoded><![CDATA[<p>what is the unit of expression on young garbage coll time? segs? millisegs?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: damien31830</title>
		<link>http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/comment-page-1/#comment-509806</link>
		<dc:creator>damien31830</dc:creator>
		<pubDate>Wed, 02 Jul 2008 16:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2008/01/16/monitoring-garabge-collection-with-jstat/#comment-509806</guid>
		<description>Yes jconsole is very powerful but it only can be used on version 1.5 &amp; more ....
But i don&#039;t know if jstat is included in 1.4 version, i have to test!
If you have some news or experience concerning the monitoring of GB answer me .
Thanks !!!</description>
		<content:encoded><![CDATA[<p>Yes jconsole is very powerful but it only can be used on version 1.5 &amp; more &#8230;.<br />
But i don&#8217;t know if jstat is included in 1.4 version, i have to test!<br />
If you have some news or experience concerning the monitoring of GB answer me .<br />
Thanks !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Bent</title>
		<link>http://prefetch.net/blog/index.php/2008/01/16/monitoring-garbage-collection-with-jstat/comment-page-1/#comment-210045</link>
		<dc:creator>Brian Bent</dc:creator>
		<pubDate>Thu, 24 Jan 2008 19:28:18 +0000</pubDate>
		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2008/01/16/monitoring-garabge-collection-with-jstat/#comment-210045</guid>
		<description>Matt - I think you have a great site out here.  Keep up the good work.

Another utility that I think worth mentioning is jconsole.  JConsole allows you to visually see what jstat is giving you.  I do a lot of work on the Oracle E-Business Suite and my utilities of choice for troubleshooting the application servers are jps, jstat and JConsole.

Brian</description>
		<content:encoded><![CDATA[<p>Matt &#8211; I think you have a great site out here.  Keep up the good work.</p>
<p>Another utility that I think worth mentioning is jconsole.  JConsole allows you to visually see what jstat is giving you.  I do a lot of work on the Oracle E-Business Suite and my utilities of choice for troubleshooting the application servers are jps, jstat and JConsole.</p>
<p>Brian</p>
]]></content:encoded>
	</item>
</channel>
</rss>

