mirror of https://github.com/citusdata/citus.git
Update stat_tenants_limit
parent
5c47c97bef
commit
ca16f616dd
|
@ -2379,7 +2379,7 @@ RegisterCitusConfigVariables(void)
|
||||||
gettext_noop("Number of tenants to be shown in citus_stat_tenants."),
|
gettext_noop("Number of tenants to be shown in citus_stat_tenants."),
|
||||||
NULL,
|
NULL,
|
||||||
&StatTenantsLimit,
|
&StatTenantsLimit,
|
||||||
10, 1, 100,
|
100, 1, 10000,
|
||||||
PGC_POSTMASTER,
|
PGC_POSTMASTER,
|
||||||
GUC_STANDARD,
|
GUC_STANDARD,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
|
@ -70,7 +70,7 @@ static char * UnescapeCommentChars(const char *str);
|
||||||
|
|
||||||
int StatTenantsLogLevel = CITUS_LOG_LEVEL_OFF;
|
int StatTenantsLogLevel = CITUS_LOG_LEVEL_OFF;
|
||||||
int StatTenantsPeriod = (time_t) 60;
|
int StatTenantsPeriod = (time_t) 60;
|
||||||
int StatTenantsLimit = 10;
|
int StatTenantsLimit = 100;
|
||||||
int StatTenantsTrack = STAT_TENANTS_TRACK_NONE;
|
int StatTenantsTrack = STAT_TENANTS_TRACK_NONE;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue