mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
254 lines
6.3 KiB
Go
254 lines
6.3 KiB
Go
// Copyright 2015 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package command
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"sync"
|
|
"time"
|
|
|
|
v3 "github.com/coreos/etcd/clientv3"
|
|
"github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes"
|
|
"github.com/coreos/etcd/pkg/flags"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var epClusterEndpoints bool
|
|
var epHashKVRev int64
|
|
|
|
// NewEndpointCommand returns the cobra command for "endpoint".
|
|
func NewEndpointCommand() *cobra.Command {
|
|
ec := &cobra.Command{
|
|
Use: "endpoint <subcommand>",
|
|
Short: "Endpoint related commands",
|
|
}
|
|
|
|
ec.PersistentFlags().BoolVar(&epClusterEndpoints, "cluster", false, "use all endpoints from the cluster member list")
|
|
ec.AddCommand(newEpHealthCommand())
|
|
ec.AddCommand(newEpStatusCommand())
|
|
ec.AddCommand(newEpHashKVCommand())
|
|
|
|
return ec
|
|
}
|
|
|
|
func newEpHealthCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "health",
|
|
Short: "Checks the healthiness of endpoints specified in `--endpoints` flag",
|
|
Run: epHealthCommandFunc,
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
func newEpStatusCommand() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "status",
|
|
Short: "Prints out the status of endpoints specified in `--endpoints` flag",
|
|
Long: `When --write-out is set to simple, this command prints out comma-separated status lists for each endpoint.
|
|
The items in the lists are endpoint, ID, version, db size, is leader, raft term, raft index.
|
|
`,
|
|
Run: epStatusCommandFunc,
|
|
}
|
|
}
|
|
|
|
func newEpHashKVCommand() *cobra.Command {
|
|
hc := &cobra.Command{
|
|
Use: "hashkv",
|
|
Short: "Prints the KV history hash for each endpoint in --endpoints",
|
|
Run: epHashKVCommandFunc,
|
|
}
|
|
hc.PersistentFlags().Int64Var(&epHashKVRev, "rev", 0, "maximum revision to hash (default: all revisions)")
|
|
return hc
|
|
}
|
|
|
|
type epHealth struct {
|
|
Ep string `json:"endpoint"`
|
|
Health bool `json:"health"`
|
|
Took string `json:"took"`
|
|
Error string `json:"error,omitempty"`
|
|
}
|
|
|
|
// epHealthCommandFunc executes the "endpoint-health" command.
|
|
func epHealthCommandFunc(cmd *cobra.Command, args []string) {
|
|
flags.SetPflagsFromEnv("ETCDCTL", cmd.InheritedFlags())
|
|
initDisplayFromCmd(cmd)
|
|
|
|
sec := secureCfgFromCmd(cmd)
|
|
dt := dialTimeoutFromCmd(cmd)
|
|
ka := keepAliveTimeFromCmd(cmd)
|
|
kat := keepAliveTimeoutFromCmd(cmd)
|
|
auth := authCfgFromCmd(cmd)
|
|
cfgs := []*v3.Config{}
|
|
for _, ep := range endpointsFromCluster(cmd) {
|
|
cfg, err := newClientCfg([]string{ep}, dt, ka, kat, sec, auth)
|
|
if err != nil {
|
|
ExitWithError(ExitBadArgs, err)
|
|
}
|
|
cfgs = append(cfgs, cfg)
|
|
}
|
|
|
|
var wg sync.WaitGroup
|
|
hch := make(chan epHealth, len(cfgs))
|
|
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 {
|
|
hch <- epHealth{Ep: ep, Health: false, Error: err.Error()}
|
|
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, "health")
|
|
cancel()
|
|
eh := epHealth{Ep: ep, Health: false, Took: time.Since(st).String()}
|
|
// permission denied is OK since proposal goes through consensus to get it
|
|
if err == nil || err == rpctypes.ErrPermissionDenied {
|
|
eh.Health = true
|
|
} else {
|
|
eh.Error = err.Error()
|
|
}
|
|
hch <- eh
|
|
}(cfg)
|
|
}
|
|
|
|
wg.Wait()
|
|
close(hch)
|
|
|
|
errs := false
|
|
healthList := []epHealth{}
|
|
for h := range hch {
|
|
healthList = append(healthList, h)
|
|
if h.Error != "" {
|
|
errs = true
|
|
}
|
|
}
|
|
display.EndpointHealth(healthList)
|
|
if errs {
|
|
ExitWithError(ExitError, fmt.Errorf("unhealthy cluster"))
|
|
}
|
|
}
|
|
|
|
type epStatus struct {
|
|
Ep string `json:"Endpoint"`
|
|
Resp *v3.StatusResponse `json:"Status"`
|
|
}
|
|
|
|
func epStatusCommandFunc(cmd *cobra.Command, args []string) {
|
|
c := mustClientFromCmd(cmd)
|
|
|
|
statusList := []epStatus{}
|
|
var err error
|
|
for _, ep := range endpointsFromCluster(cmd) {
|
|
ctx, cancel := commandCtx(cmd)
|
|
resp, serr := c.Status(ctx, ep)
|
|
cancel()
|
|
if serr != nil {
|
|
err = serr
|
|
fmt.Fprintf(os.Stderr, "Failed to get the status of endpoint %s (%v)\n", ep, serr)
|
|
continue
|
|
}
|
|
statusList = append(statusList, epStatus{Ep: ep, Resp: resp})
|
|
}
|
|
|
|
display.EndpointStatus(statusList)
|
|
|
|
if err != nil {
|
|
os.Exit(ExitError)
|
|
}
|
|
}
|
|
|
|
type epHashKV struct {
|
|
Ep string `json:"Endpoint"`
|
|
Resp *v3.HashKVResponse `json:"HashKV"`
|
|
}
|
|
|
|
func epHashKVCommandFunc(cmd *cobra.Command, args []string) {
|
|
c := mustClientFromCmd(cmd)
|
|
|
|
hashList := []epHashKV{}
|
|
var err error
|
|
for _, ep := range endpointsFromCluster(cmd) {
|
|
ctx, cancel := commandCtx(cmd)
|
|
resp, serr := c.HashKV(ctx, ep, epHashKVRev)
|
|
cancel()
|
|
if serr != nil {
|
|
err = serr
|
|
fmt.Fprintf(os.Stderr, "Failed to get the hash of endpoint %s (%v)\n", ep, serr)
|
|
continue
|
|
}
|
|
hashList = append(hashList, epHashKV{Ep: ep, Resp: resp})
|
|
}
|
|
|
|
display.EndpointHashKV(hashList)
|
|
|
|
if err != nil {
|
|
ExitWithError(ExitError, err)
|
|
}
|
|
}
|
|
|
|
func endpointsFromCluster(cmd *cobra.Command) []string {
|
|
if !epClusterEndpoints {
|
|
endpoints, err := cmd.Flags().GetStringSlice("endpoints")
|
|
if err != nil {
|
|
ExitWithError(ExitError, err)
|
|
}
|
|
return endpoints
|
|
}
|
|
|
|
sec := secureCfgFromCmd(cmd)
|
|
dt := dialTimeoutFromCmd(cmd)
|
|
ka := keepAliveTimeFromCmd(cmd)
|
|
kat := keepAliveTimeoutFromCmd(cmd)
|
|
eps, err := endpointsFromCmd(cmd)
|
|
if err != nil {
|
|
ExitWithError(ExitError, err)
|
|
}
|
|
// exclude auth for not asking needless password (MemberList() doesn't need authentication)
|
|
|
|
cfg, err := newClientCfg(eps, dt, ka, kat, sec, nil)
|
|
if err != nil {
|
|
ExitWithError(ExitError, err)
|
|
}
|
|
c, err := v3.New(*cfg)
|
|
if err != nil {
|
|
ExitWithError(ExitError, err)
|
|
}
|
|
|
|
ctx, cancel := commandCtx(cmd)
|
|
defer func() {
|
|
c.Close()
|
|
cancel()
|
|
}()
|
|
membs, err := c.MemberList(ctx)
|
|
if err != nil {
|
|
err = fmt.Errorf("failed to fetch endpoints from etcd cluster member list: %v", err)
|
|
ExitWithError(ExitError, err)
|
|
}
|
|
|
|
ret := []string{}
|
|
for _, m := range membs.Members {
|
|
ret = append(ret, m.ClientURLs...)
|
|
}
|
|
return ret
|
|
}
|