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