From J.K.Shah at Sun.COM Fri May 2 16:49:43 2008 From: J.K.Shah at Sun.COM (Jignesh K. Shah) Date: Fri, 02 May 2008 12:49:43 -0400 Subject: [ptop-hackers] pg_top on Solaris Message-ID: <481B4627.1060104@sun.com> I just started using pg_top on Solaris and saw that the command doesnt display right information that folks from Linux land see out there.. I have encountered the problem with prstat tool and actually created a custom version which shows the similar information like Linux. The workaround was to use framework of /usr/ucb/ps of getting information rather than the /usr/bin/ps information which is what you see right now.. The portion of how /usr/ucb/ps works is in the source code published on opensolaris.org. Shouldn't we integrate that so we get similar information regardless of platform? -Jignesh From markwkm at gmail.com Sat May 3 19:09:11 2008 From: markwkm at gmail.com (Mark Wong) Date: Sat, 3 May 2008 12:09:11 -0700 Subject: [ptop-hackers] pg_top on Solaris In-Reply-To: <481B4627.1060104@sun.com> References: <481B4627.1060104@sun.com> Message-ID: <70c01d1d0805031209v388ce2fdh6e772b12d5572e0f@mail.gmail.com> On Fri, May 2, 2008 at 9:49 AM, Jignesh K. Shah wrote: > I just started using pg_top on Solaris and saw that the command doesnt > display right information that folks from Linux land see out there.. > > I have encountered the problem with prstat tool and actually created a > custom version which shows the similar information like Linux. The > workaround was to use framework of /usr/ucb/ps of getting information > rather than the /usr/bin/ps information which is what you see right now.. > > The portion of how /usr/ucb/ps works is in the source code published on > opensolaris.org. > > Shouldn't we integrate that so we get similar information regardless of > platform? Curious, I'm not quite clear on the source of the problem (probably because I haven't looked yet) but the way you describe it suggests that the program is not getting this information directly from the process table. Am I understanding that much correctly? Or it is purely a cosmetic issue? Regards, Mark From markwkm at gmail.com Sat May 3 19:11:02 2008 From: markwkm at gmail.com (Mark Wong) Date: Sat, 3 May 2008 12:11:02 -0700 Subject: [ptop-hackers] PostgreSQL top (pg_top) 3.6.2 released Message-ID: <70c01d1d0805031211p4900b23fx3a98e2e6716b15d7@mail.gmail.com> I'm pleased to announce the 3.6.2 release of pg_top. It is a utility that provides a display of top PostgreSQL processes and other database statistics. Summary of changes: - No changes since beta4. Download here: http://pgfoundry.org/frs/download.php/1770/pg_top-3.6.2.tar.bz2 http://pgfoundry.org/frs/download.php/1771/pg_top-3.6.2.tar.gz Homepage: http://ptop.projects.postgresql.org/ Please send any comments or problems to: ptop-hackers ( at ) pgfoundry ( dot ) org Regards, Mark From Colvinreiqeglhifceis at yahoo.com Wed May 7 21:26:10 2008 From: Colvinreiqeglhifceis at yahoo.com (Celina evildoer) Date: Wed, 07 May 2008 18:26:10 -0300 Subject: [ptop-hackers] Den Tists Directory for the USA Message-ID: <915534e4jsj0$t0001bp0$5634o5o0@Delldim5150 Essential for any marketer: ++ 164,223 Dent ists ++ 158,872 Addresses ++ 163,520 Phone Numbers ++ 77,649 Facsimile Numbers ++ 45,088 e mails from today until this Friday the reduced price is $291 (reg $493) For details reply to jeanettezura at hotmail.com Forward email with 9256 in the sub to purge from our records From replenish at metslb.com Wed May 14 09:43:54 2008 From: replenish at metslb.com (Shirley C Avery) Date: Wed, 14 May 2008 08:43:54 -0100 Subject: [ptop-hackers] Database of radiologists and 38 more specialties Message-ID: <300961v2fdy0$i0891bz0$1934d4y0@condemn6095 Resources for the Health Care Business : Medical Doctor List ==> Medical Doctor Listing <><><> 777,302 Total Medical Doctors on file 512,507 Tel. Nos. 222,622 Office Fax Numbers 17,589 Business Emails Medical Doctors in many different specialties many fields which can easily be sorted in excel Reduced to only: $393 contact your rep: lisamanchester at hotmail.com only during this week send and email with 5222 in the sub for deletion from our records From markwkm at gmail.com Thu May 15 15:21:14 2008 From: markwkm at gmail.com (Mark Wong) Date: Thu, 15 May 2008 08:21:14 -0700 Subject: [ptop-hackers] pg_proctab function for remote pg_top connections Message-ID: <70c01d1d0805150821w7da6829p15f3ebc80e5b8a84@mail.gmail.com> Hi all, I've started putting together a C stored function for accessing the process table, to eventually allow pg_top to monitor systems remotely: http://ptop.sourceforge.net/cgi-bin/hgwebdir.cgi/pg_proctab/ (click on 'bz2' or 'gz' to download) Instructions: make make install psql -f pg_proctab.sql Right now it's only working (sort of) on linux. I seem to stomp over various parts of memory. Any suggestions appreciated. :) Regards, Mark From markwkm at gmail.com Thu May 15 15:45:53 2008 From: markwkm at gmail.com (Mark Wong) Date: Thu, 15 May 2008 08:45:53 -0700 Subject: [ptop-hackers] pg_proctab function for remote pg_top connections In-Reply-To: <70c01d1d0805150821w7da6829p15f3ebc80e5b8a84@mail.gmail.com> References: <70c01d1d0805150821w7da6829p15f3ebc80e5b8a84@mail.gmail.com> Message-ID: <70c01d1d0805150845p3dc89971jc873dd7e09f5326b@mail.gmail.com> On Thu, May 15, 2008 at 8:21 AM, Mark Wong wrote: > Hi all, > > I've started putting together a C stored function for accessing the > process table, to eventually allow pg_top to monitor systems remotely: > > http://ptop.sourceforge.net/cgi-bin/hgwebdir.cgi/pg_proctab/ (click on > 'bz2' or 'gz' to download) > > Instructions: > > make > make install > psql -f pg_proctab.sql Then more importantly: SELECT procpid FROM pg_stat_activity; SELECT * FROM pg_ptoctab(12345); -- Use a pid from the previous query. Regards, Mark