Improve PostgreSQL plugin documentation (#2777)

This commit is contained in:
Adrian Sadłocha 2017-05-09 21:58:43 +02:00 committed by Daniel Nelson
parent 4133765208
commit b1b0efa546
1 changed files with 3 additions and 3 deletions

View File

@ -130,9 +130,9 @@ create extension pg_proctab;
- pg_stat_kcache is available on the postgresql.org yum repo
- pg_proctab is available at : https://github.com/markwkm/pg_proctab
##Views
## Views
- Blocking sessions
```
```sql
CREATE OR REPLACE VIEW public.blocking_procs AS
SELECT a.datname AS db,
kl.pid AS blocking_pid,
@ -156,7 +156,7 @@ CREATE OR REPLACE VIEW public.blocking_procs AS
ORDER BY a.query_start;
```
- Sessions Statistics
```
```sql
CREATE OR REPLACE VIEW public.sessions AS
WITH proctab AS (
SELECT pg_proctab.pid,