diff --git a/pkg/madmin/README.md b/pkg/madmin/README.md index 0cb5c9956..7fd7d95d3 100644 --- a/pkg/madmin/README.md +++ b/pkg/madmin/README.md @@ -244,7 +244,7 @@ Fetches information for all cluster nodes, such as server properties, storage in ### ServerDrivesPerfInfo() ([]ServerDrivesPerfInfo, error) -Fetches drive performance information for all cluster nodes. Returned value is in Bytes/s. +Fetches drive performance information for all cluster nodes. | Param | Type | Description | |-----------------|--------------------|--------------------------------------------------------------------| @@ -262,7 +262,7 @@ Fetches drive performance information for all cluster nodes. Returned value is i ### ServerCPULoadInfo() ([]ServerCPULoadInfo, error) -Fetches CPU utilization for all cluster nodes. Returned value is in Bytes. +Fetches CPU utilization for all cluster nodes. | Param | Type | Description | |----------------|------------|---------------------------------------------------------------------| @@ -280,7 +280,7 @@ Fetches CPU utilization for all cluster nodes. Returned value is in Bytes. ### ServerMemUsageInfo() ([]ServerMemUsageInfo, error) -Fetches Mem utilization for all cluster nodes. Returned value is in Bytes. +Fetches Mem utilization for all cluster nodes. | Param | Type | Description | |-----------------|-------------|---------------------------------------------------------------------| diff --git a/pkg/madmin/examples/add-user-and-policy.go b/pkg/madmin/examples/add-user-and-policy.go index 5a106ff0e..fa1535451 100644 --- a/pkg/madmin/examples/add-user-and-policy.go +++ b/pkg/madmin/examples/add-user-and-policy.go @@ -32,7 +32,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/cpu-load-info.go b/pkg/madmin/examples/cpu-load-info.go index 2e21889bf..f8c24d671 100644 --- a/pkg/madmin/examples/cpu-load-info.go +++ b/pkg/madmin/examples/cpu-load-info.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/drives-perf-info.go b/pkg/madmin/examples/drives-perf-info.go index 7cf54b18a..481defe59 100644 --- a/pkg/madmin/examples/drives-perf-info.go +++ b/pkg/madmin/examples/drives-perf-info.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/get-config-keys.go b/pkg/madmin/examples/get-config-keys.go index 23aef32fa..641ba08ad 100644 --- a/pkg/madmin/examples/get-config-keys.go +++ b/pkg/madmin/examples/get-config-keys.go @@ -31,7 +31,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/get-config.go b/pkg/madmin/examples/get-config.go index 75e55450d..bb37eeb9e 100644 --- a/pkg/madmin/examples/get-config.go +++ b/pkg/madmin/examples/get-config.go @@ -31,7 +31,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/heal-bucket.go b/pkg/madmin/examples/heal-bucket.go index 6ae1baa20..26a971b05 100644 --- a/pkg/madmin/examples/heal-bucket.go +++ b/pkg/madmin/examples/heal-bucket.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/heal-buckets-list.go b/pkg/madmin/examples/heal-buckets-list.go index 54da90603..68089e659 100644 --- a/pkg/madmin/examples/heal-buckets-list.go +++ b/pkg/madmin/examples/heal-buckets-list.go @@ -31,7 +31,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/heal-format.go b/pkg/madmin/examples/heal-format.go index f5a129c03..c48ffdd0a 100644 --- a/pkg/madmin/examples/heal-format.go +++ b/pkg/madmin/examples/heal-format.go @@ -32,7 +32,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/heal-object.go b/pkg/madmin/examples/heal-object.go index 9fc3438b6..b765d8288 100644 --- a/pkg/madmin/examples/heal-object.go +++ b/pkg/madmin/examples/heal-object.go @@ -32,7 +32,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/heal-status.go b/pkg/madmin/examples/heal-status.go index a25c66673..125550133 100644 --- a/pkg/madmin/examples/heal-status.go +++ b/pkg/madmin/examples/heal-status.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/lock-clear.go b/pkg/madmin/examples/lock-clear.go index 5129370a6..2a7f9cb8b 100644 --- a/pkg/madmin/examples/lock-clear.go +++ b/pkg/madmin/examples/lock-clear.go @@ -30,7 +30,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/mem-usage-info.go b/pkg/madmin/examples/mem-usage-info.go index ed929630a..847324fb2 100644 --- a/pkg/madmin/examples/mem-usage-info.go +++ b/pkg/madmin/examples/mem-usage-info.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/profiling.go b/pkg/madmin/examples/profiling.go index a215b2942..1ce784250 100644 --- a/pkg/madmin/examples/profiling.go +++ b/pkg/madmin/examples/profiling.go @@ -35,7 +35,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/server-info.go b/pkg/madmin/examples/server-info.go index 4bc457d4e..009dbdda7 100644 --- a/pkg/madmin/examples/server-info.go +++ b/pkg/madmin/examples/server-info.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/service-restart.go b/pkg/madmin/examples/service-restart.go index 2c8e28307..8273e0bf7 100644 --- a/pkg/madmin/examples/service-restart.go +++ b/pkg/madmin/examples/service-restart.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/service-status.go b/pkg/madmin/examples/service-status.go index bad2057c8..cec346802 100644 --- a/pkg/madmin/examples/service-status.go +++ b/pkg/madmin/examples/service-status.go @@ -29,7 +29,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY and my-bucketname are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/service-trace.go b/pkg/madmin/examples/service-trace.go index 645c33b4f..dae05b434 100644 --- a/pkg/madmin/examples/service-trace.go +++ b/pkg/madmin/examples/service-trace.go @@ -30,7 +30,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/set-config-keys.go b/pkg/madmin/examples/set-config-keys.go index 6d02dd41f..b0eb94a47 100644 --- a/pkg/madmin/examples/set-config-keys.go +++ b/pkg/madmin/examples/set-config-keys.go @@ -33,7 +33,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/set-config.go b/pkg/madmin/examples/set-config.go index 3e1581c20..4530d2e74 100644 --- a/pkg/madmin/examples/set-config.go +++ b/pkg/madmin/examples/set-config.go @@ -130,7 +130,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil { diff --git a/pkg/madmin/examples/top-locks.go b/pkg/madmin/examples/top-locks.go index b9ee1daa1..baf48143d 100644 --- a/pkg/madmin/examples/top-locks.go +++ b/pkg/madmin/examples/top-locks.go @@ -30,7 +30,7 @@ func main() { // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are // dummy values, please replace them with original values. - // API requests are secure (HTTPS) if secure=true and insecure (HTTPS) otherwise. + // API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise. // New returns an MinIO Admin client object. madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true) if err != nil {