icingabeat/cmd/root.go

14 lines
237 B
Go
Raw Normal View History

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"
2017-10-17 10:19:42 +02:00
)
// Name of this beat
var Name = "icingabeat"
// RootCmd to handle beats cli
var RootCmd = cmd.GenRootCmd(Name, "", beater.New)