Merge from vendor branch TNF:
authorasau <asau>
Fri, 10 Dec 2010 19:21:06 +0000 (19:21 +0000)
committerasau <asau>
Fri, 10 Dec 2010 19:21:06 +0000 (19:21 +0000)
commite6043bcaa00a5b124fa67bdec39c4e540028dd4c
treecb3f0907dbaa4435c6b15c089c38bab7c38e28c3
parente50dc7894440d577cde6277ea351f84ca31052d4
parent46b616232f06cc99a8de8f22b4cc09c723f93de9
Merge from vendor branch TNF:
Import PostgreSQL 9.0 monitoring modules as databases/postgresql90-monitoring

This package provides the following PostgreSQL modules:
  - auto_explain
  - pg_buffercache
  - pg_stat_statements
  - pgstattuple

The "auto_explain" module provides a means for logging execution
plans of slow statements automatically, without having to run
EXPLAIN(7) by hand. This is especially helpful for tracking down
un-optimized queries in large applications.

The "pg_buffercache" module provides a means for examining what's
happening in the shared buffer cache in real time.

The "pg_stat_statements" module provides a means for tracking
execution statistics of all SQL statements executed by a server.

The "pgstattuple" module provides various functions to obtain
tuple-level statistics.