You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package/config/upstream/cnpg-1.23.3.yaml
+71-8Lines changed: 71 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14961,11 +14961,12 @@ spec:
14961
14961
method:
14962
14962
default: barmanObjectStore
14963
14963
description: |-
14964
-
The backup method to be used, possible options are `barmanObjectStore`
14965
-
and `volumeSnapshot`. Defaults to: `barmanObjectStore`.
14964
+
The backup method to be used, possible options are `barmanObjectStore`,
14965
+
`volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`.
14966
14966
enum:
14967
14967
- barmanObjectStore
14968
14968
- volumeSnapshot
14969
+
- plugin
14969
14970
type: string
14970
14971
online:
14971
14972
description: |-
@@ -15205,18 +15206,14 @@ rules:
15205
15206
- mutatingwebhookconfigurations
15206
15207
verbs:
15207
15208
- get
15208
-
- list
15209
15209
- patch
15210
-
- update
15211
15210
- apiGroups:
15212
15211
- admissionregistration.k8s.io
15213
15212
resources:
15214
15213
- validatingwebhookconfigurations
15215
15214
verbs:
15216
15215
- get
15217
-
- list
15218
15216
- patch
15219
-
- update
15220
15217
- apiGroups:
15221
15218
- apiextensions.k8s.io
15222
15219
resources:
@@ -15514,6 +15511,7 @@ data:
15514
15511
, pg_catalog.age(datfrozenxid) AS xid_age
15515
15512
, pg_catalog.mxid_age(datminmxid) AS mxid_age
15516
15513
FROM pg_catalog.pg_database
15514
+
WHERE datallowconn
15517
15515
metrics:
15518
15516
- datname:
15519
15517
usage: "LABEL"
@@ -15678,6 +15676,71 @@ data:
15678
15676
usage: "COUNTER"
15679
15677
description: "Number of buffers allocated"
15680
15678
15679
+
pg_stat_bgwriter_17:
15680
+
runonserver: ">=17.0.0"
15681
+
name: pg_stat_bgwriter
15682
+
query: |
15683
+
SELECT buffers_clean
15684
+
, maxwritten_clean
15685
+
, buffers_alloc
15686
+
, EXTRACT(EPOCH FROM stats_reset) AS stats_reset_time
15687
+
FROM pg_catalog.pg_stat_bgwriter
15688
+
metrics:
15689
+
- buffers_clean:
15690
+
usage: "COUNTER"
15691
+
description: "Number of buffers written by the background writer"
15692
+
- maxwritten_clean:
15693
+
usage: "COUNTER"
15694
+
description: "Number of times the background writer stopped a cleaning scan because it had written too many buffers"
15695
+
- buffers_alloc:
15696
+
usage: "COUNTER"
15697
+
description: "Number of buffers allocated"
15698
+
- stats_reset_time:
15699
+
usage: "GAUGE"
15700
+
description: "Time at which these statistics were last reset"
15701
+
15702
+
pg_stat_checkpointer:
15703
+
runonserver: ">=17.0.0"
15704
+
query: |
15705
+
SELECT num_timed AS checkpoints_timed
15706
+
, num_requested AS checkpoints_req
15707
+
, restartpoints_timed
15708
+
, restartpoints_req
15709
+
, restartpoints_done
15710
+
, write_time
15711
+
, sync_time
15712
+
, buffers_written
15713
+
, EXTRACT(EPOCH FROM stats_reset) AS stats_reset_time
15714
+
FROM pg_catalog.pg_stat_checkpointer
15715
+
metrics:
15716
+
- checkpoints_timed:
15717
+
usage: "COUNTER"
15718
+
description: "Number of scheduled checkpoints that have been performed"
15719
+
- checkpoints_req:
15720
+
usage: "COUNTER"
15721
+
description: "Number of requested checkpoints that have been performed"
15722
+
- restartpoints_timed:
15723
+
usage: "COUNTER"
15724
+
description: "Number of scheduled restartpoints due to timeout or after a failed attempt to perform it"
15725
+
- restartpoints_req:
15726
+
usage: "COUNTER"
15727
+
description: "Number of requested restartpoints that have been performed"
15728
+
- restartpoints_done:
15729
+
usage: "COUNTER"
15730
+
description: "Number of restartpoints that have been performed"
15731
+
- write_time:
15732
+
usage: "COUNTER"
15733
+
description: "Total amount of time that has been spent in the portion of processing checkpoints and restartpoints where files are written to disk, in milliseconds"
15734
+
- sync_time:
15735
+
usage: "COUNTER"
15736
+
description: "Total amount of time that has been spent in the portion of processing checkpoints and restartpoints where files are synchronized to disk, in milliseconds"
15737
+
- buffers_written:
15738
+
usage: "COUNTER"
15739
+
description: "Number of buffers written during checkpoints and restartpoints"
15740
+
- stats_reset_time:
15741
+
usage: "GAUGE"
15742
+
description: "Time at which these statistics were last reset"
0 commit comments