diff --git a/tools/functional-tester/etcd-agent/client/client.go b/tools/functional-tester/etcd-agent/client/client.go index 6f4299e4c..53d28d034 100644 --- a/tools/functional-tester/etcd-agent/client/client.go +++ b/tools/functional-tester/etcd-agent/client/client.go @@ -17,9 +17,11 @@ package client import "net/rpc" type Status struct { + // State gives the human-readable status of an agent (e.g., "started" or "terminated") + State string + // TODO: gather more informations // TODO: memory usage, raft information, etc.. - State string } type Agent interface {