harness-drone/handler/web/healthz.go
2019-02-19 15:56:41 -08:00

20 lines
546 B
Go

// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Non-Commercial License
// that can be found in the LICENSE file.
package web
import (
"io"
"net/http"
)
// HandleHealthz creates an http.HandlerFunc that performs system
// healthchecks and returns 500 if the system is in an unhealthy state.
func HandleHealthz() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
w.Header().Set("Content-Type", "text/plain")
io.WriteString(w, "OK")
}
}