mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
25 lines
475 B
Go
25 lines
475 B
Go
|
package operation
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"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 {
|
||
|
grpcResponse, grpcErr := masterClient.Statistics(context.Background(), req)
|
||
|
if grpcErr != nil {
|
||
|
return grpcErr
|
||
|
}
|
||
|
|
||
|
resp = grpcResponse
|
||
|
|
||
|
return nil
|
||
|
|
||
|
})
|
||
|
|
||
|
return
|
||
|
}
|