postgresql.conf
...
#log_min_duration_statement = -1
…
の箇所を
postgresql.conf
...
log_min_duration_statement = 0
...
に変更し、postgres再起動すると全てのSQLがserverlogにSQLが出力される。
postgresql.conf
...
log_min_duration_statement = 3s
...
で3秒以上かかったSQLのみ出力。
Go to list of users who liked
More than 5 years have passed since last update.
...
#log_min_duration_statement = -1
…
の箇所を
...
log_min_duration_statement = 0
...
に変更し、postgres再起動すると全てのSQLがserverlogにSQLが出力される。
...
log_min_duration_statement = 3s
...
で3秒以上かかったSQLのみ出力。
Register as a new user and use Qiita more conveniently
Go to list of users who liked