File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed
Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22name : pgdog
3- version : v0.36
3+ version : v0.37
44appVersion : " 0.1.25"
Original file line number Diff line number Diff line change @@ -242,9 +242,10 @@ data:
242242 {{- if .Values.queryStats.enabled }}
243243 [query_stats]
244244 enabled = {{ .Values.queryStats.enabled }}
245- query_plan_threshold = {{ .Values.queryStats.queryPlanThreshold | default "1_000 " }}
246- query_plan_max_age = {{ .Values.queryStats.queryPlanMaxAge | default "15_000 " }}
245+ max_entries = {{ .Values.queryStats.maxEntries | default "10_000 " }}
246+ query_plan_threshold = {{ .Values.queryStats.queryPlanThreshold | default "250 " }}
247247 query_plans_cache = {{ .Values.queryStats.queryPlansCache | default "100" }}
248+ query_plan_max_age = {{ .Values.queryStats.queryPlanMaxAge | default "15_000" }}
248249 max_errors = {{ .Values.queryStats.maxErrors | default "100" }}
249250 max_error_age = {{ .Values.queryStats.maxErrorAge | default "300_000" }}
250251 {{- end }}
Original file line number Diff line number Diff line change 1+ # Test query stats configuration
2+ queryStats :
3+ enabled : true
4+ maxEntries : 50000
5+ queryPlanThreshold : 500
6+ queryPlansCache : 200
7+ queryPlanMaxAge : 30000
8+ maxErrors : 250
9+ maxErrorAge : 600000
10+
11+ databases :
12+ - name : primary
13+ host : postgres.example.com
14+ port : 5432
You can’t perform that action at this time.
0 commit comments