func mustClientFromCmd(cmd *cobra.Command) *clientv3.Client { flags.SetPflagsFromEnv("ETCDCTL", cmd.InheritedFlags()) endpoints, err := cmd.Flags().GetStringSlice("endpoints") if err != nil { ExitWithError(ExitError, err) } dialTimeout := dialTimeoutFromCmd(cmd) sec := secureCfgFromCmd(cmd) return mustClient(endpoints, dialTimeout, sec) }
// epHealthCommandFunc executes the "endpoint-health" command. func epHealthCommandFunc(cmd *cobra.Command, args []string) { flags.SetPflagsFromEnv("ETCDCTL", cmd.InheritedFlags()) endpoints, err := cmd.Flags().GetStringSlice("endpoints") if err != nil { ExitWithError(ExitError, err) } sec := secureCfgFromCmd(cmd) dt := dialTimeoutFromCmd(cmd) auth := authCfgFromCmd(cmd) cfgs := []*v3.Config{} for _, ep := range endpoints { cfg, err := newClientCfg([]string{ep}, dt, sec, auth) if err != nil { ExitWithError(ExitBadArgs, err) } cfgs = append(cfgs, cfg) } var wg sync.WaitGroup for _, cfg := range cfgs { wg.Add(1) go func(cfg *v3.Config) { defer wg.Done() ep := cfg.Endpoints[0] cli, err := v3.New(*cfg) if err != nil { fmt.Printf("%s is unhealthy: failed to connect: %v\n", ep, err) return } st := time.Now() // get a random key. As long as we can get the response without an error, the // endpoint is health. ctx, cancel := commandCtx(cmd) _, err = cli.Get(ctx, healthCheckKey) cancel() if err != nil { fmt.Printf("%s is unhealthy: failed to commit proposal: %v\n", ep, err) } else { fmt.Printf("%s is healthy: successfully committed proposal: took = %v\n", ep, time.Since(st)) } }(cfg) } wg.Wait() }