diff --git a/integration_test/guided-setup.postgres.expected b/integration_test/guided-setup.postgres.expected index b692547ea..aaccc344b 100644 --- a/integration_test/guided-setup.postgres.expected +++ b/integration_test/guided-setup.postgres.expected @@ -15,7 +15,7 @@ auto_explain.log_format | json auto_explain.log_min_duration | 1000 auto_explain.log_nested_statements | on - auto_explain.log_timing | off + auto_explain.log_timing | on auto_explain.log_triggers | on auto_explain.log_verbose | on log_duration | off diff --git a/setup/state/state.go b/setup/state/state.go index c55930215..c4a0e3f4c 100644 --- a/setup/state/state.go +++ b/setup/state/state.go @@ -47,7 +47,7 @@ func init() { AutoExplainLogAnalyze: null.StringFrom("on"), AutoExplainLogBuffers: null.StringFrom("on"), - AutoExplainLogTiming: null.StringFrom("off"), + AutoExplainLogTiming: null.StringFrom("on"), AutoExplainLogTriggers: null.StringFrom("on"), AutoExplainLogVerbose: null.StringFrom("on"), AutoExplainLogFormat: null.StringFrom("json"),