mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 14:58:08 +02:00
18 lines
326 B
Go
18 lines
326 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/elastic/beats/auditbeat/cmd"
|
|
|
|
_ "github.com/elastic/beats/auditbeat/module/audit"
|
|
_ "github.com/elastic/beats/auditbeat/module/audit/file"
|
|
_ "github.com/elastic/beats/auditbeat/module/audit/kernel"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.RootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|