2017-01-16 18:26:26 -05:00
# Golang Admin Client API Reference [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)
2016-12-20 21:49:48 -05:00
## Initialize Minio Admin Client object.
## Minio
```go
package main
import (
2017-01-17 13:02:58 -05:00
"fmt"
2016-12-20 21:49:48 -05:00
2017-01-17 13:02:58 -05:00
"github.com/minio/minio/pkg/madmin"
2016-12-20 21:49:48 -05:00
)
func main() {
2017-01-17 13:02:58 -05:00
// Use a secure connection.
ssl := true
// Initialize minio client object.
mdmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETKEY", ssl)
if err != nil {
fmt.Println(err)
return
}
// Fetch service status.
st, err := mdmClnt.ServiceStatus()
if err != nil {
fmt.Println(err)
return
}
fmt.Printf("%#v\n", st)
2016-12-20 21:49:48 -05:00
}
```
2018-10-09 17:00:01 -04:00
| Service operations | Info operations | Healing operations | Config operations | IAM operations | Misc |
|:----------------------------|:----------------------------|:--------------------------------------|:--------------------------|:------------------------------------|:------------------------------------|
2018-10-16 15:48:19 -04:00
| [`ServiceStatus` ](#ServiceStatus ) | [`ServerInfo` ](#ServerInfo ) | [`Heal` ](#Heal ) | [`GetConfig` ](#GetConfig ) | [`AddUser` ](#AddUser ) | [`SetAdminCredentials` ](#SetAdminCredentials ) |
| [`ServiceSendAction` ](#ServiceSendAction ) | | | [`SetConfig` ](#SetConfig ) | [`SetUserPolicy` ](#SetUserPolicy ) | [`StartProfiling` ](#StartProfiling ) |
2018-10-13 03:18:43 -04:00
| | | | [`GetConfigKeys` ](#GetConfigKeys ) | [`ListUsers` ](#ListUsers ) | [`DownloadProfilingData` ](#DownloadProfilingData ) |
2018-10-16 15:48:19 -04:00
| | | | [`SetConfigKeys` ](#SetConfigKeys ) | [`AddCannedPolicy` ](#AddCannedPolicy ) | |
2018-01-22 17:54:55 -05:00
2016-12-20 21:49:48 -05:00
## 1. Constructor
< a name = "Minio" > < / a >
### New(endpoint string, accessKeyID string, secretAccessKey string, ssl bool) (*AdminClient, error)
Initializes a new admin client object.
__Parameters__
|Param |Type |Description |
|:---|:---| :---|
|`endpoint` | _string_ |Minio endpoint. |
|`accessKeyID` |_string_ | Access key for the object storage endpoint. |
|`secretAccessKey` | _string_ |Secret key for the object storage endpoint. |
|`ssl` | _bool_ | Set this value to 'true' to enable secure (HTTPS) access. |
2018-01-22 17:54:55 -05:00
## 2. Admin API Version
< a name = "VersionInfo" > < / a >
### VersionInfo() (AdminAPIVersionInfo, error)
Fetch server's supported Administrative API version.
2016-12-20 21:49:48 -05:00
2018-01-22 17:54:55 -05:00
__Example__
``` go
info, err := madmClnt.VersionInfo()
if err != nil {
log.Fatalln(err)
}
log.Printf("%s\n", info.Version)
```
## 3. Service operations
2016-12-20 21:49:48 -05:00
< a name = "ServiceStatus" > < / a >
### ServiceStatus() (ServiceStatusMetadata, error)
2017-01-17 13:02:58 -05:00
Fetch service status, replies disk space used, backend type and total disks offline/online (applicable in distributed mode).
2016-12-20 21:49:48 -05:00
| Param | Type | Description |
|---|---|---|
2017-01-17 13:02:58 -05:00
|`serviceStatus` | _ServiceStatusMetadata_ | Represents current server status info in following format: |
2016-12-20 21:49:48 -05:00
| Param | Type | Description |
|---|---|---|
2017-01-23 11:56:06 -05:00
|`st.ServerVersion.Version` | _string_ | Server version. |
|`st.ServerVersion.CommitID` | _string_ | Server commit id. |
2018-02-21 15:00:46 -05:00
|`st.Uptime` | _time.Duration_ | Server uptime duration in seconds. |
2016-12-20 21:49:48 -05:00
__Example__
```go
st, err := madmClnt.ServiceStatus()
if err != nil {
log.Fatalln(err)
}
log.Printf("%#v\n", st)
```
2018-01-22 17:54:55 -05:00
< a name = "ServiceSendAction" > < / a >
### ServiceSendAction(act ServiceActionValue) (error)
Sends a service action command to service - possible actions are restarting and stopping the server.
2016-12-20 21:49:48 -05:00
__Example__
2017-01-17 13:02:58 -05:00
2016-12-20 21:49:48 -05:00
```go
2018-02-21 15:00:46 -05:00
// to restart
2018-01-22 17:54:55 -05:00
st, err := madmClnt.ServiceSendAction(ServiceActionValueRestart)
2018-02-21 15:00:46 -05:00
// or to stop
// st, err := madmClnt.ServiceSendAction(ServiceActionValueStop)
2016-12-20 21:49:48 -05:00
if err != nil {
log.Fatalln(err)
}
2017-01-17 13:02:58 -05:00
log.Printf("Success")
2016-12-20 21:49:48 -05:00
```
2017-02-25 14:06:08 -05:00
2018-01-22 17:54:55 -05:00
## 4. Info operations
2017-04-21 10:15:53 -04:00
< a name = "ServerInfo" > < / a >
### ServerInfo() ([]ServerInfo, error)
2018-02-21 15:00:46 -05:00
Fetches information for all cluster nodes, such as server properties, storage information, network statistics, etc.
| Param | Type | Description |
|---|---|---|
|`si.Addr` | _string_ | Address of the server the following information is retrieved from. |
|`si.ConnStats` | _ServerConnStats_ | Connection statistics from the given server. |
|`si.HTTPStats` | _ServerHTTPStats_ | HTTP connection statistics from the given server. |
|`si.Properties` | _ServerProperties_ | Server properties such as region, notification targets. |
|`si.Data.StorageInfo.Total` | _int64_ | Total disk space. |
|`si.Data.StorageInfo.Free` | _int64_ | Free disk space. |
|`si.Data.StorageInfo.Backend`| _struct{}_ | Represents backend type embedded structure. |
| Param | Type | Description |
|---|---|---|
|`ServerProperties.Uptime`| _time.Duration_ | Total duration in seconds since server is running. |
|`ServerProperties.Version`| _string_ | Current server version. |
|`ServerProperties.CommitID` | _string_ | Current server commitID. |
|`ServerProperties.Region` | _string_ | Configured server region. |
|`ServerProperties.SQSARN` | _[]string_ | List of notification target ARNs. |
| Param | Type | Description |
|---|---|---|
|`ServerConnStats.TotalInputBytes` | _uint64_ | Total bytes received by the server. |
|`ServerConnStats.TotalOutputBytes` | _uint64_ | Total bytes sent by the server. |
| Param | Type | Description |
|---|---|---|
|`ServerHTTPStats.TotalHEADStats`| _ServerHTTPMethodStats_ | Total statistics regarding HEAD operations |
|`ServerHTTPStats.SuccessHEADStats`| _ServerHTTPMethodStats_ | Total statistics regarding successful HEAD operations |
|`ServerHTTPStats.TotalGETStats`| _ServerHTTPMethodStats_ | Total statistics regarding GET operations |
|`ServerHTTPStats.SuccessGETStats`| _ServerHTTPMethodStats_ | Total statistics regarding successful GET operations |
|`ServerHTTPStats.TotalPUTStats`| _ServerHTTPMethodStats_ | Total statistics regarding PUT operations |
|`ServerHTTPStats.SuccessPUTStats`| _ServerHTTPMethodStats_ | Total statistics regarding successful PUT operations |
|`ServerHTTPStats.TotalPOSTStats`| _ServerHTTPMethodStats_ | Total statistics regarding POST operations |
|`ServerHTTPStats.SuccessPOSTStats`| _ServerHTTPMethodStats_ | Total statistics regarding successful POST operations |
|`ServerHTTPStats.TotalDELETEStats`| _ServerHTTPMethodStats_ | Total statistics regarding DELETE operations |
|`ServerHTTPStats.SuccessDELETEStats`| _ServerHTTPMethodStats_ | Total statistics regarding successful DELETE operations |
2017-04-21 10:15:53 -04:00
2018-02-21 15:00:46 -05:00
| Param | Type | Description |
|---|---|---|
|`ServerHTTPMethodStats.Count` | _uint64_ | Total number of operations. |
|`ServerHTTPMethodStats.AvgDuration` | _string_ | Average duration of Count number of operations. |
| Param | Type | Description |
|---|---|---|
|`Backend.Type` | _BackendType_ | Type of backend used by the server currently only FS or Erasure. |
|`Backend.OnlineDisks`| _int_ | Total number of disks online (only applies to Erasure backend), is empty for FS. |
|`Backend.OfflineDisks` | _int_ | Total number of disks offline (only applies to Erasure backend), is empty for FS. |
|`Backend.StandardSCData` | _int_ | Data disks set for standard storage class, is empty for FS. |
|`Backend.StandardSCParity` | _int_ | Parity disks set for standard storage class, is empty for FS. |
|`Backend.RRSCData` | _int_ | Data disks set for reduced redundancy storage class, is empty for FS. |
|`Backend.RRSCParity` | _int_ | Parity disks set for reduced redundancy storage class, is empty for FS. |
|`Backend.Sets` | _[][]DriveInfo_ | Represents topology of drives in erasure coded sets. |
| Param | Type | Description |
|---|---|---|
|`DriveInfo.UUID`| _string_ | Unique ID for each disk provisioned by server format. |
|`DriveInfo.Endpoint` | _string_ | Endpoint location of the remote/local disk. |
|`DriveInfo.State` | _string_ | Current state of the disk at endpoint. |
2017-04-21 10:15:53 -04:00
__Example__
```go
serversInfo, err := madmClnt.ServerInfo()
if err != nil {
log.Fatalln(err)
}
for _, peerInfo := range serversInfo {
log.Printf("Node: %s, Info: %v\n", peerInfo.Addr, peerInfo.Data)
}
```
2018-01-22 17:54:55 -05:00
## 6. Heal operations
2017-02-25 14:06:08 -05:00
2018-01-22 17:54:55 -05:00
< a name = "Heal" > < / a >
2018-11-04 22:24:16 -05:00
### Heal(bucket, prefix string, healOpts HealOpts, clientToken string, forceStart bool, forceStop bool) (start HealStartSuccess, status HealTaskStatus, err error)
2017-01-17 13:02:58 -05:00
2018-01-22 17:54:55 -05:00
Start a heal sequence that scans data under given (possible empty)
`bucket` and `prefix` . The `recursive` bool turns on recursive
traversal under the given path. `dryRun` does not mutate on-disk data,
2018-06-26 13:53:14 -04:00
but performs data validation.
2017-01-17 13:02:58 -05:00
2018-01-22 17:54:55 -05:00
Two heal sequences on overlapping paths may not be initiated.
2017-01-17 13:02:58 -05:00
2018-06-26 13:53:14 -04:00
The progress of a heal should be followed using the same API `Heal`
by providing the `clientToken` previously obtained from a `Heal`
2018-01-22 17:54:55 -05:00
API. The server accumulates results of the heal traversal and waits
for the client to receive and acknowledge them using the status
2018-06-26 13:53:14 -04:00
request by providing `clientToken` .
2017-01-19 12:34:18 -05:00
__Example__
``` go
2017-01-17 13:02:58 -05:00
2018-06-26 13:53:14 -04:00
opts := madmin.HealOpts{
Recursive: true,
DryRun: false,
}
forceStart := false
2018-11-04 22:24:16 -05:00
forceStop := false
healPath, err := madmClnt.Heal("", "", opts, "", forceStart, forceStop)
2017-01-17 13:02:58 -05:00
if err != nil {
log.Fatalln(err)
}
2018-01-22 17:54:55 -05:00
log.Printf("Heal sequence started at %s", healPath)
2017-01-17 13:02:58 -05:00
```
2018-06-26 13:53:14 -04:00
#### HealStartSuccess structure
| Param | Type | Description |
|----|--------|--------|
| s.ClientToken | _string_ | A unique token for a successfully started heal operation, this token is used to request realtime progress of the heal operation. |
| s.ClientAddress | _string_ | Address of the client which initiated the heal operation, the client address has the form "host:port".|
| s.StartTime | _time.Time_ | Time when heal was initially started.|
2018-01-22 17:54:55 -05:00
#### HealTaskStatus structure
2017-04-14 13:28:35 -04:00
2018-01-22 17:54:55 -05:00
| Param | Type | Description |
|----|--------|--------|
| s.Summary | _string_ | Short status of heal sequence |
| s.FailureDetail | _string_ | Error message in case of heal sequence failure |
| s.HealSettings | _HealOpts_ | Contains the booleans set in the `HealStart` call |
| s.Items | _[]HealResultItem_ | Heal records for actions performed by server |
2017-04-14 13:28:35 -04:00
2018-01-22 17:54:55 -05:00
#### HealResultItem structure
2017-01-17 13:02:58 -05:00
2018-01-22 17:54:55 -05:00
| Param | Type | Description |
|------|-------|---------|
| ResultIndex | _int64_ | Index of the heal-result record |
| Type | _HealItemType_ | Represents kind of heal operation in the heal record |
| Bucket | _string_ | Bucket name |
| Object | _string_ | Object name |
| Detail | _string_ | Details about heal operation |
| DiskInfo.AvailableOn | _[]int_ | List of disks on which the healed entity is present and healthy |
| DiskInfo.HealedOn | _[]int_ | List of disks on which the healed entity was restored |
2017-03-31 20:55:15 -04:00
2018-01-22 17:54:55 -05:00
## 7. Config operations
2017-02-25 14:06:08 -05:00
2017-02-20 15:58:50 -05:00
< a name = "GetConfig" > < / a >
### GetConfig() ([]byte, error)
2018-10-09 17:00:01 -04:00
Get current `config.json` of a Minio server.
2017-02-20 15:58:50 -05:00
__Example__
``` go
configBytes, err := madmClnt.GetConfig()
if err != nil {
log.Fatalf("failed due to: %v", err)
}
// Pretty-print config received as json.
var buf bytes.Buffer
err = json.Indent(buf, configBytes, "", "\t")
if err != nil {
log.Fatalf("failed due to: %v", err)
}
log.Println("config received successfully: ", string(buf.Bytes()))
```
2017-02-25 14:06:08 -05:00
2017-02-27 14:40:27 -05:00
< a name = "SetConfig" > < / a >
2018-10-09 17:00:01 -04:00
### SetConfig(config io.Reader) error
Set a new `config.json` for a Minio server.
2017-02-27 14:40:27 -05:00
__Example__
``` go
config := bytes.NewReader([]byte(`config.json contents go here`))
2018-10-09 17:00:01 -04:00
if err := madmClnt.SetConfig(config); err != nil {
2017-02-27 14:40:27 -05:00
log.Fatalf("failed due to: %v", err)
}
2018-10-09 17:00:01 -04:00
log.Println("SetConfig was successful")
2017-02-27 14:40:27 -05:00
```
2017-04-21 10:15:53 -04:00
2018-09-06 11:03:18 -04:00
< a name = "GetConfigKeys" > < / a >
### GetConfigKeys(keys []string) ([]byte, error)
Get a json document which contains a set of keys and their values from config.json.
__Example__
``` go
configBytes, err := madmClnt.GetConfigKeys([]string{"version", "notify.amqp.1"})
if err != nil {
log.Fatalf("failed due to: %v", err)
}
// Pretty-print config received as json.
var buf bytes.Buffer
err = json.Indent(buf, configBytes, "", "\t")
if err != nil {
log.Fatalf("failed due to: %v", err)
}
log.Println("config received successfully: ", string(buf.Bytes()))
```
< a name = "SetConfigKeys" > < / a >
### SetConfigKeys(params map[string]string) error
Set a set of keys and values for Minio server or distributed setup and restart the Minio
server for the new configuration changes to take effect.
__Example__
``` go
err := madmClnt.SetConfigKeys(map[string]string{"notify.webhook.1": "{\"enable\": true, \"endpoint\": \"http://example.com/api\"}"})
if err != nil {
log.Fatalf("failed due to: %v", err)
}
log.Println("New configuration successfully set")
```
2018-10-09 17:00:01 -04:00
## 8. IAM operations
2018-10-16 15:48:19 -04:00
< a name = "AddCannedPolicy" > < / a >
### AddCannedPolicy(policyName string, policy string) error
Create a new canned policy on Minio server.
__Example__
```
policy := `{"Version": "2012-10-17","Statement": [{"Action": ["s3:GetObject"],"Effect": "Allow","Resource": ["arn:aws:s3:::my-bucketname/*"],"Sid": ""}]}`
if err = madmClnt.AddCannedPolicy("get-only", policy); err != nil {
log.Fatalln(err)
}
```
2018-10-09 17:00:01 -04:00
< a name = "AddUser" > < / a >
### AddUser(user string, secret string) error
Add a new user on a Minio server.
__Example__
2018-09-06 11:03:18 -04:00
2018-10-09 17:00:01 -04:00
``` go
if err = madmClnt.AddUser("newuser", "newstrongpassword"); err != nil {
log.Fatalln(err)
}
```
2018-10-16 15:48:19 -04:00
< a name = "SetUserPolicy" > < / a >
### SetUserPolicy(user string, policyName string) error
Enable a canned policy `get-only` for a given user on Minio server.
2018-10-09 17:00:01 -04:00
__Example__
``` go
2018-10-16 15:48:19 -04:00
if err = madmClnt.SetUserPolicy("newuser", "get-only"); err != nil {
2018-10-09 17:00:01 -04:00
log.Fatalln(err)
}
```
2018-09-06 11:03:18 -04:00
2018-10-13 03:18:43 -04:00
< a name = "ListUsers" > < / a >
### ListUsers() (map[string]UserInfo, error)
Lists all users on Minio server.
__Example__
``` go
users, err := madmClnt.ListUsers();
if err != nil {
log.Fatalln(err)
}
for k, v := range users {
fmt.Printf("User %s Status %s\n", k, v.Status)
}
```
2018-10-09 17:00:01 -04:00
## 9. Misc operations
2017-04-21 10:15:53 -04:00
2018-10-09 17:00:01 -04:00
< a name = "SetAdminCredentials" > < / a >
### SetAdminCredentials() error
2017-04-21 10:15:53 -04:00
Set new credentials of a Minio setup.
__Example__
``` go
2018-10-09 17:00:01 -04:00
err = madmClnt.SetAdminCredentials("YOUR-NEW-ACCESSKEY", "YOUR-NEW-SECRETKEY")
2017-04-21 10:15:53 -04:00
if err != nil {
log.Fatalln(err)
}
log.Println("New credentials successfully set.")
```
2018-09-18 19:46:35 -04:00
< a name = "StartProfiling" > < / a >
### StartProfiling(profiler string) error
Ask all nodes to start profiling using the specified profiler mode
__Example__
``` go
startProfilingResults, err = madmClnt.StartProfiling("cpu")
if err != nil {
log.Fatalln(err)
}
for _, result := range startProfilingResults {
if !result.Success {
log.Printf("Unable to start profiling on node `%s` , reason = `%s` \n", result.NodeName, result.Error)
} else {
log.Printf("Profiling successfully started on node `%s` \n", result.NodeName)
}
}
```
< a name = "DownloadProfilingData" > < / a >
### DownloadProfilingData() ([]byte, error)
Download profiling data of all nodes in a zip format.
__Example__
``` go
profilingData, err := madmClnt.DownloadProfilingData()
if err != nil {
log.Fatalln(err)
}
profilingFile, err := os.Create("/tmp/profiling-data.zip")
if err != nil {
log.Fatal(err)
}
if _, err := io.Copy(profilingFile, profilingData); err != nil {
log.Fatal(err)
}
if err := profilingFile.Close(); err != nil {
log.Fatal(err)
}
if err := profilingData.Close(); err != nil {
log.Fatal(err)
}
log.Println("Profiling data successfully downloaded.")
```