web-dev-qa-db-ja.com

postgres auto_explain:log_min_durationの設定が開始されない

postgres 8.4.20

これらの設定で、デーモンが起動します。

postgresql.conf

shared_preload_libraries = 'auto_explain'

これらの設定では、デーモンは起動しません:

postgresql.conf

shared_preload_libraries = 'auto_explain'

auto_explain.log_min_duration = 1000

レガシーアプリケーションを搭載したサーバーであるため、PGをアップグレードすることはできません。この動作/バグのドキュメントが見つかりません...

1
Massimo

私もこの設定を入れて解決しました:

custom_variable_classes = 'auto_explain'

0
Massimo