mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-19 16:58:08 +02:00
16 lines
340 B
Go
16 lines
340 B
Go
package cmd
|
|
|
|
import (
|
|
// register default heartbeat monitors
|
|
_ "github.com/elastic/beats/heartbeat/monitors/defaults"
|
|
|
|
"github.com/elastic/beats/heartbeat/beater"
|
|
cmd "github.com/elastic/beats/libbeat/cmd"
|
|
)
|
|
|
|
// Name of this beat
|
|
var Name = "heartbeat"
|
|
|
|
// RootCmd to handle beats cli
|
|
var RootCmd = cmd.GenRootCmd(Name, "", beater.New)
|