Updates serf to get health score in stats.
This commit is contained in:
parent
2a70deba9a
commit
7e75c894b0
|
@ -226,13 +226,13 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/hashicorp/serf/coordinate",
|
"ImportPath": "github.com/hashicorp/serf/coordinate",
|
||||||
"Comment": "v0.7.0-64-gdce30f1",
|
"Comment": "v0.7.0-66-g6c4672d",
|
||||||
"Rev": "dce30f1c7806bf2d96478abb983c53af0e4c8fb2"
|
"Rev": "6c4672d66fc6312ddde18399262943e21175d831"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/hashicorp/serf/serf",
|
"ImportPath": "github.com/hashicorp/serf/serf",
|
||||||
"Comment": "v0.7.0-64-gdce30f1",
|
"Comment": "v0.7.0-66-g6c4672d",
|
||||||
"Rev": "dce30f1c7806bf2d96478abb983c53af0e4c8fb2"
|
"Rev": "6c4672d66fc6312ddde18399262943e21175d831"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/hashicorp/yamux",
|
"ImportPath": "github.com/hashicorp/yamux",
|
||||||
|
|
|
@ -1622,6 +1622,7 @@ func (s *Serf) Stats() map[string]string {
|
||||||
"members": toString(uint64(len(s.members))),
|
"members": toString(uint64(len(s.members))),
|
||||||
"failed": toString(uint64(len(s.failedMembers))),
|
"failed": toString(uint64(len(s.failedMembers))),
|
||||||
"left": toString(uint64(len(s.leftMembers))),
|
"left": toString(uint64(len(s.leftMembers))),
|
||||||
|
"health_score": toString(uint64(s.memberlist.GetHealthScore())),
|
||||||
"member_time": toString(uint64(s.clock.Time())),
|
"member_time": toString(uint64(s.clock.Time())),
|
||||||
"event_time": toString(uint64(s.eventClock.Time())),
|
"event_time": toString(uint64(s.eventClock.Time())),
|
||||||
"query_time": toString(uint64(s.queryClock.Time())),
|
"query_time": toString(uint64(s.queryClock.Time())),
|
||||||
|
|
Loading…
Reference in New Issue