-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy path940-pgbouncer_pool.yml
234 lines (223 loc) · 7.91 KB
/
940-pgbouncer_pool.yml
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
##
# SYNOPSIS
# pgbouncer_pool.pgbouncer_pool_108_115_*
#
# DESCRIPTION
# Pgbouncer pool stats (1.08-1.15)
#
# OPTIONS
# Tags [pgbouncer]
# TTL 10
# Priority 0
# Timeout 100ms
# Fatal false
# Version 10800 ~ 11600
# Source 940-pgbouncer_pool.yml
#
# METRICS
# database (LABEL)
# Database name of this pool
# user (LABEL)
# User name of this pool
# cl_active (GAUGE)
# Client connections that are linked to server connection and can process queries
# cl_waiting (GAUGE)
# Client connections that have sent queries but have not yet got a server connection
# sv_active (GAUGE)
# Server connections that are linked to a client
# sv_idle (GAUGE)
# Server connections that are unused and immediately usable for client queries
# sv_used (GAUGE)
# Server connections that have been idle for more than server_check_delay (means have to run check query)
# sv_tested (GAUGE)
# Server connections that are currently running reset or check query
# sv_login (GAUGE)
# Server connections currently in the process of logging in
# maxwait (GAUGE)
# How long the first(oldest) client in the queue has waited, in seconds, key metric
# maxwait_us (GAUGE)
# Microsecond part of the maximum waiting time.
# pool_mode (LABEL)
# Pooling mode in use
#
pgbouncer_pool_118:
name: pgbouncer_pool
desc: Pgbouncer pool stats (1.16+) # http://www.pgbouncer.org/usage.html#show-pools
query: SHOW POOLS;
ttl: 10
min_version: 11800
tags:
- pgbouncer
metrics:
- database:
usage: LABEL
rename: datname
description: Database name of this pool
- user:
usage: LABEL
description: User name of this pool
- cl_active:
usage: GAUGE
rename: active_clients
description: Client connections that are linked to server connection and can process queries
- cl_waiting:
usage: GAUGE
rename: waiting_clients
description: Client connections that have sent queries but have not yet got a server connection
- cl_active_cancel_req:
usage: GAUGE
rename: active_cancel_clients
description: Client connections that have forwarded query cancellations to the server and are waiting for the server response.
- cl_waiting_cancel_req:
usage: GAUGE
rename: cancel_clients
description: Client connections that have not forwarded query cancellations to the server yet.
- sv_active:
usage: GAUGE
rename: active_servers
description: Server connections that are linked to a client
- sv_active_cancel:
usage: GAUGE
rename: active_cancel_servers
description: Server connections that are currently forwarding a cancel request
- sv_being_canceled:
usage: GAUGE
rename: cancel_servers
description: cancel requests have completed that were sent to cancel a query on this server
- sv_idle:
usage: GAUGE
rename: idle_servers
description: Server connections that are unused and immediately usable for client queries
- sv_used:
usage: GAUGE
rename: used_servers
description: Server connections that have been idle for more than server_check_delay (means have to run check query)
- sv_tested:
usage: GAUGE
rename: tested_servers
description: Server connections that are currently running reset or check query
- sv_login:
usage: GAUGE
rename: login_servers
description: Server connections currently in the process of logging in
- maxwait:
usage: GAUGE
description: How long the first(oldest) client in the queue has waited, in seconds, key metric
- maxwait_us:
usage: GAUGE
description: Microsecond part of the maximum waiting time.
- pool_mode:
usage: LABEL
description: Pooling mode in use
pgbouncer_pool_116_118:
name: pgbouncer_pool
desc: Pgbouncer pool stats (1.16+) # http://www.pgbouncer.org/usage.html#show-pools
query: SHOW POOLS;
ttl: 10
min_version: 11600
max_version: 11800
tags:
- pgbouncer
metrics:
- database:
usage: LABEL
rename: datname
description: Database name of this pool
- user:
usage: LABEL
description: User name of this pool
- cl_active:
usage: GAUGE
rename: active_clients
description: Client connections that are linked to server connection and can process queries
- cl_waiting:
usage: GAUGE
rename: waiting_clients
description: Client connections that have sent queries but have not yet got a server connection
- cl_cancel_req:
usage: GAUGE
rename: cancel_clients
description: Client connections that have not forwarded query cancellations to the server yet.
- sv_active:
usage: GAUGE
rename: active_servers
description: Server connections that are linked to a client
- sv_idle:
usage: GAUGE
rename: idle_servers
description: Server connections that are unused and immediately usable for client queries
- sv_used:
usage: GAUGE
rename: used_servers
description: Server connections that have been idle for more than server_check_delay (means have to run check query)
- sv_tested:
usage: GAUGE
rename: tested_servers
description: Server connections that are currently running reset or check query
- sv_login:
usage: GAUGE
rename: login_servers
description: Server connections currently in the process of logging in
- maxwait:
usage: GAUGE
description: How long the first(oldest) client in the queue has waited, in seconds, key metric
- maxwait_us:
usage: GAUGE
description: Microsecond part of the maximum waiting time.
- pool_mode:
usage: LABEL
description: Pooling mode in use
pgbouncer_pool_108_115:
name: pgbouncer_pool
desc: Pgbouncer pool stats (1.08-1.15) # http://www.pgbouncer.org/usage.html#show-pools
query: SHOW POOLS;
ttl: 10
min_version: 10800
max_version: 11600
tags:
- pgbouncer
metrics:
- database:
usage: LABEL
rename: datname
description: Database name of this pool
- user:
usage: LABEL
description: User name of this pool
- cl_active:
usage: GAUGE
rename: active_clients
description: Client connections that are linked to server connection and can process queries
- cl_waiting:
usage: GAUGE
rename: waiting_clients
description: Client connections that have sent queries but have not yet got a server connection
- sv_active:
usage: GAUGE
rename: active_servers
description: Server connections that are linked to a client
- sv_idle:
usage: GAUGE
rename: idle_servers
description: Server connections that are unused and immediately usable for client queries
- sv_used:
usage: GAUGE
rename: used_servers
description: Server connections that have been idle for more than server_check_delay (means have to run check query)
- sv_tested:
usage: GAUGE
rename: tested_servers
description: Server connections that are currently running reset or check query
- sv_login:
usage: GAUGE
rename: login_servers
description: Server connections currently in the process of logging in
- maxwait:
usage: GAUGE
description: How long the first(oldest) client in the queue has waited, in seconds, key metric
- maxwait_us:
usage: GAUGE
description: Microsecond part of the maximum waiting time.
- pool_mode:
usage: LABEL
description: Pooling mode in use