1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/healthcheck.go
2020-02-27 21:44:59 +06:00

43 lines
685 B
Go

package main
import (
"context"
"fmt"
"io/ioutil"
"net"
"net/http"
"os"
)
func healthcheck() int {
network := conf.Network
bind := conf.Bind
strEnvConfig(&network, "IMGPROXY_NETWORK")
strEnvConfig(&bind, "IMGPROXY_BIND")
httpc := http.Client{
Transport: &http.Transport{
DialContext: func(_ context.Context, _, _ string) (net.Conn, error) {
return net.Dial(network, bind)
},
},
}
res, err := httpc.Get("http://imgproxy/health")
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
return 1
}
defer res.Body.Close()
msg, _ := ioutil.ReadAll(res.Body)
fmt.Fprintln(os.Stderr, string(msg))
if res.StatusCode != 200 {
return 1
}
return 0
}