2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// 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.
|
2013-11-17 15:10:21 +00:00
|
|
|
|
2015-09-12 15:28:24 +00:00
|
|
|
// Package toolbox healthcheck
|
2014-08-18 08:41:43 +00:00
|
|
|
//
|
|
|
|
// type DatabaseCheck struct {
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// func (dc *DatabaseCheck) Check() error {
|
2013-11-17 15:10:21 +00:00
|
|
|
// if dc.isConnected() {
|
|
|
|
// return nil
|
|
|
|
// } else {
|
|
|
|
// return errors.New("can't connect database")
|
2014-08-18 08:41:43 +00:00
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// AddHealthCheck("database",&DatabaseCheck{})
|
|
|
|
//
|
|
|
|
// more docs: http://beego.me/docs/module/toolbox.md
|
|
|
|
package toolbox
|
2013-11-17 15:10:21 +00:00
|
|
|
|
2016-01-17 16:18:21 +00:00
|
|
|
// AdminCheckList holds health checker map
|
2013-11-17 15:10:21 +00:00
|
|
|
var AdminCheckList map[string]HealthChecker
|
|
|
|
|
2015-09-12 15:28:24 +00:00
|
|
|
// HealthChecker health checker interface
|
2013-11-17 15:10:21 +00:00
|
|
|
type HealthChecker interface {
|
|
|
|
Check() error
|
|
|
|
}
|
|
|
|
|
2015-09-12 15:28:24 +00:00
|
|
|
// AddHealthCheck add health checker with name string
|
2013-11-17 15:10:21 +00:00
|
|
|
func AddHealthCheck(name string, hc HealthChecker) {
|
|
|
|
AdminCheckList[name] = hc
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
AdminCheckList = make(map[string]HealthChecker)
|
|
|
|
}
|