Skip to content

Commit 64d4772

Browse files
committed
add pg_wait_sampling extension
1 parent c18290d commit 64d4772

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ The PostgreSQL 14 image is now missing the following extensions (they will be ad
9393
| pg_repack | 1.4.5 | Reorganize tables in PostgreSQL databases with minimal locks |
9494
| pg_show_plans | 1.0 | show query plans of all currently running SQL statements |
9595
| pg_stat_kcache | 2.1.3 | Kernel statistics gathering |
96+
| pg_wait_sampling | 1.1.3 | sampling based statistics of wait events |
9697
| pg_stat_statements | 1.6 | track execution statistics of all SQL statements executed |
9798
| pg_trgm | 1.4 | text similarity measurement and index searching based on trigrams |
9899
| pg_visibility | 1.2 | examine the visibility map (VM) and page-level visibility info |

extended-postgres/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/partial \
8585
&& pgxn install ddlx && pgxn install postgresql_anonymizer \
8686
# pg_stat_kcache extension
8787
&& apt-get install postgresql-${PG_SERVER_VERSION}-pg-stat-kcache \
88+
# pg_wait_sampling extension
89+
&& apt-get install postgresql-${PG_SERVER_VERSION}-pg-wait-sampling \
8890
# add pg_qualstats extension
8991
&& apt-get install postgresql-${PG_SERVER_VERSION}-pg-qualstats \
9092
&& if [ $(echo "$PG_SERVER_VERSION < 12" | /usr/bin/bc) = "1" ]; then \

0 commit comments

Comments
 (0)