Exemplo n.º 1
0
func (self *Config) Default() {
	config.PerformDefault(self)
	self.EngineConf.Default()
	for _, mp := range self.Mappings {
		mp.Default()
	}
}
Exemplo n.º 2
0
//Sets any invalid fields to their default value
func (self *LogConf) Default() {
	config.PerformDefault(self)
}
Exemplo n.º 3
0
//Sets any invalid fields to their default value
func (self *RiemannConf) Default() {
	config.PerformDefault(self)
}
Exemplo n.º 4
0
func (self *SigmaConf) Default() {
	config.PerformDefault(self)
}
Exemplo n.º 5
0
func (self *KSTestConf) Default() {
	config.PerformDefault(self)
}
Exemplo n.º 6
0
func (self *InfluxDBConf) Default() {
	config.PerformDefault(self)
}
Exemplo n.º 7
0
func (self *JSDivConf) Default() {
	config.PerformDefault(self)
}
Exemplo n.º 8
0
func (self *MappingConf) Default() {
	config.PerformDefault(self)
	self.Detector.Default()
}
Exemplo n.º 9
0
func (self *DetectorConf) Default() {
	config.PerformDefault(self)
	for _, f := range self.Fingerprinters {
		f.Default()
	}
}