Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ data:
{{- if .Values.queryParserEngine }}
query_parser_engine = {{ .Values.queryParserEngine | quote }}
{{- end }}
{{- if .Values.logMinDurationParse }}
log_min_duration_parse = {{ include "pgdog.intval" .Values.logMinDurationParse }}
{{- end }}
{{- if .Values.logQuerySampleLength }}
log_query_sample_length = {{ include "pgdog.intval" .Values.logQuerySampleLength }}
{{- end }}
{{- if .Values.regexParserLimit }}
regex_parser_limit = {{ include "pgdog.intval" .Values.regexParserLimit }}
{{- end }}
Expand Down
2 changes: 2 additions & 0 deletions test/values-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ env:
value: trace
queryParserEngine: "pg_query_raw"
regexParserLimit: 1000
logMinDurationParse: 100
logQuerySampleLength: 1000

# Sharding settings
twoPhaseCommit: true
Expand Down
8 changes: 8 additions & 0 deletions values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1168,6 +1168,14 @@
"type": "object",
"description": "Container readiness probe configuration"
},
"logMinDurationParse": {
"type": "integer",
"minimum": 0
},
"logQuerySampleLength": {
"type": "integer",
"minimum": 0
},
"regexParserLimit": {
"type": "integer",
"minimum": 0
Expand Down
Loading