2019-09-12 14:06:12 -04:00
|
|
|
/*
|
|
|
|
* MinIO Cloud Storage, (C) 2019 MinIO, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2021-02-22 16:19:44 -05:00
|
|
|
"context"
|
2019-09-12 14:06:12 -04:00
|
|
|
"net/http"
|
2021-04-07 13:40:51 -04:00
|
|
|
"runtime"
|
2021-01-25 13:01:27 -05:00
|
|
|
"time"
|
2019-09-12 14:06:12 -04:00
|
|
|
|
2021-02-22 16:19:44 -05:00
|
|
|
"github.com/minio/minio/cmd/logger"
|
2019-09-12 17:52:30 -04:00
|
|
|
"github.com/minio/minio/pkg/madmin"
|
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 {
|
2020-12-21 12:35:19 -05:00
|
|
|
var localEndpoints Endpoints
|
2019-12-11 17:27:03 -05:00
|
|
|
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 == "" {
|
|
|
|
nodeName = r.Host
|
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-12-21 12:35:19 -05:00
|
|
|
localEndpoints = append(localEndpoints, endpoint)
|
2020-07-13 12:51:07 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
_, present := network[nodeName]
|
|
|
|
if !present {
|
2021-02-22 16:19:44 -05:00
|
|
|
if err := isServerResolvable(endpoint, 2*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-03-02 20:28:04 -05:00
|
|
|
props := madmin.ServerProperties{
|
|
|
|
State: string(madmin.ItemInitializing),
|
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-04-07 13:40:51 -04:00
|
|
|
runtime.ReadMemStats(&props.MemStats)
|
2021-01-18 23:35:38 -05:00
|
|
|
|
2021-03-02 20:28:04 -05:00
|
|
|
objLayer := newObjectLayerFn()
|
2021-03-25 18:26:22 -04:00
|
|
|
if objLayer != nil && !globalIsGateway {
|
|
|
|
// only need Disks information in server mode.
|
2021-03-02 20:28:04 -05:00
|
|
|
storageInfo, _ := objLayer.LocalStorageInfo(GlobalContext)
|
|
|
|
props.State = string(madmin.ItemOnline)
|
|
|
|
props.Disks = storageInfo.Disks
|
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
|
|
|
}
|