ce6a61df1c
* Add new acquisition interface + new modules (cloudwatch, syslog) Co-authored-by: Sebastien Blot <sebastien@crowdsec.net>
12 lines
301 B
Go
12 lines
301 B
Go
package types
|
|
|
|
import "time"
|
|
|
|
type Line struct {
|
|
Raw string `yaml:"Raw,omitempty"`
|
|
Src string `yaml:"Src,omitempty"`
|
|
Time time.Time //acquis time
|
|
Labels map[string]string `yaml:"Labels,omitempty"`
|
|
Process bool
|
|
Module string `yaml:"Module,omitempty"`
|
|
}
|