2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 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/>.
|
2019-09-12 14:06:12 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2021-02-22 16:19:44 -05:00
|
|
|
"context"
|
2019-09-12 14:06:12 -04:00
|
|
|
"net/http"
|
2022-10-11 14:31:26 -04:00
|
|
|
"os"
|
2021-04-07 13:40:51 -04:00
|
|
|
"runtime"
|
2022-10-11 14:31:26 -04:00
|
|
|
"runtime/debug"
|
|
|
|
"strings"
|
2021-01-25 13:01:27 -05:00
|
|
|
"time"
|
2019-09-12 14:06:12 -04:00
|
|
|
|
2023-06-19 20:53:08 -04:00
|
|
|
"github.com/minio/madmin-go/v3"
|
2022-10-11 14:31:26 -04:00
|
|
|
"github.com/minio/minio/internal/config"
|
2023-02-21 20:43:01 -05:00
|
|
|
"github.com/minio/minio/internal/kms"
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/logger"
|
2019-09-12 14:06:12 -04:00
|
|
|
)
|
|
|
|
|
2020-04-12 22:37:09 -04:00
|
|
|
// getLocalServerProperty - returns madmin.ServerProperties for only the
|
2019-12-11 17:27:03 -05:00
|
|
|
// local endpoints from given list of endpoints
|
2020-12-01 16:50:33 -05:00
|
|
|
func getLocalServerProperty(endpointServerPools EndpointServerPools, r *http.Request) madmin.ServerProperties {
|
2022-06-06 19:14:52 -04:00
|
|
|
addr := globalLocalNodeName
|
|
|
|
if r != nil {
|
|
|
|
addr = r.Host
|
|
|
|
}
|
2020-06-12 23:04:01 -04:00
|
|
|
if globalIsDistErasure {
|
2021-03-26 14:37:58 -04:00
|
|
|
addr = globalLocalNodeName
|
2019-12-11 17:27:03 -05:00
|
|
|
}
|
|
|
|
network := make(map[string]string)
|
2020-12-01 16:50:33 -05:00
|
|
|
for _, ep := range endpointServerPools {
|
2019-12-11 17:27:03 -05:00
|
|
|
for _, endpoint := range ep.Endpoints {
|
2020-02-01 20:45:29 -05:00
|
|
|
nodeName := endpoint.Host
|
|
|
|
if nodeName == "" {
|
2022-06-06 19:14:52 -04:00
|
|
|
nodeName = addr
|
2019-12-11 17:27:03 -05:00
|
|
|
}
|
|
|
|
if endpoint.IsLocal {
|
2020-02-01 20:45:29 -05:00
|
|
|
// Only proceed for local endpoints
|
2021-03-02 20:28:04 -05:00
|
|
|
network[nodeName] = string(madmin.ItemOnline)
|
2020-07-13 12:51:07 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
_, present := network[nodeName]
|
|
|
|
if !present {
|
2022-03-17 19:20:10 -04:00
|
|
|
if err := isServerResolvable(endpoint, 5*time.Second); err == nil {
|
2021-03-02 20:28:04 -05:00
|
|
|
network[nodeName] = string(madmin.ItemOnline)
|
2020-02-01 20:45:29 -05:00
|
|
|
} else {
|
2021-03-02 20:28:04 -05:00
|
|
|
network[nodeName] = string(madmin.ItemOffline)
|
2021-02-22 16:19:44 -05:00
|
|
|
// log once the error
|
|
|
|
logger.LogOnceIf(context.Background(), err, nodeName)
|
2020-02-01 20:45:29 -05:00
|
|
|
}
|
2019-12-11 17:27:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
var memstats runtime.MemStats
|
|
|
|
runtime.ReadMemStats(&memstats)
|
|
|
|
|
2022-10-11 14:31:26 -04:00
|
|
|
gcStats := debug.GCStats{
|
|
|
|
// If stats.PauseQuantiles is non-empty, ReadGCStats fills
|
|
|
|
// it with quantiles summarizing the distribution of pause time.
|
|
|
|
// For example, if len(stats.PauseQuantiles) is 5, it will be
|
|
|
|
// filled with the minimum, 25%, 50%, 75%, and maximum pause times.
|
|
|
|
PauseQuantiles: make([]time.Duration, 5),
|
|
|
|
}
|
|
|
|
debug.ReadGCStats(&gcStats)
|
|
|
|
// Truncate GC stats to max 5 entries.
|
|
|
|
if len(gcStats.PauseEnd) > 5 {
|
|
|
|
gcStats.PauseEnd = gcStats.PauseEnd[len(gcStats.PauseEnd)-5:]
|
|
|
|
}
|
|
|
|
if len(gcStats.Pause) > 5 {
|
|
|
|
gcStats.Pause = gcStats.Pause[len(gcStats.Pause)-5:]
|
|
|
|
}
|
|
|
|
|
2021-03-02 20:28:04 -05:00
|
|
|
props := madmin.ServerProperties{
|
2019-12-11 17:27:03 -05:00
|
|
|
Endpoint: addr,
|
2019-12-11 20:56:02 -05:00
|
|
|
Uptime: UTCNow().Unix() - globalBootTime.Unix(),
|
2019-12-11 17:27:03 -05:00
|
|
|
Version: Version,
|
|
|
|
CommitID: CommitID,
|
|
|
|
Network: network,
|
2021-06-01 17:59:40 -04:00
|
|
|
MemStats: madmin.MemStats{
|
|
|
|
Alloc: memstats.Alloc,
|
|
|
|
TotalAlloc: memstats.TotalAlloc,
|
|
|
|
Mallocs: memstats.Mallocs,
|
|
|
|
Frees: memstats.Frees,
|
|
|
|
HeapAlloc: memstats.HeapAlloc,
|
|
|
|
},
|
2022-10-11 14:31:26 -04:00
|
|
|
GoMaxProcs: runtime.GOMAXPROCS(0),
|
|
|
|
NumCPU: runtime.NumCPU(),
|
|
|
|
RuntimeVersion: runtime.Version(),
|
|
|
|
GCStats: &madmin.GCStats{
|
|
|
|
LastGC: gcStats.LastGC,
|
|
|
|
NumGC: gcStats.NumGC,
|
|
|
|
PauseTotal: gcStats.PauseTotal,
|
|
|
|
Pause: gcStats.Pause,
|
|
|
|
PauseEnd: gcStats.PauseEnd,
|
|
|
|
},
|
|
|
|
MinioEnvVars: make(map[string]string, 10),
|
|
|
|
}
|
|
|
|
|
|
|
|
sensitive := map[string]struct{}{
|
|
|
|
config.EnvAccessKey: {},
|
|
|
|
config.EnvSecretKey: {},
|
|
|
|
config.EnvRootUser: {},
|
|
|
|
config.EnvRootPassword: {},
|
|
|
|
config.EnvMinIOSubnetAPIKey: {},
|
2023-02-21 20:43:01 -05:00
|
|
|
kms.EnvKMSSecretKey: {},
|
2022-10-11 14:31:26 -04:00
|
|
|
}
|
|
|
|
for _, v := range os.Environ() {
|
|
|
|
if !strings.HasPrefix(v, "MINIO") && !strings.HasPrefix(v, "_MINIO") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
split := strings.SplitN(v, "=", 2)
|
|
|
|
key := split[0]
|
|
|
|
value := ""
|
|
|
|
if len(split) > 1 {
|
|
|
|
value = split[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not send sensitive creds.
|
|
|
|
if _, ok := sensitive[key]; ok || strings.Contains(strings.ToLower(key), "password") || strings.HasSuffix(strings.ToLower(key), "key") {
|
|
|
|
props.MinioEnvVars[key] = "*** EXISTS, REDACTED ***"
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
props.MinioEnvVars[key] = value
|
2019-12-11 17:27:03 -05:00
|
|
|
}
|
2021-01-18 23:35:38 -05:00
|
|
|
|
2021-03-02 20:28:04 -05:00
|
|
|
objLayer := newObjectLayerFn()
|
2022-10-24 20:44:15 -04:00
|
|
|
if objLayer != nil {
|
2022-12-01 17:31:35 -05:00
|
|
|
storageInfo := objLayer.LocalStorageInfo(GlobalContext)
|
2021-03-02 20:28:04 -05:00
|
|
|
props.State = string(madmin.ItemOnline)
|
|
|
|
props.Disks = storageInfo.Disks
|
2022-12-01 17:31:35 -05:00
|
|
|
} else {
|
2023-04-24 12:10:02 -04:00
|
|
|
props.State = string(madmin.ItemInitializing)
|
|
|
|
props.Disks = getOfflineDisks("", globalEndpoints)
|
2021-01-18 23:35:38 -05:00
|
|
|
}
|
2021-02-22 16:19:44 -05:00
|
|
|
|
2021-03-02 20:28:04 -05:00
|
|
|
return props
|
2021-01-18 23:35:38 -05:00
|
|
|
}
|