doc: List compute_query_id in required config for pg_stat_statements

Not enabling compute_query_id would disable pg_stat_statements even if
the module is listed in shared_preload_libraries, so add it to the
minimum configuration set as listed in its documentation.

Author: Greg Nancarrow
Reviewed-by: Julien Rouhaud, Bharath Rupireddy
Discussion: https://postgr.es/m/CAJcOf-fXyb2QiDbwftD813UF70w-+BsK-03bFp1GrijXU9GQYQ@mail.gmail.com
This commit is contained in:
Michael Paquier 2021-04-21 12:02:41 +09:00
parent 22b2dec31b
commit 64087eb5de
1 changed files with 1 additions and 0 deletions

View File

@ -740,6 +740,7 @@
# postgresql.conf
shared_preload_libraries = 'pg_stat_statements'
compute_query_id = on
pg_stat_statements.max = 10000
pg_stat_statements.track = all
</programlisting>