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
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
name: pgdog
version: v0.66
version: v0.67
appVersion: "0.1.44"
7 changes: 5 additions & 2 deletions templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -391,13 +391,16 @@ data:
{{- if .maxEntries }}
max_entries = {{ include "pgdog.intval" .maxEntries }}
{{- end }}
{{- if .queryPlanThreshold }}
{{- if .queryPlansThreshold }}
query_plans_threshold = {{ include "pgdog.intval" .queryPlansThreshold }}
{{- end }}
{{- if .queryPlansCache }}
query_plans_cache = {{ include "pgdog.intval" .queryPlansCache }}
{{- end }}
{{- if .queryPlanMaxAge }}
{{- if .queryPlansSampleRate }}
query_plans_sample_rate = {{ .queryPlansSampleRate }}
{{- end }}
{{- if .queryPlansMaxAge }}
query_plans_max_age = {{ include "pgdog.intval" .queryPlansMaxAge }}
{{- end }}
{{- if .maxErrors }}
Expand Down
1 change: 1 addition & 0 deletions test/values-query-stats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ queryStats:
queryPlansThreshold: 500
queryPlansCache: 200
queryPlansMaxAge: 30000
queryPlansSampleRate: 0.5
maxErrors: 250
maxErrorAge: 600000
idleInTransactionThreshold: 5000
Expand Down
1 change: 1 addition & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ queryStats:
queryPlansThreshold: 1000
queryPlansMaxAge: 15000
queryPlansCache: 100
queryPlansSampleRate: 1.0
maxErrors: 100
maxErrorAge: 300000
# Control configuration (PgDog EE)
Expand Down
Loading