#This is example configuration file for pgavdrc
#As usual, coments are marked with '#'
#The configuration is in terms of key value pair.
#There can be a global configuration or a per database configuration.
#Following are some of the parameters you can specify. Most of the parameters are
#self explainatory
#username =
#password
#insertthreshold
#updatethreshold
#deletethreshold
#interval
#unit
#
#Out of these, only unit is global-only parameter. If a setting is specified as global,
#each database will inherit it as default.
#
#Unit is time slice in seconds on which pgavd works. Interval is number of units that
#must elapse before pgavd checks for statistics.
#
#Following is an example config
#
#Global settings
#When operation on one table crosses this threshold, vacuum is triggered.
#insertthreshold = 1000
#updatethreshold = 1000
#deletethreshold = 1000
#Check stats every 5 seconds
#unit = 5
#
#database test
#username = user
#password = password
#insertthreshold = 2000
#updatethreshold = 2000
#deletethreshold = 2000
#interval =10
#end
#
#Here pgavd will check for statistics at each 50 sec.
#
#There can be multiple databases in one configuration file. Thus making it easy to administer
#an entire site with one process.
#the defaults are as follows
#insertthreshold=updatethreshold=deletethreshold=1000
#unit=interval=1

