2019-02-28 07:07:13 +00:00
|
|
|
// Copyright 2019 Drone IO, 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.
|
2019-02-19 23:56:41 +00:00
|
|
|
|
2019-05-21 20:29:58 +00:00
|
|
|
package health
|
2019-02-19 23:56:41 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"net/http"
|
2019-05-21 20:29:58 +00:00
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
"github.com/go-chi/chi/middleware"
|
2019-02-19 23:56:41 +00:00
|
|
|
)
|
|
|
|
|
2019-05-21 20:29:58 +00:00
|
|
|
// New returns a new health check router.
|
|
|
|
func New() http.Handler {
|
|
|
|
r := chi.NewRouter()
|
|
|
|
r.Use(middleware.Recoverer)
|
|
|
|
r.Use(middleware.NoCache)
|
|
|
|
r.Handle("/", Handler())
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handler creates an http.HandlerFunc that performs system
|
2019-02-19 23:56:41 +00:00
|
|
|
// healthchecks and returns 500 if the system is in an unhealthy state.
|
2019-05-21 20:29:58 +00:00
|
|
|
func Handler() http.HandlerFunc {
|
2019-02-19 23:56:41 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(200)
|
|
|
|
w.Header().Set("Content-Type", "text/plain")
|
|
|
|
io.WriteString(w, "OK")
|
|
|
|
}
|
|
|
|
}
|
2019-05-21 20:29:58 +00:00
|
|
|
|