multi-tenant-monitoring-pgbench
Halil Ozan Akgul 2023-04-04 17:53:43 +03:00
parent ca16f616dd
commit 6fb2387d29
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ int StatStatementsPurgeInterval = 10;
int StatStatementsMax = 50000;
/* tracking all or none, for citus_stat_statements, controlled by GUC citus.stat_statements_track */
int StatStatementsTrack = STAT_STATEMENTS_TRACK_NONE;
int StatStatementsTrack = STAT_STATEMENTS_TRACK_ALL;
/*
* Hashtable key that defines the identity of a hashtable entry. We use the

View File

@ -2368,7 +2368,7 @@ RegisterCitusConfigVariables(void)
"Disables when set to 'none'. Disabling can be useful for "
"avoiding extra CPU cycles needed for the calculations."),
&StatStatementsTrack,
STAT_STATEMENTS_TRACK_NONE,
STAT_STATEMENTS_TRACK_ALL,
stat_statements_track_options,
PGC_SUSET,
GUC_STANDARD,