2017-10-17 10:19:42 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/icinga/icingabeat/beater"
|
2017-12-20 09:27:16 +01:00
|
|
|
|
|
|
|
cmd "github.com/elastic/beats/libbeat/cmd"
|
2019-08-15 14:10:49 +02:00
|
|
|
"github.com/elastic/beats/libbeat/cmd/instance"
|
2017-10-17 10:19:42 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Name of this beat
|
|
|
|
var Name = "icingabeat"
|
|
|
|
|
|
|
|
// RootCmd to handle beats cli
|
2019-08-15 14:26:08 +02:00
|
|
|
var RootCmd = cmd.GenRootCmdWithSettings(beater.New, instance.Settings{Name: Name})
|