Log response body if test fails.

This commit is contained in:
Alexey Palazhchenko 2017-07-05 10:51:27 +03:00
parent 190d1347ba
commit 4d294889da

View file

@ -93,11 +93,15 @@ func queryExporter(address string) error {
if err != nil {
return err
}
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
if err := resp.Body.Close(); err != nil {
return err
}
if want, have := http.StatusOK, resp.StatusCode; want != have {
return fmt.Errorf("want /metrics status code %d, have %d", want, have)
return fmt.Errorf("want /metrics status code %d, have %d. Body:\n%s", want, have, b)
}
return nil
}