This commit is contained in:
AlteredCoder 2020-05-22 17:46:22 +02:00
parent 019c8d3e18
commit ec7aaac9d0

View file

@ -10,7 +10,7 @@ import (
"time" "time"
"github.com/crowdsecurity/crowdsec/pkg/acquisition" "github.com/crowdsecurity/crowdsec/pkg/acquisition"
config "github.com/crowdsecurity/crowdsec/pkg/csconfig" "github.com/crowdsecurity/crowdsec/pkg/csconfig"
"github.com/crowdsecurity/crowdsec/pkg/cwversion" "github.com/crowdsecurity/crowdsec/pkg/cwversion"
leaky "github.com/crowdsecurity/crowdsec/pkg/leakybucket" leaky "github.com/crowdsecurity/crowdsec/pkg/leakybucket"
"github.com/crowdsecurity/crowdsec/pkg/outputs" "github.com/crowdsecurity/crowdsec/pkg/outputs"
@ -33,7 +33,7 @@ var (
holders []leaky.BucketFactory holders []leaky.BucketFactory
buckets *leaky.Buckets buckets *leaky.Buckets
cConfig *config.Crowdwatch cConfig *csconfig.CrowdSec
/*settings*/ /*settings*/
lastProcessedItem time.Time /*keep track of last item timestamp in time-machine. it is used to GC buckets when we dump them.*/ lastProcessedItem time.Time /*keep track of last item timestamp in time-machine. it is used to GC buckets when we dump them.*/
@ -85,7 +85,7 @@ func main() {
inputLineChan := make(chan types.Event) inputLineChan := make(chan types.Event)
inputEventChan := make(chan types.Event) inputEventChan := make(chan types.Event)
cConfig = config.NewCrowdwatchConfig() cConfig = csconfig.NewCrowdSecConfig()
// Handle command line arguments // Handle command line arguments
if err := cConfig.GetOPT(); err != nil { if err := cConfig.GetOPT(); err != nil {