-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperf-site-replication.go
52 lines (46 loc) · 1.5 KB
/
perf-site-replication.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// MinIO Inc [madmin-go]
// Copyright (c) 2014-2025 MinIO.
// All rights reserved. No warranty, explicit or implicit, provided.
//
package madmin
import (
"context"
"encoding/json"
"net/http"
"net/url"
"time"
)
// SiteNetPerfNodeResult - stats from each server
type SiteNetPerfNodeResult struct {
Endpoint string `json:"endpoint"`
TX uint64 `json:"tx"` // transfer rate in bytes
TXTotalDuration time.Duration `json:"txTotalDuration"`
RX uint64 `json:"rx"` // received rate in bytes
RXTotalDuration time.Duration `json:"rxTotalDuration"`
TotalConn uint64 `json:"totalConn"`
Error string `json:"error,omitempty"`
}
// SiteNetPerfResult - aggregate results from all servers
type SiteNetPerfResult struct {
NodeResults []SiteNetPerfNodeResult `json:"nodeResults"`
}
// SiteReplicationPerf - perform site-replication on the MinIO servers
func (adm *AdminClient) SiteReplicationPerf(ctx context.Context, duration time.Duration) (result SiteNetPerfResult, err error) {
queryVals := make(url.Values)
queryVals.Set("duration", duration.String())
resp, err := adm.executeMethod(ctx,
http.MethodPost, requestData{
relPath: adminAPIPrefix + "/speedtest/site",
queryValues: queryVals,
})
if err != nil {
return result, err
}
defer closeResponse(resp)
if resp.StatusCode != http.StatusOK {
return result, httpRespToErrorResponse(resp)
}
err = json.NewDecoder(resp.Body).Decode(&result)
return result, err
}