icingabeat/cmd/root.go

13 lines
236 B
Go
Raw Normal View History

2017-10-17 10:19:42 +02:00
package cmd
import (
cmd "github.com/elastic/beats/libbeat/cmd"
"github.com/icinga/icingabeat/beater"
)
// Name of this beat
var Name = "icingabeat"
// RootCmd to handle beats cli
var RootCmd = cmd.GenRootCmd(Name, "", beater.New)