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/>.
|
2018-03-12 02:16:53 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-04-21 22:23:54 -04:00
|
|
|
"github.com/gorilla/mux"
|
2018-03-12 02:16:53 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-02-09 04:00:44 -05:00
|
|
|
healthCheckPath = "/health"
|
|
|
|
healthCheckLivenessPath = "/live"
|
|
|
|
healthCheckReadinessPath = "/ready"
|
|
|
|
healthCheckClusterPath = "/cluster"
|
|
|
|
healthCheckClusterReadPath = "/cluster/read"
|
|
|
|
healthCheckPathPrefix = minioReservedBucketPath + healthCheckPath
|
2018-03-12 02:16:53 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// registerHealthCheckRouter - add handler functions for liveness and readiness routes.
|
2018-04-21 22:23:54 -04:00
|
|
|
func registerHealthCheckRouter(router *mux.Router) {
|
2018-03-12 02:16:53 -04:00
|
|
|
|
|
|
|
// Healthcheck router
|
2018-04-21 22:23:54 -04:00
|
|
|
healthRouter := router.PathPrefix(healthCheckPathPrefix).Subrouter()
|
2018-03-12 02:16:53 -04:00
|
|
|
|
2020-06-30 14:28:27 -04:00
|
|
|
// Cluster check handler to verify cluster is active
|
|
|
|
healthRouter.Methods(http.MethodGet).Path(healthCheckClusterPath).HandlerFunc(httpTraceAll(ClusterCheckHandler))
|
2021-04-24 01:47:39 -04:00
|
|
|
healthRouter.Methods(http.MethodHead).Path(healthCheckClusterPath).HandlerFunc(httpTraceAll(ClusterCheckHandler))
|
2021-02-09 04:00:44 -05:00
|
|
|
healthRouter.Methods(http.MethodGet).Path(healthCheckClusterReadPath).HandlerFunc(httpTraceAll(ClusterReadCheckHandler))
|
2021-04-24 01:47:39 -04:00
|
|
|
healthRouter.Methods(http.MethodHead).Path(healthCheckClusterReadPath).HandlerFunc(httpTraceAll(ClusterReadCheckHandler))
|
2020-06-30 14:28:27 -04:00
|
|
|
|
2018-03-12 02:16:53 -04:00
|
|
|
// Liveness handler
|
2018-06-07 13:41:13 -04:00
|
|
|
healthRouter.Methods(http.MethodGet).Path(healthCheckLivenessPath).HandlerFunc(httpTraceAll(LivenessCheckHandler))
|
|
|
|
healthRouter.Methods(http.MethodHead).Path(healthCheckLivenessPath).HandlerFunc(httpTraceAll(LivenessCheckHandler))
|
2018-03-12 02:16:53 -04:00
|
|
|
|
|
|
|
// Readiness handler
|
2018-06-07 13:41:13 -04:00
|
|
|
healthRouter.Methods(http.MethodGet).Path(healthCheckReadinessPath).HandlerFunc(httpTraceAll(ReadinessCheckHandler))
|
|
|
|
healthRouter.Methods(http.MethodHead).Path(healthCheckReadinessPath).HandlerFunc(httpTraceAll(ReadinessCheckHandler))
|
2018-03-12 02:16:53 -04:00
|
|
|
}
|