mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
command: Enhance health command to check if there are any active alarms (#12150)
This commit is contained in:
parent
97354af44b
commit
8866d55b9b
@ -20,6 +20,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"go.etcd.io/etcd/api/v3/etcdserverpb"
|
||||||
"go.etcd.io/etcd/api/v3/v3rpc/rpctypes"
|
"go.etcd.io/etcd/api/v3/v3rpc/rpctypes"
|
||||||
v3 "go.etcd.io/etcd/client/v3"
|
v3 "go.etcd.io/etcd/client/v3"
|
||||||
"go.etcd.io/etcd/pkg/v3/flags"
|
"go.etcd.io/etcd/pkg/v3/flags"
|
||||||
@ -124,7 +125,6 @@ func epHealthCommandFunc(cmd *cobra.Command, args []string) {
|
|||||||
// endpoint is health.
|
// endpoint is health.
|
||||||
ctx, cancel := commandCtx(cmd)
|
ctx, cancel := commandCtx(cmd)
|
||||||
_, err = cli.Get(ctx, "health")
|
_, err = cli.Get(ctx, "health")
|
||||||
cancel()
|
|
||||||
eh := epHealth{Ep: ep, Health: false, Took: time.Since(st).String()}
|
eh := epHealth{Ep: ep, Health: false, Took: time.Since(st).String()}
|
||||||
// permission denied is OK since proposal goes through consensus to get it
|
// permission denied is OK since proposal goes through consensus to get it
|
||||||
if err == nil || err == rpctypes.ErrPermissionDenied {
|
if err == nil || err == rpctypes.ErrPermissionDenied {
|
||||||
@ -132,6 +132,28 @@ func epHealthCommandFunc(cmd *cobra.Command, args []string) {
|
|||||||
} else {
|
} else {
|
||||||
eh.Error = err.Error()
|
eh.Error = err.Error()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if eh.Health == true {
|
||||||
|
resp, err := cli.AlarmList(ctx)
|
||||||
|
if err == nil && len(resp.Alarms) > 0 {
|
||||||
|
eh.Health = false
|
||||||
|
eh.Error = "Active Alarm(s): "
|
||||||
|
for _, v := range resp.Alarms {
|
||||||
|
switch v.Alarm {
|
||||||
|
case etcdserverpb.AlarmType_NOSPACE:
|
||||||
|
eh.Error = eh.Error + "NOSPACE "
|
||||||
|
case etcdserverpb.AlarmType_CORRUPT:
|
||||||
|
eh.Error = eh.Error + "CORRUPT "
|
||||||
|
default:
|
||||||
|
eh.Error = eh.Error + "UNKNOWN "
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if err != nil {
|
||||||
|
eh.Health = false
|
||||||
|
eh.Error = "Unable to fetch the alarm list"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cancel()
|
||||||
hch <- eh
|
hch <- eh
|
||||||
}(cfg)
|
}(cfg)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user