-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathinfo-v4-commands.go
292 lines (249 loc) · 7.41 KB
/
info-v4-commands.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
//
// Copyright (c) 2015-2025 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package madmin
import (
"context"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"github.com/tinylib/msgp/msgp"
)
//msgp:clearomitted
//msgp:tag json
//go:generate msgp -file $GOFILE
// ClusterInfo cluster level information
type ClusterInfo struct {
Version string `msg:"version"`
DeploymentID string `msg:"deploymentID"`
SiteName string `msg:"siteName"`
SiteRegion string `msg:"siteRegion"`
License struct {
Organization string `msg:"org"`
Type string `msg:"type"`
Expiry string `msg:"expiry"`
} `msg:"license"`
Platform string `msg:"platform"`
Domain []string `msg:"domain"`
Pools []PoolInfo `msg:"pools"`
Metrics struct {
Buckets uint64 `msg:"buckets"`
Objects uint64 `msg:"objects"`
Versions uint64 `msg:"versions"`
DeleteMarkers uint64 `msg:"deleteMarkers"`
Usage uint64 `msg:"usage"`
} `msg:"metrics"`
}
// PoolInfo per pool specific information
type PoolInfo struct {
Index int `msg:"index"`
Nodes struct {
Total int `msg:"total"`
Offline int `msg:"offline"`
} `msg:"nodes"`
Drives struct {
PerNodeTotal int `msg:"perNode"`
PerNodeOffline int `msg:"perNodeOffline"`
}
TotalSets int `msg:"numberOfSets"`
StripeSize int `msg:"stripeSize"`
WriteQuorum int `msg:"writeQuorum"`
ReadQuorum int `msg:"readQuorum"`
// Optional value, not returned in ClusterInfo, PoolList API calls
Hosts []string `msg:"hosts,omitempty"`
}
// ClusterInfoOpts ask for additional data from the server
// this is not used at the moment, kept here for future
// extensibility.
//
//msgp:ignore ClusterInfoOpts
type ClusterInfoOpts struct{}
// ClusterInfo - Connect to a minio server and call Server Admin Info Management API
// to fetch server's information represented by infoMessage structure
func (adm *AdminClient) ClusterInfo(ctx context.Context, options ...func(*ClusterInfoOpts)) (ClusterInfo, error) {
srvOpts := &ClusterInfoOpts{}
for _, o := range options {
o(srvOpts)
}
values := make(url.Values)
resp, err := adm.executeMethod(ctx,
http.MethodGet,
requestData{
relPath: adminAPIPrefixV4 + "/cluster",
queryValues: values,
})
defer closeResponse(resp)
if err != nil {
return ClusterInfo{}, err
}
if resp.StatusCode != http.StatusOK {
return ClusterInfo{}, httpRespToErrorResponse(resp)
}
var info ClusterInfo
if err = info.DecodeMsg(msgp.NewReader(resp.Body)); err != nil {
return ClusterInfo{}, err
}
return info, nil
}
// PoolInfoOpts ask for additional data from the server
// this is not used at the moment, kept here for future
// extensibility.
//
//msgp:ignore PoolInfoOpts
type PoolInfoOpts struct{}
// PoolList list all the pools on the server
func (adm *AdminClient) PoolList(ctx context.Context, options ...func(*PoolInfoOpts)) (pools []PoolInfo, err error) {
srvOpts := &PoolInfoOpts{}
for _, o := range options {
o(srvOpts)
}
values := make(url.Values)
resp, err := adm.executeMethod(ctx,
http.MethodGet,
requestData{
relPath: adminAPIPrefixV4 + "/pool",
queryValues: values,
})
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
mr := msgp.NewReader(resp.Body)
for {
var info PoolInfo
if err = info.DecodeMsg(mr); err != nil {
if errors.Is(err, io.EOF) {
err = nil
}
break
}
pools = append(pools, info)
}
return pools, err
}
// PoolInfo returns pool information about a specific pool referenced by poolIndex
func (adm *AdminClient) PoolInfo(ctx context.Context, poolIndex int, options ...func(*PoolInfoOpts)) (PoolInfo, error) {
srvOpts := &PoolInfoOpts{}
for _, o := range options {
o(srvOpts)
}
values := make(url.Values)
resp, err := adm.executeMethod(ctx,
http.MethodGet,
requestData{
relPath: adminAPIPrefixV4 + fmt.Sprintf("/pool/%d", poolIndex),
queryValues: values,
})
defer closeResponse(resp)
if err != nil {
return PoolInfo{}, err
}
if resp.StatusCode != http.StatusOK {
return PoolInfo{}, httpRespToErrorResponse(resp)
}
var info PoolInfo
if err = info.DecodeMsg(msgp.NewReader(resp.Body)); err != nil {
return PoolInfo{}, err
}
return info, nil
}
// SetInfoOpts ask for additional data from the server
// this is not used at the moment, kept here for future
// extensibility.
//
//msgp:ignore SetInfoOpts
type SetInfoOpts struct {
Metrics bool
}
// ExtendedErasureSetInfo provides information per erasure set
type ExtendedErasureSetInfo struct {
ID int `json:"id"`
RawUsage uint64 `json:"rawUsage"`
RawCapacity uint64 `json:"rawCapacity"`
Usage uint64 `json:"usage"`
ObjectsCount uint64 `json:"objectsCount"`
VersionsCount uint64 `json:"versionsCount"`
DeleteMarkersCount uint64 `json:"deleteMarkersCount"`
HealDrives int `json:"healDrives"`
Drives []Disk `json:"drives,omitempty"`
}
func (adm *AdminClient) SetInfo(ctx context.Context, poolIndex int, setIndex int, options ...func(*SetInfoOpts)) (ExtendedErasureSetInfo, error) {
srvOpts := &SetInfoOpts{}
for _, o := range options {
o(srvOpts)
}
values := make(url.Values)
if srvOpts.Metrics {
values.Add("metrics", "true")
}
resp, err := adm.executeMethod(ctx,
http.MethodGet,
requestData{
relPath: adminAPIPrefixV4 + fmt.Sprintf("/set/%d/%d", poolIndex, setIndex),
queryValues: values,
})
defer closeResponse(resp)
if err != nil {
return ExtendedErasureSetInfo{}, err
}
if resp.StatusCode != http.StatusOK {
return ExtendedErasureSetInfo{}, httpRespToErrorResponse(resp)
}
var info ExtendedErasureSetInfo
if err = info.DecodeMsg(msgp.NewReader(resp.Body)); err != nil {
return ExtendedErasureSetInfo{}, err
}
return info, nil
}
// DriveInfoOpts ask for additional data from the server
// this is not used at the moment, kept here for future
// extensibility.
//
//msgp:ignore DriveInfoOpts
type DriveInfoOpts struct{}
// DriveInfo returns pool information about a specific pool referenced by poolIndex
func (adm *AdminClient) DriveInfo(ctx context.Context, poolIndex, setIndex, diskIndex int, options ...func(*DriveInfoOpts)) (Disk, error) {
srvOpts := &DriveInfoOpts{}
for _, o := range options {
o(srvOpts)
}
values := make(url.Values)
resp, err := adm.executeMethod(ctx,
http.MethodGet,
requestData{
relPath: adminAPIPrefixV4 + fmt.Sprintf("/disk/%d/%d/%d", poolIndex, setIndex, diskIndex),
queryValues: values,
})
defer closeResponse(resp)
if err != nil {
return Disk{}, err
}
if resp.StatusCode != http.StatusOK {
return Disk{}, httpRespToErrorResponse(resp)
}
var disk Disk
if err = disk.DecodeMsg(msgp.NewReader(resp.Body)); err != nil {
return Disk{}, err
}
return disk, nil
}