diff --git a/command/agent/agent_endpoint.go b/command/agent/agent_endpoint.go index 83e2e94cb..d8c327529 100644 --- a/command/agent/agent_endpoint.go +++ b/command/agent/agent_endpoint.go @@ -16,6 +16,7 @@ type AgentSelf struct { Config *Config Coord *coordinate.Coordinate Member serf.Member + Stats map[string]map[string]string } func (s *HTTPServer) AgentSelf(resp http.ResponseWriter, req *http.Request) (interface{}, error) { @@ -31,6 +32,7 @@ func (s *HTTPServer) AgentSelf(resp http.ResponseWriter, req *http.Request) (int Config: s.agent.config, Coord: c, Member: s.agent.LocalMember(), + Stats: s.agent.Stats(), }, nil }