|
| 1 | +CREATE EXTENSION pg_wait_sampling; |
| 2 | +\d pg_wait_sampling_current |
| 3 | +View "public.pg_wait_sampling_current" |
| 4 | + Column | Type | Modifiers |
| 5 | +------------+---------+----------- |
| 6 | + pid | integer | |
| 7 | + event_type | text | |
| 8 | + event | text | |
| 9 | + |
| 10 | +\d pg_wait_sampling_history |
| 11 | + View "public.pg_wait_sampling_history" |
| 12 | + Column | Type | Modifiers |
| 13 | +------------+--------------------------+----------- |
| 14 | + pid | integer | |
| 15 | + ts | timestamp with time zone | |
| 16 | + event_type | text | |
| 17 | + event | text | |
| 18 | + |
| 19 | +DROP EXTENSION pg_wait_sampling; |