1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
*** src/sample/pgpool.conf.sample 2022-02-10 12:49:15.079700949 +0900
--- pgpool.conf.sample 2022-02-22 11:05:17.073517397 +0900
***************
*** 186,192 ****
# - Where to log -
! #log_destination = 'stderr'
# Where to log
# Valid values are combinations of stderr,
# and syslog. Default to stderr.
--- 186,192 ----
# - Where to log -
! log_destination = 'stderr'
# Where to log
# Valid values are combinations of stderr,
# and syslog. Default to stderr.
***************
*** 252,268 ****
# panic
# This is used when logging to stderr:
! #logging_collector = off
# Enable capturing of stderr
# into log files.
# (change requires restart)
# -- Only used if logging_collector is on ---
! #log_directory = '/tmp/pgpool_logs'
# directory where log files are written,
# can be absolute
! #log_filename = 'pgpool-%Y-%m-%d_%H%M%S.log'
# log file name pattern,
# can include strftime() escapes
--- 252,268 ----
# panic
# This is used when logging to stderr:
! logging_collector = on
# Enable capturing of stderr
# into log files.
# (change requires restart)
# -- Only used if logging_collector is on ---
! log_directory = '/var/log/pgpool_log'
# directory where log files are written,
# can be absolute
! log_filename = 'pgpool-%a.log'
# log file name pattern,
# can include strftime() escapes
***************
*** 270,276 ****
# creation mode for log files,
# begin with 0 to use octal notation
! #log_truncate_on_rotation = off
# If on, an existing log file with the
# same name as the new log file will be
# truncated rather than appended to.
--- 270,276 ----
# creation mode for log files,
# begin with 0 to use octal notation
! log_truncate_on_rotation = on
# If on, an existing log file with the
# same name as the new log file will be
# truncated rather than appended to.
***************
*** 280,290 ****
# off, meaning append to existing files
# in all cases.
! #log_rotation_age = 1d
# Automatic rotation of logfiles will
# happen after that (minutes)time.
# 0 disables time based rotation.
! #log_rotation_size = 10MB
# Automatic rotation of logfiles will
# happen after that much (KB) log output.
# 0 disables size based rotation.
--- 280,290 ----
# off, meaning append to existing files
# in all cases.
! log_rotation_age = 1d
# Automatic rotation of logfiles will
# happen after that (minutes)time.
# 0 disables time based rotation.
! log_rotation_size = 0
# Automatic rotation of logfiles will
# happen after that much (KB) log output.
# 0 disables size based rotation.
|