pg_proctab 0.0.3

This Release
pg_proctab 0.0.3
Date
Status
Testing
Latest Stable
pg_proctab 0.0.1 —
Latest Testing
pg_proctab 0.0.9 —
Other Releases
Abstract
Access operating system process table
Released By
markwkm
License
BSD
Special Files

Extensions

pg_proctab 0.0.3
Access operating system process table

README

Contents

Currently only testing Linux, but support for other platforms will be added.

Install
-------
make
make install
psql -f pg_proctab.sql
psql -f pg_loadavg.sql
psql -f pg_cputime.sql
psql -f pg_memusage.sql

Examples
--------
SELECT procpid
FROM pg_stat_activity;

SELECT *
FROM pg_proctab();

SELECT *
FROM pg_stat_activity, pg_proctab()
WHERE procpid = pid;