2018-11-23 08:24:51 +00:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-01-10 08:43:44 +00:00
|
|
|
"time"
|
2018-11-23 08:24:51 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Statistics(server string, req *master_pb.StatisticsRequest) (resp *master_pb.StatisticsResponse, err error) {
|
|
|
|
|
|
|
|
err = withMasterServerClient(server, func(masterClient master_pb.SeaweedClient) error {
|
2019-01-10 08:43:44 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(5*time.Second))
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
grpcResponse, grpcErr := masterClient.Statistics(ctx, req)
|
2018-11-23 08:24:51 +00:00
|
|
|
if grpcErr != nil {
|
|
|
|
return grpcErr
|
|
|
|
}
|
|
|
|
|
|
|
|
resp = grpcResponse
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|