func StartAgentWithConfig(t *testing.T, conf string, params ...HelperParams) *agent.Agent { InitConfig(t, conf, params...) agent := NewAgent() agent.Start() return agent }
"github.com/skydive-project/skydive/config" "github.com/skydive-project/skydive/logging" "github.com/spf13/cobra" ) var Agent = &cobra.Command{ Use: "agent", Short: "Skydive agent", Long: "Skydive agent", SilenceUsage: true, Run: func(cmd *cobra.Command, args []string) { logging.SetLoggingID("agent") logging.GetLogger().Notice("Skydive Agent starting...") agent := agent.NewAgent() agent.Start() logging.GetLogger().Notice("Skydive Agent started") ch := make(chan os.Signal) signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM) <-ch agent.Stop() logging.GetLogger().Notice("Skydive Agent stopped.") }, } func init() { host, err := os.Hostname() if err != nil {