2021-05-12 12:38:18 +00:00
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2021-07-13 10:02:39 +00:00
|
|
|
"net/http"
|
2021-05-12 12:38:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Usage struct
|
|
|
|
type Usage struct {
|
|
|
|
Entries []struct {
|
|
|
|
User string `json:"user"`
|
|
|
|
Buckets []struct {
|
|
|
|
Bucket string `json:"bucket"`
|
|
|
|
Time string `json:"time"`
|
|
|
|
Epoch uint64 `json:"epoch"`
|
|
|
|
Owner string `json:"owner"`
|
|
|
|
Categories []struct {
|
|
|
|
Category string `json:"category"`
|
|
|
|
BytesSent uint64 `json:"bytes_sent"`
|
|
|
|
BytesReceived uint64 `json:"bytes_received"`
|
|
|
|
Ops uint64 `json:"ops"`
|
|
|
|
SuccessfulOps uint64 `json:"successful_ops"`
|
|
|
|
} `json:"categories"`
|
|
|
|
} `json:"buckets"`
|
|
|
|
} `json:"entries"`
|
|
|
|
Summary []struct {
|
|
|
|
User string `json:"user"`
|
|
|
|
Categories []struct {
|
|
|
|
Category string `json:"category"`
|
|
|
|
BytesSent uint64 `json:"bytes_sent"`
|
|
|
|
BytesReceived uint64 `json:"bytes_received"`
|
|
|
|
Ops uint64 `json:"ops"`
|
|
|
|
SuccessfulOps uint64 `json:"successful_ops"`
|
|
|
|
} `json:"categories"`
|
|
|
|
Total struct {
|
|
|
|
BytesSent uint64 `json:"bytes_sent"`
|
|
|
|
BytesReceived uint64 `json:"bytes_received"`
|
|
|
|
Ops uint64 `json:"ops"`
|
|
|
|
SuccessfulOps uint64 `json:"successful_ops"`
|
|
|
|
} `json:"total"`
|
|
|
|
} `json:"summary"`
|
|
|
|
Start string `url:"start"` //Example: 2012-09-25 16:00:00
|
|
|
|
End string `url:"end"`
|
|
|
|
ShowEntries *bool `url:"show-entries"`
|
|
|
|
ShowSummary *bool `url:"show-summary"`
|
|
|
|
RemoveAll *bool `url:"remove-all"` //true
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUsage request bandwidth usage information on the object store
|
2021-06-07 15:12:11 +00:00
|
|
|
func (api *API) GetUsage(ctx context.Context, usage Usage) (Usage, error) {
|
2021-07-13 10:02:39 +00:00
|
|
|
body, err := api.call(ctx, http.MethodGet, "/usage", valueToURLParams(usage))
|
2021-05-12 12:38:18 +00:00
|
|
|
if err != nil {
|
2021-06-07 15:12:11 +00:00
|
|
|
return Usage{}, err
|
2021-05-12 12:38:18 +00:00
|
|
|
}
|
2021-06-07 15:12:11 +00:00
|
|
|
u := Usage{}
|
|
|
|
err = json.Unmarshal(body, &u)
|
2021-05-12 12:38:18 +00:00
|
|
|
if err != nil {
|
2021-06-07 15:12:11 +00:00
|
|
|
return Usage{}, fmt.Errorf("%s. %s. %w", unmarshalError, string(body), err)
|
2021-05-12 12:38:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return u, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TrimUsage removes bandwidth usage information. With no dates specified, removes all usage information.
|
|
|
|
func (api *API) TrimUsage(ctx context.Context, usage Usage) error {
|
2021-07-13 10:02:39 +00:00
|
|
|
_, err := api.call(ctx, http.MethodDelete, "/usage", valueToURLParams(usage))
|
2021-05-12 12:38:18 +00:00
|
|
|
return err
|
|
|
|
}
|