Use /healthcheck over /ready
This commit is contained in:
parent
6db3cb2f1b
commit
37210ff661
|
@ -411,13 +411,13 @@ func buildHealthCommand() *cli.Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
func healthCommand(c *cli.Context) error {
|
func healthCommand(c *cli.Context) error {
|
||||||
requestURL := fmt.Sprintf("http://%s/ready", c.String("metrics"))
|
requestURL := fmt.Sprintf("http://%s/healthcheck", c.String("metrics"))
|
||||||
res, err := http.Get(requestURL)
|
res, err := http.Get(requestURL)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if res.StatusCode != 200 {
|
if res.StatusCode != 200 {
|
||||||
return fmt.Errorf("health /ready endpoint returned status code %d", res.StatusCode)
|
return fmt.Errorf("health /ready endpoint returned status code %d\n%s", res.StatusCode, res.Body)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue