Add check for enable worker process so it is properly set.

Signed-off-by: matt durham <mattdurham@ppog.org>
This commit is contained in:
matt durham 2023-11-27 12:11:01 -05:00
parent 470f5d5852
commit 9bed4826d6
No known key found for this signature in database
GPG Key ID: A62E920AE398897B

View File

@ -25,13 +25,15 @@ const (
) )
type Config struct { type Config struct {
ProcessInclude string `yaml:"process_include"` ProcessInclude string `yaml:"process_include"`
ProcessExclude string `yaml:"process_exclude"` ProcessExclude string `yaml:"process_exclude"`
EnableWorkerProcess bool `yaml:"enable_iis_worker_process"`
} }
var ConfigDefaults = Config{ var ConfigDefaults = Config{
ProcessInclude: ".+", ProcessInclude: ".+",
ProcessExclude: "", ProcessExclude: "",
EnableWorkerProcess: false,
} }
type collector struct { type collector struct {
@ -68,8 +70,9 @@ func New(logger log.Logger, config *Config) types.Collector {
} }
c := &collector{ c := &collector{
processExclude: &config.ProcessExclude, processExclude: &config.ProcessExclude,
processInclude: &config.ProcessInclude, processInclude: &config.ProcessInclude,
enableWorkerProcess: &config.EnableWorkerProcess,
} }
c.SetLogger(logger) c.SetLogger(logger)
return c return c