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
description: System-wide settings for the pgaudit extension
438
+
type: object
439
+
properties:
440
+
feature_enabled:
441
+
title: Enable pgaudit extension.
442
+
description: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved.
443
+
type: boolean
444
+
default: false
445
+
log:
446
+
title: Specifies which classes of statements will be logged by session audit logging.
447
+
type: array
448
+
items:
449
+
type: string
450
+
enum:
451
+
- value: all
452
+
- value: ddl
453
+
- value: function
454
+
- value: misc
455
+
- value: misc_set
456
+
- value: read
457
+
- value: role
458
+
- value: write
459
+
log_catalog:
460
+
title: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog.
461
+
type: boolean
462
+
default: true
463
+
log_client:
464
+
title: Specifies whether log messages will be visible to a client process such as psql.
465
+
type: boolean
466
+
default: false
467
+
log_level:
468
+
title: Specifies the log level that will be used for log entries.
469
+
type: string
470
+
default: log
471
+
enum:
472
+
- value: debug1
473
+
- value: debug2
474
+
- value: debug3
475
+
- value: debug4
476
+
- value: debug5
477
+
- value: info
478
+
- value: notice
479
+
- value: warning
480
+
- value: log
481
+
log_max_string_length:
482
+
title: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation.
483
+
type: integer
484
+
default: "-1"
485
+
minimum: -1
486
+
maximum: 102400
487
+
log_nested_statements:
488
+
title: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun.
489
+
type: boolean
490
+
default: true
491
+
log_parameter:
492
+
title: Specifies that audit logging should include the parameters that were passed with the statement.
493
+
type: boolean
494
+
default: false
495
+
log_parameter_max_size:
496
+
title: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>.
497
+
type: integer
498
+
default: "0"
499
+
log_relation:
500
+
title: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement.
501
+
type: boolean
502
+
default: false
503
+
log_rows:
504
+
title: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field.
505
+
type: boolean
506
+
default: false
507
+
log_statement:
508
+
title: Specifies whether logging will include the statement text and parameters (if enabled).
509
+
type: boolean
510
+
default: true
511
+
log_statement_once:
512
+
title: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry.
513
+
type: boolean
514
+
default: false
515
+
role:
516
+
title: Specifies the master role to use for object audit logging.
517
+
type: string
518
+
max_length: 64
519
+
pattern: ^[_A-Za-z0-9][-._A-Za-z0-9]{0,63}$
520
+
user_error: Must consist of alpha-numeric characters, dots, underscores or dashes, may not start with dash or dot, max 64 characters
435
521
pgbouncer:
436
522
title: PGBouncer connection pooling settings
437
523
description: System-wide settings for pgbouncer.
@@ -2584,6 +2670,31 @@ kafka:
2584
2670
minimum: 1
2585
2671
maximum: 2.147483647e+09
2586
2672
example: "10000"
2673
+
kafka_connect_plugin_versions:
2674
+
title: Kafka Connect plugins
2675
+
description: The plugin selected by the user
2676
+
type: array
2677
+
items:
2678
+
title: A Kafka Connect plugin
2679
+
type: object
2680
+
required:
2681
+
- plugin_name
2682
+
- version
2683
+
properties:
2684
+
plugin_name:
2685
+
title: Plugin name
2686
+
description: The name of the plugin
2687
+
type: string
2688
+
max_length: 128
2689
+
pattern: ^[^\r\n]*$
2690
+
example: debezium-connector
2691
+
version:
2692
+
title: Plugin version
2693
+
description: The version of the plugin
2694
+
type: string
2695
+
max_length: 128
2696
+
pattern: ^[^\r\n]*$
2697
+
example: 2.5.0
2587
2698
kafka_connect_secret_providers:
2588
2699
title: Kafka Connect secret providers
2589
2700
description: 'Configure external secret providers in order to reference external secrets in connector configuration. Currently Hashicorp Vault (provider: vault, auth_method: token) and AWS Secrets Manager (provider: aws, auth_method: credentials) are supported. Secrets can be referenced in connector config with ${<provider_name>:<secret_path>:<key_name>}'
@@ -6168,22 +6279,16 @@ pg:
6168
6279
- value: "16"
6169
6280
- value: "17"
6170
6281
pgaudit:
6171
-
is_deprecated: true
6172
-
deprecation_notice: This property is deprecated.
6173
6282
title: PGAudit settings
6174
6283
description: System-wide settings for the pgaudit extension
6175
6284
type: object
6176
6285
properties:
6177
6286
feature_enabled:
6178
-
is_deprecated: true
6179
-
deprecation_notice: This property is deprecated.
6180
6287
title: Enable pgaudit extension.
6181
6288
description: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved.
6182
6289
type: boolean
6183
6290
default: false
6184
6291
log:
6185
-
is_deprecated: true
6186
-
deprecation_notice: This property is deprecated.
6187
6292
title: Specifies which classes of statements will be logged by session audit logging.
6188
6293
type: array
6189
6294
items:
@@ -6198,104 +6303,62 @@ pg:
6198
6303
- value: role
6199
6304
- value: write
6200
6305
log_catalog:
6201
-
is_deprecated: true
6202
-
deprecation_notice: This property is deprecated.
6203
6306
title: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog.
6204
6307
type: boolean
6205
6308
default: true
6206
6309
log_client:
6207
-
is_deprecated: true
6208
-
deprecation_notice: This property is deprecated.
6209
6310
title: Specifies whether log messages will be visible to a client process such as psql.
6210
6311
type: boolean
6211
6312
default: false
6212
6313
log_level:
6213
-
is_deprecated: true
6214
-
deprecation_notice: This property is deprecated.
6215
6314
title: Specifies the log level that will be used for log entries.
6216
6315
type: string
6217
6316
default: log
6218
6317
enum:
6219
-
- is_deprecated: true
6220
-
deprecation_notice: This value is deprecated.
6221
-
value: debug1
6222
-
- is_deprecated: true
6223
-
deprecation_notice: This value is deprecated.
6224
-
value: debug2
6225
-
- is_deprecated: true
6226
-
deprecation_notice: This value is deprecated.
6227
-
value: debug3
6228
-
- is_deprecated: true
6229
-
deprecation_notice: This value is deprecated.
6230
-
value: debug4
6231
-
- is_deprecated: true
6232
-
deprecation_notice: This value is deprecated.
6233
-
value: debug5
6234
-
- is_deprecated: true
6235
-
deprecation_notice: This value is deprecated.
6236
-
value: info
6237
-
- is_deprecated: true
6238
-
deprecation_notice: This value is deprecated.
6239
-
value: notice
6240
-
- is_deprecated: true
6241
-
deprecation_notice: This value is deprecated.
6242
-
value: warning
6243
-
- is_deprecated: true
6244
-
deprecation_notice: This value is deprecated.
6245
-
value: log
6318
+
- value: debug1
6319
+
- value: debug2
6320
+
- value: debug3
6321
+
- value: debug4
6322
+
- value: debug5
6323
+
- value: info
6324
+
- value: log
6325
+
- value: notice
6326
+
- value: warning
6246
6327
log_max_string_length:
6247
-
is_deprecated: true
6248
-
deprecation_notice: This property is deprecated.
6249
6328
title: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation.
6250
6329
type: integer
6251
6330
default: "-1"
6252
6331
minimum: -1
6253
6332
maximum: 102400
6254
6333
log_nested_statements:
6255
-
is_deprecated: true
6256
-
deprecation_notice: This property is deprecated.
6257
6334
title: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun.
6258
6335
type: boolean
6259
6336
default: true
6260
6337
log_parameter:
6261
-
is_deprecated: true
6262
-
deprecation_notice: This property is deprecated.
6263
6338
title: Specifies that audit logging should include the parameters that were passed with the statement.
6264
6339
type: boolean
6265
6340
default: false
6266
6341
log_parameter_max_size:
6267
-
is_deprecated: true
6268
-
deprecation_notice: This property is deprecated.
6269
6342
title: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>.
6270
6343
type: integer
6271
6344
default: "0"
6272
6345
log_relation:
6273
-
is_deprecated: true
6274
-
deprecation_notice: This property is deprecated.
6275
6346
title: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement.
6276
6347
type: boolean
6277
6348
default: false
6278
6349
log_rows:
6279
-
is_deprecated: true
6280
-
deprecation_notice: This property is deprecated.
6281
6350
title: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field.
6282
6351
type: boolean
6283
6352
default: false
6284
6353
log_statement:
6285
-
is_deprecated: true
6286
-
deprecation_notice: This property is deprecated.
6287
6354
title: Specifies whether logging will include the statement text and parameters (if enabled).
6288
6355
type: boolean
6289
6356
default: true
6290
6357
log_statement_once:
6291
-
is_deprecated: true
6292
-
deprecation_notice: This property is deprecated.
6293
6358
title: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry.
6294
6359
type: boolean
6295
6360
default: false
6296
6361
role:
6297
-
is_deprecated: true
6298
-
deprecation_notice: This property is deprecated.
6299
6362
title: Specifies the master role to use for object audit logging.
0 commit comments