Update stat_tenants_limit

multi-tenant-monitoring-pgbench
Halil Ozan Akgul 2023-04-04 17:52:36 +03:00
parent 5c47c97bef
commit ca16f616dd
2 changed files with 2 additions and 2 deletions

View File

@ -2379,7 +2379,7 @@ RegisterCitusConfigVariables(void)
gettext_noop("Number of tenants to be shown in citus_stat_tenants."),
NULL,
&StatTenantsLimit,
10, 1, 100,
100, 1, 10000,
PGC_POSTMASTER,
GUC_STANDARD,
NULL, NULL, NULL);

View File

@ -70,7 +70,7 @@ static char * UnescapeCommentChars(const char *str);
int StatTenantsLogLevel = CITUS_LOG_LEVEL_OFF;
int StatTenantsPeriod = (time_t) 60;
int StatTenantsLimit = 10;
int StatTenantsLimit = 100;
int StatTenantsTrack = STAT_TENANTS_TRACK_NONE;