mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 05:56:21 +00:00
PG-562: Histogram Ranges/Buckets are not correct.
Replaced the error on server start with a warning. The functionality now handles "pgsm_histogram_buckets" as the maximum number of histogram buckets to be created. On init, pg_stat_monitor calculates the max number of buckets that can be created within the given min/max time range. If the number is below the user configuration, it emits a warning in the log file stating the number of max buckets set.
This commit is contained in:
committed by
Muhammad Usama
parent
209f370cef
commit
1662e9efa1
@@ -485,15 +485,7 @@ static const struct config_enum_entry track_options[] =
|
||||
#define PGSM_BUCKET_TIME get_conf(5)->guc_variable
|
||||
#define PGSM_HISTOGRAM_MIN get_conf(6)->guc_variable
|
||||
#define PGSM_HISTOGRAM_MAX get_conf(7)->guc_variable
|
||||
|
||||
/*
|
||||
* Important that we keep user bucket values separate but must add 1
|
||||
* for max outlier queries. However, for min, bucket should only be added
|
||||
* if the minimum value provided by user is greater than 0
|
||||
*/
|
||||
#define PGSM_HISTOGRAM_BUCKETS_USER get_conf(8)->guc_variable
|
||||
#define PGSM_HISTOGRAM_BUCKETS (PGSM_HISTOGRAM_BUCKETS_USER + 1 + (int)(PGSM_HISTOGRAM_MIN > 0))
|
||||
|
||||
#define PGSM_QUERY_SHARED_BUFFER get_conf(9)->guc_variable
|
||||
#define PGSM_OVERFLOW_TARGET get_conf(10)->guc_variable
|
||||
#define PGSM_QUERY_PLAN get_conf(11)->guc_variable
|
||||
|
||||
Reference in New Issue
Block a user