Cannot get log_min_duration_statement to work

前端 未结 2 1071
死守一世寂寞
死守一世寂寞 2021-02-06 06:54

I have been googling for more than 2 hours, but I am really stuck with this one.
I want PostgreSQL (I am using version 8.4 on Debian) to start logging slow queries only.

2条回答
  •  说谎
    说谎 (楼主)
    2021-02-06 07:13

    Should be:

    log_destination = 'csvlog'
    logging_collector = on
    log_min_duration_statement = 1000
    log_line_prefix = '%t %p %r %d %u '### more context
    log_statement = 'ddl' ### log schema changes 
    

提交回复
热议问题