File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ The PostgreSQL 14 image is now missing the following extensions (they will be ad
93
93
| pg_repack | 1.4.5 | Reorganize tables in PostgreSQL databases with minimal locks |
94
94
| pg_show_plans | 1.0 | show query plans of all currently running SQL statements |
95
95
| pg_stat_kcache | 2.1.3 | Kernel statistics gathering |
96
+ | pg_wait_sampling | 1.1.3 | sampling based statistics of wait events |
96
97
| pg_stat_statements | 1.6 | track execution statistics of all SQL statements executed |
97
98
| pg_trgm | 1.4 | text similarity measurement and index searching based on trigrams |
98
99
| pg_visibility | 1.2 | examine the visibility map (VM) and page-level visibility info |
Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/partial \
85
85
&& pgxn install ddlx && pgxn install postgresql_anonymizer \
86
86
# pg_stat_kcache extension
87
87
&& 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 \
88
90
# add pg_qualstats extension
89
91
&& apt-get install postgresql-${PG_SERVER_VERSION}-pg-qualstats \
90
92
&& if [ $(echo "$PG_SERVER_VERSION < 12" | /usr/bin/bc) = "1" ]; then \
You can’t perform that action at this time.
0 commit comments