在 PostgresQL 上禁用断开连接日志记录
Disable disconnection logging on PostgresSQL
我在日志上看到很多 Postgres 断开连接事件,有什么方法可以禁用这个特定的日志吗?
May 30 10:13:08 my-app app/postgres.456514 [SILVER] [11-1] sql_error_code = 00000 time_ms = "2022-05-30 10:13:07.600 UTC" pid="1235859" proc_start_time="2022-05-30 10:13:07 UTC" session_id="629398b4.12db93" vtid="" tid="0" log_line="3" database="XXX" connection_source="34.220.26.230(57398)" user="XXX" application_name="my-app-web.2" LOG: disconnection: session time: 0:00:00.051 user=XXXX database=XXX host=34.220.26.230 port=57398
参数为:log_disconnections (boolean)
导致记录会话终止。日志输出提供类似于 log_connections 的信息以及会话持续时间。只有超级用户可以在会话开始时更改此参数,并且在会话中根本无法更改。默认关闭。
https://www.postgresql.org/docs/current/runtime-config-logging.html
我在日志上看到很多 Postgres 断开连接事件,有什么方法可以禁用这个特定的日志吗?
May 30 10:13:08 my-app app/postgres.456514 [SILVER] [11-1] sql_error_code = 00000 time_ms = "2022-05-30 10:13:07.600 UTC" pid="1235859" proc_start_time="2022-05-30 10:13:07 UTC" session_id="629398b4.12db93" vtid="" tid="0" log_line="3" database="XXX" connection_source="34.220.26.230(57398)" user="XXX" application_name="my-app-web.2" LOG: disconnection: session time: 0:00:00.051 user=XXXX database=XXX host=34.220.26.230 port=57398
参数为:log_disconnections (boolean) 导致记录会话终止。日志输出提供类似于 log_connections 的信息以及会话持续时间。只有超级用户可以在会话开始时更改此参数,并且在会话中根本无法更改。默认关闭。
https://www.postgresql.org/docs/current/runtime-config-logging.html